summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-xMaster/tlpkg/bin/tlpdb-check8
-rwxr-xr-xMaster/tlpkg/bin/tlpdb2container3
-rwxr-xr-xMaster/tlpkg/bin/tlpdb2updmap3
-rwxr-xr-xMaster/tlpkg/bin/tlpfiles3
-rwxr-xr-xMaster/tlpkg/bin/tlpkg-ctan-check5
-rwxr-xr-xMaster/tlpkg/bin/tlprm4
-rwxr-xr-xMaster/tlpkg/bin/tlpsrc2tlpdb3
-rw-r--r--Master/tlpkg/texlive.pkgver1609
-rw-r--r--Master/tlpkg/texlive.tlpdb83777
9 files changed, 85403 insertions, 12 deletions
diff --git a/Master/tlpkg/bin/tlpdb-check b/Master/tlpkg/bin/tlpdb-check
index 3d041a717b6..a91cf6496fc 100755
--- a/Master/tlpkg/bin/tlpdb-check
+++ b/Master/tlpkg/bin/tlpdb-check
@@ -9,8 +9,10 @@
cd `dirname $0`/../.. || exit 1
-if test ! -s texlive.tlpdb; then
- echo "$0: no (nonempty) texlive.tlpdb in $0, goodbye." >&2
+tlpdb=tlpkg/texlive.tlpdb
+
+if test ! -s $tlpdb; then
+ echo "$0: no (nonempty) $tlpdb in $0, goodbye." >&2
exit 1
fi
@@ -19,7 +21,7 @@ trap "rm -f $TMPDIR/tlpdb*" 0 1 2 15
# Get list of files.
tlpdbfiles=$TMPDIR/tlpdbfiles.$$
-grep '^ ' texlive.tlpdb | sort >$tlpdbfiles
+grep '^ ' $tlpdb | sort >$tlpdbfiles
echo "$0: checking duplicates..."
# GNU uniq makes it simple.
diff --git a/Master/tlpkg/bin/tlpdb2container b/Master/tlpkg/bin/tlpdb2container
index cf75e532503..68d4768dbe9 100755
--- a/Master/tlpkg/bin/tlpdb2container
+++ b/Master/tlpkg/bin/tlpdb2container
@@ -15,6 +15,7 @@ BEGIN {
use strict;
+use TeXLive::TLConfig;
use TeXLive::TLPOBJ;
use TeXLive::TLPDB;
use Getopt::Long;
@@ -44,7 +45,7 @@ sub main
{
# get the db.
chomp (my $Master = `cd $mydir/../.. && pwd`); # xx TLPDB should default
- my $tlpdb_path = "$Master/texlive.tlpdb";
+ my $tlpdb_path = "$Master/$TeXLive::TLConfig::InfraLocation/texlive.tlpdb";
my $tlpdb = TeXLive::TLPDB->new ("location" => $tlpdb_path);
die("Cannot load tlpdb at $tlpdb_path!\n") unless defined($tlpdb);
my @packs;
diff --git a/Master/tlpkg/bin/tlpdb2updmap b/Master/tlpkg/bin/tlpdb2updmap
index bb3bd9eb0a2..a66badc1966 100755
--- a/Master/tlpkg/bin/tlpdb2updmap
+++ b/Master/tlpkg/bin/tlpdb2updmap
@@ -16,6 +16,7 @@ BEGIN {
use strict;
+use TeXLive::TLConfig;
use TeXLive::TLPOBJ;
use TeXLive::TLPDB;
use Getopt::Long;
@@ -38,7 +39,7 @@ sub main
{
# get the db.
chomp (my $Master = `cd $mydir/../.. && pwd`); # xx TLPDB should default
- my $tlpdb_path = "$Master/texlive.tlpdb";
+ my $tlpdb_path = "$Master/$TeXLive::TLConfig::InfraLocation/texlive.tlpdb";
my $tlpdb = TeXLive::TLPDB->new ("location" => $tlpdb_path);
# get list of packages.
diff --git a/Master/tlpkg/bin/tlpfiles b/Master/tlpkg/bin/tlpfiles
index 4ec71bb2ade..41bc8a48f8d 100755
--- a/Master/tlpkg/bin/tlpfiles
+++ b/Master/tlpkg/bin/tlpfiles
@@ -17,6 +17,7 @@ BEGIN {
use strict;
+use TeXLive::TLConfig;
use TeXLive::TLPDB;
use Pod::Usage;
use Getopt::Long;
@@ -38,7 +39,7 @@ exit (&main ());
sub main
{
my $Master = "$mydir/../.."; # xx TLPDB should default
- my $tlpdb_path = "$Master/texlive.tlpdb";
+ my $tlpdb_path = "$Master/$TeXLive::TLConfig::InfraLocation/texlive.tlpdb";
if (@opt_pkgof) {
return &do_pkgof ($tlpdb_path, @opt_pkgof);
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check
index 23457856efe..4a18c57e730 100755
--- a/Master/tlpkg/bin/tlpkg-ctan-check
+++ b/Master/tlpkg/bin/tlpkg-ctan-check
@@ -198,10 +198,7 @@ sub main
# get the Master dir
chomp (my $Master = `cd $mydir/../.. && pwd`);
$TL = $Master;
- # should be this
- my $tlpdbloc = "$Master/" . $TeXLive::TLConfig::InfraLocation . "/texlive.tlpdb";
- # but for now we leave it like this:
- $tlpdbloc = "$Master/texlive.tlpdb";
+ my $tlpdbloc = "$Master/$TeXLive::TLConfig::InfraLocation/texlive.tlpdb";
# First we load the current texlive.tlpdb
$tlpdb = TeXLive::TLPDB->new ("location" => $tlpdbloc);
die("Cannot load tlpdb at $tlpdbloc!\n") unless defined($tlpdb);
diff --git a/Master/tlpkg/bin/tlprm b/Master/tlpkg/bin/tlprm
index 07fcd0e10c6..60ec0622cce 100755
--- a/Master/tlpkg/bin/tlprm
+++ b/Master/tlpkg/bin/tlprm
@@ -18,6 +18,7 @@ BEGIN {
use strict;
+use TeXLive::TLConfig;
use TeXLive::TLPDB;
use TeXLive::TLPSRC;
use Pod::Usage;
@@ -42,7 +43,8 @@ sub main
# xx should default in TLPDB.
chomp (my $Master = `cd $mydir/../.. && pwd`);
- my $tlpdb = TeXLive::TLPDB->new (location => "$Master/texlive.tlpdb");
+ my $tlpdb_path = "$Master/$TeXLive::TLConfig::InfraLocation/texlive.tlpdb";
+ my $tlpdb = TeXLive::TLPDB->new (location => $tlpdb_path);
foreach my $f (@ARGV) {
my $obj = $tlpdb->get_package ($f);
diff --git a/Master/tlpkg/bin/tlpsrc2tlpdb b/Master/tlpkg/bin/tlpsrc2tlpdb
index 629f692cae7..686bab6bd9b 100755
--- a/Master/tlpkg/bin/tlpsrc2tlpdb
+++ b/Master/tlpkg/bin/tlpsrc2tlpdb
@@ -14,6 +14,7 @@ BEGIN {
use strict;
+use TeXLive::TLConfig;
use TeXLive::TLPSRC;
use TeXLive::TLPOBJ;
use TeXLive::TLPDB;
@@ -94,7 +95,7 @@ sub main
# write the new db, to the real location given --all, or stdout.
if ($opt_all) {
local *TLPDB;
- our $TLPDB = ">$opt_master/texlive.tlpdb";
+ our $TLPDB = ">$opt_master/$TeXLive::TLConfig::InfraLocation/texlive.tlpdb";
open (TLPDB) || die "open($TLPDB) failed: $!";
$tldb->writeout (*TLPDB);
warn "$0: wrote $src_count packages $TLPDB.\n";
diff --git a/Master/tlpkg/texlive.pkgver b/Master/tlpkg/texlive.pkgver
new file mode 100644
index 00000000000..bace3d3a1a9
--- /dev/null
+++ b/Master/tlpkg/texlive.pkgver
@@ -0,0 +1,1609 @@
+12many 629
+ANUfinalexam 5380
+AkkTeX 5484
+Asana-Math 5445
+CJK 2361
+ESIEEcv 1487
+FAQ-en 2808
+FAQ-fr 16
+FAQ-ge 16
+GuIT 1606
+HA-prosper 633
+IEEEconf 3551
+IEEEtran 4133
+MemoirChapStyles 2240
+SIstyle 2830
+SIunits 637
+Susy 5503
+Tabbing 638
+Type1fonts 19
+a0poster 639
+aastex 640
+abbr 613
+abc 1848
+abstract 641
+abstyles 4150
+accfonts 642
+achemso 5237
+acmconf 1487
+acmtrans 645
+acronym 1733
+active-conf 2097
+addlines 5178
+adrconv 4718
+adrlist 1487
+ae 5100
+aeguill 1487
+aguplus 2116
+ai 111
+aiaa 652
+akletter 1487
+alatex 606
+albertus 90
+aleph 77
+alg 654
+algorithm2e 655
+algorithmicx 2311
+algorithms 1658
+allrunes 658
+alnumsec 5049
+altfont 2622
+ametsoc 4958
+ams 5189
+amsaddr 5311
+amscls 5189
+amsfonts 1487
+amslatex-primer 19
+amsldoc-it 1620
+amsldoc-vn 12
+amsmath 2050
+amsmath-it 14
+amsrefs 5285
+amstex 607
+amsthdoc-it 1622
+animate 5444
+answers 1487
+antiqua 664
+antomega 615
+antp 665
+antt 3477
+anyfontsize 5272
+anysize 1487
+apa 668
+apacite 4889
+apl 4689
+appendix 671
+ar 672
+arabi 3380
+arabtex 1788
+arabxetex 4277
+archaic 2101
+arcs 675
+arev 1868
+armenian 677
+arphic 98
+arrayjob 613
+arydshln 2315
+asaetr 1487
+ascelike 680
+ascii 1630
+assignment 681
+astro 5002
+atqolive 90
+attachfile 3569
+augie 683
+aurical 2331
+aurora 110
+authoraftertitle 5483
+authorindex 3317
+auto-pst-pdf 2854
+automata 4617
+autotab 686
+avantgar 2488
+babel 5335
+babelbib 2240
+backgammon 1487
+bangtex 1487
+barcodes 4706
+bardiag 1487
+barr 693
+bayer 695
+bbding 696
+bbm 5091
+bbm-macros 5092
+bbold 698
+beamer 4030
+beamer-contrib 4016
+beamer-tut-pt 1754
+beebe 1634
+begriff 2336
+belleek 155
+bengali 701
+bera 702
+betababel 703
+beton 1487
+bez123 705
+bezos 2098
+bghyphen 1624
+bibarts 1487
+bibhtml 2942
+bibleref 5436
+biblist 709
+bibtex 78
+bibtopic 2337
+bibtopicprefix 5493
+bibunits 711
+bidi 4276
+bigfoot 4733
+bin-afm2pl 5403
+bin-aleph 5403
+bin-amstex 5403
+bin-bibtex 5403
+bin-bibtex8 5403
+bin-bzip2 5403
+bin-chktex 5403
+bin-cjkutils 5403
+bin-context 5403
+bin-cslatex 5403
+bin-csplain 5403
+bin-ctie 5403
+bin-cweb 5403
+bin-cyrillic 3920
+bin-detex 5403
+bin-devnag 5403
+bin-dialog 5391
+bin-dtl 5403
+bin-dvi2tty 5403
+bin-dvicopy 5403
+bin-dvidvi 5403
+bin-dviljk 5403
+bin-dvipdfm 5510
+bin-dvipdfmx 5403
+bin-dvipng 5403
+bin-dvipos 5403
+bin-dvipsk 5403
+bin-ebong 3920
+bin-eplain 5403
+bin-etex 5403
+bin-fontware 5403
+bin-getafm 3920
+bin-getnonfreefonts 5402
+bin-gsftopk 5403
+bin-gzip 5403
+bin-jadetex 5403
+bin-jpeg2ps 5403
+bin-kpathsea 5417
+bin-lacheck 5403
+bin-latex 5403
+bin-lcdftypetools 5403
+bin-makeindex 5403
+bin-metafont 5403
+bin-metapost 5403
+bin-mex 5403
+bin-mfware 5403
+bin-mltex 5403
+bin-musixflx 5403
+bin-omega 5403
+bin-omegaware 5403
+bin-patgen 5403
+bin-pdftex 5403
+bin-pdftools 5403
+bin-perl 5403
+bin-perltex 5402
+bin-physe 5403
+bin-phyzzx 5403
+bin-pngtools 5403
+bin-ppower4 5403
+bin-ps2pkm 5403
+bin-pstools 5403
+bin-psutils 5403
+bin-seetexk 5403
+bin-t1utils 5403
+bin-tetex 5403
+bin-tex 5403
+bin-tex4htk 5403
+bin-texconfig 5263
+bin-texdoc 5403
+bin-texinfo 5403
+bin-texsis 5403
+bin-texware 5403
+bin-thumbpdf 5466
+bin-tie 5403
+bin-tifftools 5403
+bin-tpic2pdftex 3920
+bin-ttf2pt1 5403
+bin-ttfutils 5403
+bin-vlna 5403
+bin-vpe 5402
+bin-web 5403
+bin-winutils 5403
+bin-wordcount 4713
+bin-xdvi 5391
+bin-xetex 5403
+bin-xmltex 5403
+bin-xpdf 5403
+binomexp 3355
+biocon 1487
+bitfield 714
+bizcard 1487
+blacklettert1 716
+blindtext 3109
+blockdraw_mp 5381
+boites 1487
+boldtensors 4621
+bookest 4402
+bookhands 719
+booklet 720
+bookman 2488
+booktabs 722
+bophook 723
+borceux 613
+boxhandler 1954
+bpchem 724
+braille 1487
+breakurl 2240
+breqn 1487
+bridge 728
+brushscr 1487
+bullcntr 5104
+burmese 730
+bussproofs 2382
+bytefield 731
+c-pascal 613
+c90enc 2361
+calendar 1487
+calligra 101
+calrsfs 733
+calxxxx 734
+camel 1487
+captcont 4923
+caption 5342
+carlisle 1716
+carolmin-ps 5356
+casyl 1487
+cb 101
+cbcoptic 740
+cc-pl 101
+ccaption 2411
+ccfonts 742
+cchess 743
+cclicenses 5017
+cd 1487
+cd-cover 745
+cdpbundl 2411
+cellspace 1869
+cellular 621
+changebar 747
+changes 5161
+chappg 1646
+chapterfolder 748
+charter 98
+chem-journal 2411
+chemarrow 4894
+chemcompounds 2625
+chemcono 1487
+chemscheme 5446
+chemstyle 5334
+cheq 753
+cherokee 754
+chess 755
+chessfss 5419
+china2e 1487
+circ 1487
+cirth 613
+cite 758
+citeref 759
+cjhebrew 4014
+cjw 761
+clarendo 90
+classicthesis 5340
+clefval 2943
+cleveref 5329
+clock 1652
+clrscode 4094
+cm 101
+cm-lgc 765
+cm-super 766
+cmap 4203
+cmarrows 2890
+cmastro 5022
+cmbright 768
+cmcyr 101
+cmcyralt 769
+cmdstring 4189
+cmdtrack 770
+cmex 98
+cmextra 101
+cmll 1904
+cmpica 101
+cmsd 771
+cns 90
+codepage 1487
+collection-basic 5228
+collection-basicbin 5228
+collection-bibtexextra 5493
+collection-binextra 5228
+collection-context 5228
+collection-documentation-base 5228
+collection-documentation-bulgarian 5228
+collection-documentation-chinese 5228
+collection-documentation-czechslovak 5228
+collection-documentation-dutch 5228
+collection-documentation-english 5228
+collection-documentation-finnish 5228
+collection-documentation-french 5228
+collection-documentation-german 5228
+collection-documentation-greek 5228
+collection-documentation-italian 5358
+collection-documentation-japanese 5228
+collection-documentation-korean 5228
+collection-documentation-mongolian 5228
+collection-documentation-polish 5228
+collection-documentation-portuguese 5228
+collection-documentation-russian 5228
+collection-documentation-spanish 5228
+collection-documentation-thai 5228
+collection-documentation-turkish 5228
+collection-documentation-ukrainian 5228
+collection-documentation-vietnamese 5228
+collection-fontbin 5228
+collection-fontsextra 5494
+collection-fontsrecommended 5228
+collection-formatsextra 5228
+collection-games 5419
+collection-genericextra 5228
+collection-genericrecommended 5228
+collection-graphicstools 5228
+collection-htmlxml 5228
+collection-humanities 5228
+collection-langafrican 5228
+collection-langarab 5228
+collection-langarmenian 5228
+collection-langcjk 5228
+collection-langcroatian 5228
+collection-langcyrillic 5228
+collection-langczechslovak 5384
+collection-langdanish 5228
+collection-langdutch 5228
+collection-langfinnish 5384
+collection-langfrench 5384
+collection-langgerman 5384
+collection-langgreek 5511
+collection-langhebrew 5228
+collection-langhungarian 5384
+collection-langindic 5228
+collection-langitalian 5384
+collection-langlatin 5384
+collection-langmanju 5228
+collection-langmongolian 5384
+collection-langnorwegian 5384
+collection-langother 5228
+collection-langpolish 5384
+collection-langportuguese 5384
+collection-langspanish 5384
+collection-langswedish 5384
+collection-langtibetan 5228
+collection-langukenglish 5384
+collection-langvietnamese 5228
+collection-latex 5288
+collection-latex3 5228
+collection-latexextra 5506
+collection-latexrecommended 5228
+collection-mathextra 5503
+collection-metapost 5381
+collection-music 5228
+collection-omega 5228
+collection-perl 4468
+collection-pictures 5502
+collection-plainextra 5228
+collection-pstricks 5504
+collection-psutils 5228
+collection-publishers 5488
+collection-science 5293
+collection-texinfo 5228
+collection-ttfutils 5228
+collection-wintools 5228
+collection-xetex 5228
+colorinfo 773
+colorsep 88
+colortab 774
+colortbl 775
+colorwav 4214
+combine 776
+commath 2240
+comment 1487
+compactbib 779
+complexity 5447
+components-of-TeX 20
+comprehensive 20
+computational-complexity 2382
+concmath 1487
+concprog 1487
+concrete 101
+confproc 5241
+context 4459
+contour 786
+cooking 2663
+cool 3072
+coollist 5448
+coolstr 5435
+cooltooltips 1865
+coordsys 2411
+coronet 90
+courier 2488
+courier-scaled 1477
+courseoutline 792
+coursepaper 793
+coverpage 1906
+covington 1487
+croatian 621
+crop 795
+crossreference 3108
+crosswrd 1487
+cryst 1487
+cs 101
+cslatex 4912
+csplain 4912
+csquotes 4097
+ctable 5449
+ctib 803
+cuisine 2664
+currvita 2665
+cursolatex 1756
+cursor 3107
+curve 4674
+curve2e 2944
+curves 1674
+custom-bib 4201
+cv 1487
+cweb 3424
+cweb-latex 5271
+cwpuzzle 1487
+cyrillic 2042
+cyrplain 621
+dancers 101
+dashbox 814
+dashrule 815
+datatool 4804
+dateiliste 1984
+datenumber 1487
+datetime 4803
+dcpic 818
+decimal 819
+deleq 1487
+delimtxt 4333
+diagnose 1487
+dialogl 1487
+dice 1487
+dichokey 1487
+dictsym 825
+digiconfigs 1737
+dinat 4772
+dinbrief 4668
+dingbat 2411
+directory 2366
+disser 4658
+dk-bib 2240
+dlfltxb 4607
+dnaseq 1487
+docmfp 831
+doi 4654
+doipubmed 4802
+dotseqn 833
+dottex 4793
+doublestroke 2569
+dpfloat 2411
+draftcopy 1487
+draftwatermark 1764
+dramatist 2411
+dratex 613
+dropping 1487
+dtk 4839
+dtxgallery 4715
+dtxtut 20
+duerer 101
+dvdcoll 4939
+dvips 2756
+dvipsconfig 1944
+dyntree 2015
+eCards 841
+ean 613
+easy 5382
+ebezier 843
+ebong 2124
+ebsthesis 3223
+ec 101
+ecc 5004
+ecltree 845
+eco 846
+economic 4602
+ecv 5019
+ed 5468
+edmac 613
+ednotes 2261
+eemeir 4131
+eepic 1487
+egameps 2188
+egplot 2411
+eiad 852
+eijkhout 2172
+ellipsis 853
+elmath 854
+elpres 855
+elsevier 4768
+elsevier-bib 3313
+elvish 613
+em 857
+emp 858
+emulateapj 2240
+enctex 613
+endfloat 1827
+endheads 3580
+engpron 862
+engrec 863
+enumitem 4623
+envbig 865
+environ 5020
+envlab 1487
+epigrafica 5094
+epigraph 867
+epiolmec 868
+eplain 2630
+epsdice 3984
+epsf 1487
+epslatex-fr 2550
+epspdfconversion 5140
+eqlist 3110
+eqname 871
+eqnarray 1487
+eqparbox 873
+errata 5437
+es-tex-faq 2227
+esdiff 874
+esint 875
+esint-type1 5005
+eskd 876
+eskdx 2798
+eso-pic 1875
+esvect 5487
+etaremune 879
+etex 880
+ethiop 2269
+ethiop-t1 2269
+etoolbox 5149
+euenc 3737
+euler 1487
+eulervm 3865
+euproposal 5341
+euro 885
+euro-ce 1487
+eurofont 1487
+europecv 1770
+eurosans 888
+eurosym 889
+euxm 101
+everypage 1766
+exam 892
+examdesign 2100
+examplep 2840
+exercise 1778
+expdlist 896
+expl3 4336
+export 898
+expressg 4777
+extarrows 899
+exteps 2208
+extpfeil 1985
+extract 2413
+extsizes 4606
+facsimile 1487
+faktor 1801
+fancybox 4985
+fancyhdr 2252
+fancyhdr-it 14
+fancynum 2250
+fancyref 2626
+fancytooltips 4686
+fancyvrb 907
+fax 2251
+fc 909
+featpost 104
+fenixpar 4190
+feyn 910
+feynmf 911
+fge 4608
+figbib 912
+figsize 913
+filecontents 2411
+finbib 71
+fink 5450
+firststeps 20
+fixfoot 1487
+fixme 1798
+fixpdfmag 3669
+flabels 918
+flagderiv 919
+flashcards 1487
+flippdf 1765
+float 2627
+floatflt 922
+floatrow 4910
+flowfram 4801
+fltpoint 4776
+fmp 925
+fmtcount 4800
+fnbreak 4697
+fncychap 4693
+foekfont 2945
+foilhtml 929
+fonetika 5494
+fontch 4887
+fontinst 1487
+fontname 4643
+fontspec 4633
+footbib 2411
+footmisc 933
+footnpag 3224
+forloop 2170
+formlett 1487
+formula 1487
+formular 937
+fourier 938
+fouriernc 4196
+fp 939
+fpl 4825
+frankenstein 4311
+frcursive 940
+free-math-font-survey 1633
+frenchle 4385
+fribrief 941
+frletter 5290
+fullblck 942
+fullpict 2414
+functan 944
+fundus 1487
+futhark 1487
+g-brief 1487
+galley 616
+galois 1847
+garamond 90
+garuda 98
+gastex 3316
+gatech-thesis 1595
+gauss 1487
+gcard 4794
+gcite 4901
+genealogy 1487
+genmisc 613
+genmpage 2136
+gentle 1487
+gentle-gr 16
+geometry 3584
+geomsty 952
+german 1487
+germbib 2367
+ginpenc 4613
+gloss 1487
+glossaries 5177
+glyphlist 4938
+gmdoc 5194
+gmeometric 5451
+gmiflink 2802
+gmutils 5452
+gmverb 4205
+gnuplottex 5198
+go 957
+gost 106
+gothic 101
+graphics 2132
+graphicx-psmin 959
+greek 960
+greektex 961
+greenpoint 5006
+grfpaste 1487
+grnumalt 2151
+groff 5362
+grotesq 964
+grtimes 965
+grverb 1487
+gu 5293
+guide-to-latex 1487
+guides-pl 16
+guitar 1487
+guitbeamer 5506
+gustlib 1570
+hands 101
+hanging 968
+harmony 4266
+harpoon 1487
+harvard 1487
+harvmac 1487
+hatching 104
+hc 971
+help 1513
+helvetic 2488
+hepparticles 973
+hepthesis 4948
+hepunits 5061
+hexgame 4994
+hfbright 111
+hfoldsty 975
+hhtensor 2150
+hieroglf 977
+hilowres 978
+histogr 2415
+hitec 980
+hpsdiss 981
+hrlatex 2263
+hvfloat 982
+hvmath 983
+hyper 984
+hyperref 5453
+hyperref-docsrc 5379
+hyperxmp 1587
+hyphen-arabic 3574
+hyphen-base 3933
+hyphen-basque 2090
+hyphen-bulgarian 2090
+hyphen-coptic 3573
+hyphen-croatian 3573
+hyphen-czechslovak 3573
+hyphen-danish 3573
+hyphen-dutch 3573
+hyphen-esperanto 3573
+hyphen-estonian 3573
+hyphen-finnish 3573
+hyphen-french 3573
+hyphen-german 3573
+hyphen-greek 3573
+hyphen-hungarian 3573
+hyphen-ibycus 3573
+hyphen-icelandic 3573
+hyphen-indonesian 3573
+hyphen-interlingua 2119
+hyphen-italian 3606
+hyphen-latin 4878
+hyphen-mongolian 5096
+hyphen-norwegian 5375
+hyphen-pinyin 3573
+hyphen-polish 3573
+hyphen-portuguese 3573
+hyphen-romanian 3573
+hyphen-russian 3573
+hyphen-serbian 3573
+hyphen-slovene 3635
+hyphen-spanish 4136
+hyphen-swedish 3573
+hyphen-turkish 3573
+hyphen-ukenglish 3573
+hyphen-ukrainian 3573
+hyphen-usorbian 3573
+hyphen-welsh 3573
+hyphenat 986
+hyplain 2356
+ibycus-babel 987
+ibygrk 988
+icsv 1926
+ieeepes 1487
+ifacmtg 1487
+ifmslide 991
+ifsym 992
+ifxetex 2512
+ijmart 5195
+ijqc 2621
+imac 1487
+image-gallery 5454
+impatient 1487
+impatient-fr 16
+index 994
+initials 5111
+inlinebib 995
+insbox 1487
+interactiveworkbook 5007
+inversepath 4204
+invoice 996
+iopart-num 2946
+ipa 1487
+iso 998
+iso10303 999
+isodate 1000
+isodoc 4789
+isorot 1001
+isotope 1002
+itnumpar 4117
+itrans 1003
+iwona 3952
+jadetex 614
+japanese 4632
+jeopardy 4057
+jhep 1005
+jknapltx 1006
+jmn 2449
+jneurosci 1823
+jpsj 4024
+jsmisc 1487
+jura 1487
+juraabbrev 1009
+jurabib 3274
+juramisc 1723
+jurarsp 1487
+kalender 1012
+karnaugh 1013
+kastrup 1487
+kdgreek 1487
+kerkis 2513
+kerntest 4698
+keystroke 1016
+kixfont 101
+kluwer 1487
+knuth 21
+knuthotherfonts 101
+koma-script 5175
+kopka 1487
+kpfonts 4709
+kurier 5482
+l2picfaq 5060
+l2tabu 16
+l2tabu-english 4807
+l2tabu-french 16
+l2tabu-it 14
+labbook 1487
+labelcas 2514
+labels 4614
+lambda 615
+lastpage 1023
+latex 3004
+latex-fonts 2026
+latex-graphics-companion 21
+latex-tds 3492
+latex-tipps-und-tricks 16
+latex-web-companion 1487
+latexconfig 2175
+latexmp 4720
+layouts 1024
+lazylist 1487
+lcd 2411
+lcg 1027
+leading 4267
+leaflet 1029
+ledmac 1031
+leftidx 3273
+lettre 1487
+lettrgth 90
+lettrine 1034
+levy 1035
+lewis 1611
+lexikon 1487
+lfb 101
+lgreek 1037
+lh 2249
+lhcyr 1038
+lhelp 1039
+lib-freetype2 5403
+lib-geturl 5403
+lib-gnu 5403
+lib-md5 5403
+lib-regex 5403
+lib-texmfmp 5403
+lib-zlib 5403
+libertine 5062
+limap 1040
+linearA 1870
+lineno 2240
+linguex 1487
+lipsum 1043
+listbib 1487
+listings 4002
+listliketab 1046
+listofsymbols 1487
+lkort 15
+lkproof 2303
+lm 5455
+lmextra 3758
+localloc 1487
+logic 1487
+logpap 1052
+lps 5273
+lsc 1908
+lshort-bulgarian 15
+lshort-dutch 15
+lshort-english 4611
+lshort-finnish 1487
+lshort-french 16
+lshort-german 16
+lshort-italian 14
+lshort-japanese 14
+lshort-korean 2276
+lshort-mongolian 14
+lshort-polish 3771
+lshort-portuguese 1657
+lshort-russian 1487
+lshort-slovak 16
+lshort-spanish 16
+lshort-thai 11
+lshort-turkish 2180
+lshort-ukr 3981
+lshort-vietnamese 12
+ltablex 1053
+ltabptch 1054
+ltxindex 3493
+ltxmisc 5082
+ly1 1059
+mafr 2173
+magyar 5456
+mailing 1060
+makebox 1061
+makecell 4400
+makecirc 4997
+makecmds 1063
+makedtx 4819
+makeglos 1065
+makeindex 1487
+makeplot 2240
+malayalam 1487
+manfnt 1067
+manjutex 1487
+manuscript 1069
+mapcodes 1070
+maple 1071
+marginnote 2949
+marigold 90
+marvosym 4126
+math-into-latex 22
+mathcomp 1073
+mathdesign 1903
+mathdots 4396
+mathexam 4759
+mathmode 5274
+mathpazo 374
+maybemath 2411
+mcaption 1077
+mceinleger 1078
+mcite 1487
+mdwtools 2088
+memoir 3702
+mentis 1897
+menu 1083
+metafont 604
+metafont-for-beginners 22
+metafp 22
+metaobj 5000
+metaplot 2411
+metapost 4904
+metapost-examples 22
+metatex 621
+metauml 1851
+method 1487
+metre 1085
+mex 617
+mff 1487
+mflogo 1487
+mfnfss 1088
+mfpic 1747
+mft 91
+mftinc 1089
+mftoeps 604
+mh 1090
+mhchem 4328
+mhequ 1487
+mhs 1093
+microtype 4600
+midnight 1487
+miller 1095
+minipage-marginpar 1983
+miniplot 1487
+minitoc 4622
+minutes 4051
+misc 621
+misc209 1099
+mkind-english 89
+mkind-german 89
+mkpattern 4197
+mla-paper 1100
+mlist 5457
+mltex 1487
+mnhyphn 0
+mnras 1487
+mnsymbol 4209
+moderncv 4383
+modroman 1102
+mongolian-babel 5352
+montex 1487
+morehelp 1104
+moresize 1487
+moreverb 2814
+morse 1487
+movie15 5443
+mp3d 104
+mparhack 1109
+mpattern 105
+ms 4216
+msc 1110
+msg 3945
+mslapa 1487
+mtgreek 1487
+multenum 1114
+multi 88
+multibbl 1115
+multibib 1116
+multicap 2815
+multido 613
+multirow 1118
+munich 1960
+musictex 1487
+musixlyr 1487
+musixps 613
+musixtex 613
+muthesis 4856
+mwcls 2411
+mwrite 1123
+mxd 1487
+mxedruli 1487
+nag 4461
+namespc 5011
+natbib 5316
+nath 1129
+nature 1130
+ncclatex 2240
+ncctools 2240
+ncntrsbk 2488
+newalg 1487
+newfile 1135
+newlfm 1136
+newsletr 1487
+newthm 1137
+newvbtm 1487
+niceframe 1139
+nih 2230
+nkarta 104
+noitcrul 1799
+nomencl 1140
+nomentbl 1794
+nonfloat 3786
+norasi 98
+notes 1487
+notes2bib 5321
+nrc 1144
+ntabbing 1487
+ntg 15
+ntgclass 1146
+ntheorem 3824
+ntheorem-vn 1860
+numline 1148
+numname 4615
+numprint 3258
+oberdiek 5458
+objectz 1487
+oca 101
+ocherokee 103
+ocr-a 101
+ocr-latex 2189
+octavo 4023
+oesch 1487
+ofs 613
+ogham 101
+ogonek 1487
+oinuit 615
+oldstyle 1155
+omega 1726
+omega-devanagari 103
+onlyamsmath 3067
+opcit 4449
+optima 90
+ordinalpt 5097
+osmanian 101
+ot2cyr 1487
+othello 1487
+otibet 1487
+outline 1487
+outliner 1487
+overpic 1487
+oxford 1163
+pacioli 1164
+pageno 1165
+pagenote 1166
+palatino 2488
+paper 1487
+papercdcase 1937
+papertex 4810
+paralist 5135
+parallel 3461
+paresse 1171
+parrun 1172
+passivetex 627
+patch 1173
+patchcmd 1174
+pauldoc 1803
+pawpict 1175
+pb-diagram 1487
+pbox 1177
+pbsheet 1178
+pclnfss 1179
+pdf-forms-tutorial-de 0
+pdf-forms-tutorial-en 0
+pdf-trans 613
+pdfcprot 1180
+pdfpages 1958
+pdfscreen 2411
+pdfslide 1183
+pdfsync 3557
+pdftex-def 4460
+pdftricks 1184
+pdfwin 1185
+pecha 1186
+perception 80
+perltex 5238
+permute 3485
+petri-nets 1190
+pgf 4459
+phaistos 1192
+philex 5289
+philokalia 5035
+philosophersimprint 4307
+phonetic 1487
+photo 1194
+physe 619
+phyzzx 1487
+picinpar 1487
+pict2e 1886
+pictex 613
+pictex2 2505
+piechartmp 104
+pinlabel 5502
+pittetd 1198
+pl 101
+placeins 1199
+plain 3308
+plari 2096
+plates 1200
+play 4605
+plgraph 621
+plnfss 621
+plweb 1487
+pmgraph 1487
+poemscol 4675
+polski 4744
+polyglot 1487
+polynom 1781
+polynomial 4060
+polytable 2417
+postcards 1487
+powerdot 1842
+ppower4 1211
+ppr-prv 1212
+pracjourn 5442
+preprint 1214
+prettyref 3111
+preview 3486
+probsoln 4796
+procIAGssymp 1218
+progkeys 1487
+program 4676
+progress 1487
+prosper 1223
+protocol 2386
+psafm 90
+pseudocode 1226
+psfig 613
+psfrag 2095
+psfrag-italian 5358
+psfragx 1228
+psgo 1229
+psizzl 623
+pslatex 1230
+psnfss 2040
+pspicture 1715
+pst-2dplot 4069
+pst-3d 2155
+pst-3dplot 5459
+pst-asr 5504
+pst-bar 2411
+pst-barcode 4401
+pst-blur 3494
+pst-circ 5205
+pst-coil 2559
+pst-dbicons 3319
+pst-diffraction 5058
+pst-eps 2565
+pst-eucl 2719
+pst-fill 5460
+pst-fr3d 1240
+pst-fractal 5050
+pst-func 4854
+pst-geo 3148
+pst-ghsb 1242
+pst-gr3d 1243
+pst-grad 4677
+pst-infixplot 2718
+pst-jtree 5496
+pst-labo 2951
+pst-lens 1681
+pst-light3d 1248
+pst-math 5333
+pst-ob3d 5292
+pst-optexp 4902
+pst-optic 3001
+pst-osci 2270
+pst-pdf 5461
+pst-pdgr 5462
+pst-poly 1252
+pst-qtree 4147
+pst-slpe 1253
+pst-soroban 5206
+pst-spectra 5297
+pst-stru 5489
+pst-text 2561
+pst-uml 3311
+pst-vue3d 4098
+pstricks 4215
+pstricks-add 5253
+pstricks-tutorial 3598
+ptptex 1258
+punk 101
+pxfonts 1259
+qcm 1260
+qobitree 1487
+qpxqtx 3893
+qstest 3990
+qsymbols 1263
+qtree 1828
+quotchap 1264
+r-und-s 613
+randbild 4309
+randtext 1853
+rccol 1266
+rcs 4918
+rcsinfo 1268
+realcalc 613
+recipecard 5491
+rectopma 1487
+refcheck 1270
+refman 1487
+refstyle 2111
+regcount 2419
+register 4059
+relenc 1487
+repeatindex 1276
+resume 1277
+revtex 1278
+rlepsf 1279
+rmpage 1487
+robustcommand 1804
+robustindex 1281
+roex 604
+romannum 1282
+rotating 1487
+rotfloat 1284
+rotpages 1285
+rsc 5236
+rsfs 621
+rst 1287
+rtkinenc 1288
+rtklage 2109
+ruhyphen 613
+sae 1289
+sanskrit 1290
+sauerj 1291
+sauter 101
+sauterfonts 1292
+savefnmark 2392
+savesym 1294
+savetrees 2527
+scale 2392
+scalebar 1297
+schedule 3478
+scheme-basic 5228
+scheme-context 5228
+scheme-full 5228
+scheme-gust 5228
+scheme-gutenberg 5228
+scheme-medium 5228
+scheme-minimal 5228
+scheme-omega 5228
+scheme-tetex 5228
+scheme-xml 5228
+scientificpaper 1299
+sciposter 1975
+sciwordconv 1301
+screenplay 2521
+script 2392
+sdrt 4292
+sectionbox 2240
+sectsty 1768
+semantic 1783
+semaphor 1306
+seminar 3430
+semioneside 1308
+seqsplit 1938
+setspace 1309
+sf298 1310
+sffms 1311
+sfg 4837
+sfmath 4860
+sgame 2183
+shadbox 1313
+shadethm 1314
+shapepar 2523
+shortlst 1487
+shorttoc 2392
+showdim 1317
+showexpl 4036
+showlabels 4452
+sidecap 2392
+sides 1321
+siggraph 2392
+simplecv 4184
+simpsons 101
+skak 5426
+skaknew 1626
+skull 2392
+slantsc 1487
+slashbox 1487
+slidenotes 1328
+slideshow 5001
+smalltableof 1329
+smartref 1330
+smflatex 1487
+snapshot 2392
+songbook 5119
+sort-by-letters 1773
+soul 1334
+soyombo 1487
+sparklines 5441
+spie 5439
+splines 2207
+splitbib 2392
+splitindex 4397
+spotcolor 2522
+sprite 2392
+srcltx 2624
+sseq 1342
+ssqquote 2392
+stack 1344
+stage 1345
+startex 624
+statistik 1487
+stdclsdv 2392
+stdpage 2392
+stellenbosch 4168
+stmaryrd 1487
+struktex 1995
+sttools 1351
+subdepth 4876
+subeqn 1352
+subeqnarray 1353
+subfig 2149
+subfigure 2957
+subfloat 1356
+substr 2392
+sudoku 1841
+sudokubundle 1992
+sugconf 1934
+supertabular 1359
+svgcolor 2955
+svn 5463
+svn-multi 4604
+svninfo 4175
+swebib 2392
+swimgraf 1362
+symbol 1364
+synproof 4562
+syntax 2392
+syntrace 4031
+synttree 1891
+t-angles 1962
+t2 1368
+tableaux 2517
+tabto-ltx 1640
+tabulary 5438
+tabvar 4263
+talk 5464
+tamethebeast 23
+tap 613
+tapir 101
+taupin 1373
+tcldoc 1374
+tds 1487
+technics 1487
+template 616
+templates-fenn 5028
+templates-sommer 5027
+tengwarscript 4054
+tensor 1376
+teubner 5465
+tex-gyre 5283
+tex-ps 613
+tex-refs 23
+tex-virtual-academy-pl 3527
+tex4ht 4248
+texbytopic 5126
+texdraw 613
+texilikecover 4295
+texinfo 4866
+texlive-common 11
+texlive-cz 3797
+texlive-en 5377
+texlive-fr 3795
+texlive-ge 3818
+texlive-pl 3900
+texlive-ru 3752
+texlive-zh-cn 3934
+texlogos 1378
+texmate 2181
+texpower 5037
+texshade 4493
+texsis 626
+textcase 1382
+textfit 2382
+textmerg 1487
+textopo 1384
+textpath 3968
+textpos 4105
+thesis-titlepage-fhac 1806
+thumb 2382
+thumbpdf 5466
+thuthesis 5488
+ticket 2257
+times 2488
+timescyr 90
+timesht 1389
+timesnew 90
+timing 1390
+tipa 1391
+titlefoot 1392
+titlesec 4731
+titling 1394
+tlc2 1487
+tmmath 1395
+tocbibind 1396
+tocloft 1397
+tocvsec2 2382
+todo 1487
+tokenizer 1400
+toolbox 1401
+tools 2039
+topfloat 1487
+toptesi 4806
+totpages 1404
+tpslifonts 1405
+tracking 1406
+trajan 1407
+tree-dvips 1487
+treetex 1487
+trfsigns 2382
+trivfloat 4996
+trsym 1410
+truetype 23
+tugboat 5033
+tugboat-plain 4101
+turnstile 4917
+twoup 4001
+txfonts 1413
+type1cm 1414
+typedref 1487
+typespec 621
+typogrid 3582
+uaclasses 1487
+ucs 1418
+ucthesis 1419
+uebungsblatt 5485
+uhc 102
+uhrzeit 1420
+uiucthesis 2343
+ukrhyph 613
+ulsy 3375
+umich-thesis 1423
+uml 2817
+umlaute 2152
+umoline 1487
+umrand 1426
+umthesis 4008
+underlin 2112
+undertilde 2343
+units 2343
+unitsdef 2343
+univers 90
+universa 1431
+upmethodology 4732
+upquote 1432
+urlbst 577
+ushort 2343
+utf8mex 617
+utopia 4829
+uwthesis 1487
+vancouver 4773
+variations 4398
+varindex 2342
+vector 2342
+velthuis 1691
+venn 104
+verse 3385
+versions 2342
+vertex 621
+vhistory 5467
+visualfaq 1864
+vita 1441
+vmargin 1442
+vntex 5291
+volumes 1444
+voss-de 16
+vpe 1952
+vrb 613
+vrsion 1487
+vtex 2004
+wadalab 98
+wallpaper 2342
+warning 1447
+warpcol 2342
+was 1449
+wasy 621
+wasysym 1450
+webguide 23
+williams 1451
+wnri 1487
+wntamil 101
+wordcount 1453
+wordlike 1835
+wp-conv 23
+wrapfig 1454
+wsuipa 1455
+xargs 5328
+xbase 5039
+xbmc 101
+xcolor 3687
+xdoc 1457
+xetex 3693
+xetexconfig 3604
+xetexref 4659
+xetexurl 2302
+xfor 4798
+xgreek 5083
+xifthen 4186
+xinitials 616
+xkeyval 4159
+xltxtra 4857
+xmlplay 627
+xmltex 627
+xmpincl 1460
+xnewcommand 4185
+xoptarg 4188
+xor 616
+xparse 616
+xq 2304
+xtab 2338
+xtcapts 3315
+xtheorem 616
+xu-hyphen 4247
+xunicode 4687
+xyling 1949
+xypic 613
+xypic-tut-pt 1755
+xytree 2065
+yafoot 1487
+yannisgr 101
+yfonts 1465
+yhmath 1466
+yi4latex 1467
+york-thesis 1673
+youngtab 1469
+yplan 1487
+ytex 628
+zapfchan 2488
+zapfding 1472
+zed-csp 1487
+zefonts 1487
+i386-solaris -1
+i386-openbsd -1
+i386-linux -1
+hppa-hpux -1
+mips-irix -1
+sparc-linux -1
+alpha-linux -1
+sparc-solaris -1
+powerpc-linux -1
+i386-darwin -1
+win32 -1
+i386-freebsd -1
+powerpc-aix -1
+x86_64-linux -1
+powerpc-darwin -1
diff --git a/Master/tlpkg/texlive.tlpdb b/Master/tlpkg/texlive.tlpdb
new file mode 100644
index 00000000000..e77df06cdc4
--- /dev/null
+++ b/Master/tlpkg/texlive.tlpdb
@@ -0,0 +1,83777 @@
+name 12many
+category Package
+revision 629
+shortdesc 12many, generalizing mathematical index sets
+longdesc In the discrete branches of mathematics and the computer
+longdesc sciences, it will only take some seconds until you're faced
+longdesc with a set like {1,...,m}. Only some people write
+longdesc $1\ldotp\ldotp m$, or $\{j:1\leq j\leq m\}$, and that journal
+longdesc you're submitting to might want something else entirely. \otm{}
+longdesc provides an interface that makes changing from one to another a
+longdesc one-line change.
+docfiles size=394380
+ texmf-dist/doc/latex/12many/12many.pdf
+ texmf-dist/doc/latex/12many/README
+srcfiles size=17720
+ texmf-dist/source/latex/12many/12many.dtx
+ texmf-dist/source/latex/12many/12many.ins
+runfiles size=3953
+ texmf-dist/tex/latex/12many/12many.sty
+catalogue-version 0.3
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/12many
+catalogue-license lppl
+
+name ANUfinalexam
+category Package
+revision 5380
+shortdesc LaTeX document shell for ANU final exam
+longdesc This LaTeX document shell is created for the standard
+longdesc formatting of final exams in The Australian National
+longdesc University.
+docfiles size=3853
+ texmf-dist/doc/latex/ANUfinalexam/ANUfinalexam.tex
+ texmf-dist/doc/latex/ANUfinalexam/README
+catalogue-version
+catalogue-date 2007-02-23 12:17:35 +0100
+catalogue-ctan /macros/latex/contrib/anufinalexam/ANUfinalexam.tex
+catalogue-license other-free
+
+name AkkTeX
+category Package
+revision 5484
+shortdesc A collection of packages and classes.
+longdesc The bundle provides: – new document classes for technical
+longdesc documents, thesis works, manuscripts and lecture notes; –
+longdesc many mathematical packages providing a tremendous nuber of
+longdesc macros for mathematical texts; – layout providing a non-empty
+longdesc parskip with extended length corrections and new section
+longdesc definition commands; – easy label creation for counters; and
+longdesc – german language tools and predefined abbreviations.
+docfiles size=2410
+ texmf-dist/doc/latex/AkkTeX/README details="Bundle README"
+runfiles size=97178
+ texmf-dist/tex/latex/AkkTeX/akkconditional.sty
+ texmf-dist/tex/latex/AkkTeX/akkcounterlabelpattern.sty
+ texmf-dist/tex/latex/AkkTeX/akkcs.sty
+ texmf-dist/tex/latex/AkkTeX/akkdoc.sty
+ texmf-dist/tex/latex/AkkTeX/akkgerman.sty
+ texmf-dist/tex/latex/AkkTeX/akkgermanabbreviations.sty
+ texmf-dist/tex/latex/AkkTeX/akklecture.cls
+ texmf-dist/tex/latex/AkkTeX/akklongpage.sty
+ texmf-dist/tex/latex/AkkTeX/akkmath.sty
+ texmf-dist/tex/latex/AkkTeX/akkmathbasic.sty
+ texmf-dist/tex/latex/AkkTeX/akkmathdisc.sty
+ texmf-dist/tex/latex/AkkTeX/akkmathfun.sty
+ texmf-dist/tex/latex/AkkTeX/akkmathnum.sty
+ texmf-dist/tex/latex/AkkTeX/akkmathpaper.sty
+ texmf-dist/tex/latex/AkkTeX/akkmathproof.sty
+ texmf-dist/tex/latex/AkkTeX/akkmathrel.sty
+ texmf-dist/tex/latex/AkkTeX/akkmathset.sty
+ texmf-dist/tex/latex/AkkTeX/akkmathtext.sty
+ texmf-dist/tex/latex/AkkTeX/akknum.sty
+ texmf-dist/tex/latex/AkkTeX/akkparskip.sty
+ texmf-dist/tex/latex/AkkTeX/akkscript.cls
+ texmf-dist/tex/latex/AkkTeX/akksection.sty
+ texmf-dist/tex/latex/AkkTeX/akkstring.sty
+ texmf-dist/tex/latex/AkkTeX/akktecdoc.cls
+ texmf-dist/tex/latex/AkkTeX/akktex.sty
+ texmf-dist/tex/latex/AkkTeX/akkwidepage.sty
+catalogue-version 0.3.2
+catalogue-date 2006-11-29 14:22:26 +0100
+catalogue-ctan /macros/latex/contrib/akktex
+catalogue-license lppl
+
+name Asana-Math
+category Package
+revision 5445
+docfiles size=617
+ texmf-dist/doc/fonts/Asana-Math/README.1ST
+runfiles size=368128
+ texmf-dist/fonts/opentype/public/Asana-Math/Asana-Math.otf
+
+name CJK
+category Package
+revision 2361
+depend arphic
+depend cns
+depend garuda
+depend norasi
+depend uhc
+depend wadalab
+docfiles size=2738350
+ texmf-dist/doc/latex/CJK/ChangeLog
+ texmf-dist/doc/latex/CJK/MANIFEST
+ texmf-dist/doc/latex/CJK/README
+ texmf-dist/doc/latex/CJK/cjk/README
+ texmf-dist/doc/latex/CJK/cjk/READMEb5.cjk
+ texmf-dist/doc/latex/CJK/contrib/wadalab/DNP.txt
+ texmf-dist/doc/latex/CJK/doc/CEF.txt
+ texmf-dist/doc/latex/CJK/doc/CJK.txt
+ texmf-dist/doc/latex/CJK/doc/CJKutf8.txt
+ texmf-dist/doc/latex/CJK/doc/COPYING
+ texmf-dist/doc/latex/CJK/doc/INSTALL
+ texmf-dist/doc/latex/CJK/doc/TDS.txt
+ texmf-dist/doc/latex/CJK/doc/TeXLive.txt
+ texmf-dist/doc/latex/CJK/doc/chinese/README
+ texmf-dist/doc/latex/CJK/doc/chinese/READMEb5.tex
+ texmf-dist/doc/latex/CJK/doc/chinese/READMEgb.tex
+ texmf-dist/doc/latex/CJK/doc/chinese/emTeXb5.txt
+ texmf-dist/doc/latex/CJK/doc/chinese/teTeXb5.txt
+ texmf-dist/doc/latex/CJK/doc/cjk-enc.txt
+ texmf-dist/doc/latex/CJK/doc/cjk/README
+ texmf-dist/doc/latex/CJK/doc/cjk/READMEb5.cjk
+ texmf-dist/doc/latex/CJK/doc/commands.txt
+ texmf-dist/doc/latex/CJK/doc/dvidrv.txt
+ texmf-dist/doc/latex/CJK/doc/fdxfiles.txt
+ texmf-dist/doc/latex/CJK/doc/fonts.txt
+ texmf-dist/doc/latex/CJK/doc/history.2_5
+ texmf-dist/doc/latex/CJK/doc/history.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/README
+ texmf-dist/doc/latex/CJK/doc/japanese/ascii.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/japanese.jis
+ texmf-dist/doc/latex/CJK/doc/japanese/japanese.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/jp-fonts.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/jp-tex.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/preview.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/shibuaki.txt
+ texmf-dist/doc/latex/CJK/doc/pdf/READMEb5.pdf
+ texmf-dist/doc/latex/CJK/doc/pdf/READMEgb.pdf
+ texmf-dist/doc/latex/CJK/doc/pdf/c90.pdf
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/HOWTO.txt
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/bkai.map
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/cid-x.map
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/cwtb.map
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/dvipdfmx.cfg
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/gen-map.pl
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/map.list
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/texinput/Bg5/c00cwtb.fd
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/texinput/Bg5/c00tmpl.fd
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/texinput/GB/c10tmpl.fd
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/texinput/JIS/c40tmpl.fd
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/texinput/SJIS/c49tmpl.fd
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/updmap.my
+ texmf-dist/doc/latex/CJK/doc/pdfhowto/examples/wcl.sfd
+ texmf-dist/doc/latex/CJK/doc/pinyin.txt
+ texmf-dist/doc/latex/CJK/doc/pyhyphen.txt
+ texmf-dist/doc/latex/CJK/doc/reftex.txt
+ texmf-dist/doc/latex/CJK/doc/ruby.txt
+ texmf-dist/doc/latex/CJK/doc/thaifont.txt
+ texmf-dist/doc/latex/CJK/doc/vertical.txt
+ texmf-dist/doc/latex/CJK/examples/Big5.tex
+ texmf-dist/doc/latex/CJK/examples/Big5vert.tex
+ texmf-dist/doc/latex/CJK/examples/CEF_test.tex
+ texmf-dist/doc/latex/CJK/examples/CJKbabel.tex
+ texmf-dist/doc/latex/CJK/examples/CJKfntef.tex
+ texmf-dist/doc/latex/CJK/examples/CJKmixed.tex
+ texmf-dist/doc/latex/CJK/examples/CJKutf8.tex
+ texmf-dist/doc/latex/CJK/examples/GB.tex
+ texmf-dist/doc/latex/CJK/examples/JIS.tex
+ texmf-dist/doc/latex/CJK/examples/KS.tex
+ texmf-dist/doc/latex/CJK/examples/README
+ texmf-dist/doc/latex/CJK/examples/SJIS.tex
+ texmf-dist/doc/latex/CJK/examples/UTF8.tex
+ texmf-dist/doc/latex/CJK/examples/cjk/Big5.cjk
+ texmf-dist/doc/latex/CJK/examples/cjk/Big5vert.cjk
+ texmf-dist/doc/latex/CJK/examples/cjk/CEF_test.cjk
+ texmf-dist/doc/latex/CJK/examples/cjk/CJKbabel.cjk
+ texmf-dist/doc/latex/CJK/examples/cjk/SJIS.cjk
+ texmf-dist/doc/latex/CJK/examples/cjk/muletest.cjk
+ texmf-dist/doc/latex/CJK/examples/cjk/rubytest.cjk
+ texmf-dist/doc/latex/CJK/examples/cjk/thai.cjk
+ texmf-dist/doc/latex/CJK/examples/muletest.tex
+ texmf-dist/doc/latex/CJK/examples/pdf/Big5.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/Big5vert.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/CEF_test.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/CJKbabel.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/CJKfntef.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/CJKmixed.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/CJKutf8.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/GB.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/JIS.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/KS.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/SJIS.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/UTF8.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/muletest.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/py_test.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/pytest.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/rubytest.pdf
+ texmf-dist/doc/latex/CJK/examples/pdf/thai.pdf
+ texmf-dist/doc/latex/CJK/examples/py_test.tex
+ texmf-dist/doc/latex/CJK/examples/pytest.tex
+ texmf-dist/doc/latex/CJK/examples/rubytest.tex
+ texmf-dist/doc/latex/CJK/examples/thai.tex
+srcfiles size=357346
+ texmf-dist/source/latex/CJK/contrib/wadalab/fixwada
+ texmf-dist/source/latex/CJK/contrib/wadalab/fixwada2.pl
+ texmf-dist/source/latex/CJK/contrib/wadalab/makefont
+ texmf-dist/source/latex/CJK/contrib/wadalab/makeuniwada.pl
+ texmf-dist/source/latex/CJK/contrib/wadalab/wadalab.map
+ texmf-dist/source/latex/CJK/texinput/KS/HLaTeX/c63mj.fd
+ texmf-dist/source/latex/CJK/texinput/KS/HLaTeX/c64mj.fd
+ texmf-dist/source/latex/CJK/texinput/KS/HLaTeX/c65mj.fd
+ texmf-dist/source/latex/CJK/utils/lisp/cjkspace.el
+ texmf-dist/source/latex/CJK/utils/lisp/cjktilde.el
+ texmf-dist/source/latex/CJK/utils/lisp/emacs/cjk-enc.el
+ texmf-dist/source/latex/CJK/utils/lisp/emacs/thai-word.el
+ texmf-dist/source/latex/CJK/utils/lisp/mule-2.3/cjk-enc.el
+ texmf-dist/source/latex/CJK/utils/pyhyphen/pinyin.c
+ texmf-dist/source/latex/CJK/utils/pyhyphen/pinyin.tr
+ texmf-dist/source/latex/CJK/utils/subfonts/clonevf.pl
+ texmf-dist/source/latex/CJK/utils/subfonts/hlatex2agl.pl
+ texmf-dist/source/latex/CJK/utils/subfonts/makefdx.pl
+ texmf-dist/source/latex/CJK/utils/subfonts/sfd2uni.pl
+ texmf-dist/source/latex/CJK/utils/subfonts/subfonts.pe
+ texmf-dist/source/latex/CJK/utils/subfonts/uni2sfd.pl
+ texmf-dist/source/latex/CJK/utils/subfonts/vertical.pe
+ texmf-dist/source/latex/CJK/utils/subfonts/vertref.pe
+ texmf-dist/source/latex/CJK/utils/thaifont/INSTALL
+ texmf-dist/source/latex/CJK/utils/thaifont/c90.etx
+ texmf-dist/source/latex/CJK/utils/thaifont/c90.mtx
+ texmf-dist/source/latex/CJK/utils/thaifont/dbtt-old/config.dbtt-old
+ texmf-dist/source/latex/CJK/utils/thaifont/dbtt-old/dbtt-old-alias.etx
+ texmf-dist/source/latex/CJK/utils/thaifont/dbtt-old/dbtt-old-alias.mtx
+ texmf-dist/source/latex/CJK/utils/thaifont/dbtt-old/dbtt-old-alias.tex
+ texmf-dist/source/latex/CJK/utils/thaifont/dbtt-old/dbtt-old.fontinst
+ texmf-dist/source/latex/CJK/utils/thaifont/dbtt-old/dbtt-old.map
+ texmf-dist/source/latex/CJK/utils/thaifont/garuda.fontinst
+ texmf-dist/source/latex/CJK/utils/thaifont/norasi.fontinst
+runfiles size=625749
+ texmf-dist/tex/latex/CJK/Bg5/Bg5.cap
+ texmf-dist/tex/latex/CJK/Bg5/Bg5.chr
+ texmf-dist/tex/latex/CJK/Bg5/Bg5.cpx
+ texmf-dist/tex/latex/CJK/Bg5/Bg5.enc
+ texmf-dist/tex/latex/CJK/Bg5/HK.enc
+ texmf-dist/tex/latex/CJK/Bg5/c00bkai.fdx
+ texmf-dist/tex/latex/CJK/Bg5/c00bsmi.fd
+ texmf-dist/tex/latex/CJK/Bg5/c00bsmi.fdx
+ texmf-dist/tex/latex/CJK/Bg5/c00bsmir.fd
+ texmf-dist/tex/latex/CJK/Bg5/c00bsmir.fdx
+ texmf-dist/tex/latex/CJK/Bg5/c00cns.fd
+ texmf-dist/tex/latex/CJK/Bg5/c00fs.fd
+ texmf-dist/tex/latex/CJK/Bg5/c00kai.fd
+ texmf-dist/tex/latex/CJK/Bg5/c00kair.fd
+ texmf-dist/tex/latex/CJK/Bg5/c00kair.fdx
+ texmf-dist/tex/latex/CJK/Bg5/c00song.fd
+ texmf-dist/tex/latex/CJK/Bg5/c01song.fd
+ texmf-dist/tex/latex/CJK/Bg5/c05song.fd
+ texmf-dist/tex/latex/CJK/Bg5/c09song.fd
+ texmf-dist/tex/latex/CJK/CEF/c80song.fd
+ texmf-dist/tex/latex/CJK/CEF/c81song.fd
+ texmf-dist/tex/latex/CJK/CJK.enc
+ texmf-dist/tex/latex/CJK/CJK.sty
+ texmf-dist/tex/latex/CJK/CJKfntef.sty
+ texmf-dist/tex/latex/CJK/CJKnumb.sty
+ texmf-dist/tex/latex/CJK/CJKulem.sty
+ texmf-dist/tex/latex/CJK/CJKutf8.sty
+ texmf-dist/tex/latex/CJK/CJKvert.sty
+ texmf-dist/tex/latex/CJK/CNS/EUC-TW.bdg
+ texmf-dist/tex/latex/CJK/CNS/EUC-TW.chr
+ texmf-dist/tex/latex/CJK/CNS/EUC-TW.enc
+ texmf-dist/tex/latex/CJK/CNS/c31song.fd
+ texmf-dist/tex/latex/CJK/CNS/c32song.fd
+ texmf-dist/tex/latex/CJK/CNS/c33song.fd
+ texmf-dist/tex/latex/CJK/CNS/c34song.fd
+ texmf-dist/tex/latex/CJK/CNS/c35song.fd
+ texmf-dist/tex/latex/CJK/CNS/c36song.fd
+ texmf-dist/tex/latex/CJK/CNS/c37song.fd
+ texmf-dist/tex/latex/CJK/GB/GB.cap
+ texmf-dist/tex/latex/CJK/GB/GB.cpx
+ texmf-dist/tex/latex/CJK/GB/c10fs.fd
+ texmf-dist/tex/latex/CJK/GB/c10gbsn.fd
+ texmf-dist/tex/latex/CJK/GB/c10gbsn.fdx
+ texmf-dist/tex/latex/CJK/GB/c10song.fd
+ texmf-dist/tex/latex/CJK/GB/c11song.fd
+ texmf-dist/tex/latex/CJK/GB/c19song.fd
+ texmf-dist/tex/latex/CJK/GB/c20song.fd
+ texmf-dist/tex/latex/CJK/GB/c21song.fd
+ texmf-dist/tex/latex/CJK/JIS/EUC-JP.bdg
+ texmf-dist/tex/latex/CJK/JIS/EUC-JP.chr
+ texmf-dist/tex/latex/CJK/JIS/EUC-JP.enc
+ texmf-dist/tex/latex/CJK/JIS/JIS.cap
+ texmf-dist/tex/latex/CJK/JIS/JIS.cpx
+ texmf-dist/tex/latex/CJK/JIS/JISdnp.enc
+ texmf-dist/tex/latex/CJK/JIS/c40song.fd
+ texmf-dist/tex/latex/CJK/JIS/c41song.fd
+ texmf-dist/tex/latex/CJK/JIS/c42song.fd
+ texmf-dist/tex/latex/CJK/JIS/c43song.fd
+ texmf-dist/tex/latex/CJK/JIS/c50song.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/HLaTeX.chr
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/KSHL.enc
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63bm.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63dn.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63gr.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63gs.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63gt.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63jgt.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63jmj.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63jnv.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63jsr.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63mj.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63pg.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63pga.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63ph.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63pn.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63sh.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63tz.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63vd.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c63yt.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64bm.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64dn.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64gr.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64gs.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64gt.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64jgt.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64jmj.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64jnv.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64jsr.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64mj.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64pg.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64pga.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64ph.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64pn.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64sh.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64tz.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64vd.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c64yt.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65bm.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65dn.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65gr.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65gs.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65gt.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65jgt.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65jmj.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65jnv.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65jsr.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65mj.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65pg.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65pga.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65ph.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65pn.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65sh.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65tz.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65vd.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/c65yt.fd
+ texmf-dist/tex/latex/CJK/KS/HLaTeX/pshan.sty
+ texmf-dist/tex/latex/CJK/KS/KS.chr
+ texmf-dist/tex/latex/CJK/KS/KS.enc
+ texmf-dist/tex/latex/CJK/KS/c60dr.fd
+ texmf-dist/tex/latex/CJK/KS/c60gr.fd
+ texmf-dist/tex/latex/CJK/KS/c60gs.fd
+ texmf-dist/tex/latex/CJK/KS/c60gt.fd
+ texmf-dist/tex/latex/CJK/KS/c60hgt.fd
+ texmf-dist/tex/latex/CJK/KS/c60hmj.fd
+ texmf-dist/tex/latex/CJK/KS/c60hol.fd
+ texmf-dist/tex/latex/CJK/KS/c60hpg.fd
+ texmf-dist/tex/latex/CJK/KS/c60mj.fd
+ texmf-dist/tex/latex/CJK/KS/c61dr.fd
+ texmf-dist/tex/latex/CJK/KS/c61gr.fd
+ texmf-dist/tex/latex/CJK/KS/c61gs.fd
+ texmf-dist/tex/latex/CJK/KS/c61gt.fd
+ texmf-dist/tex/latex/CJK/KS/c61hgt.fd
+ texmf-dist/tex/latex/CJK/KS/c61hmj.fd
+ texmf-dist/tex/latex/CJK/KS/c61hol.fd
+ texmf-dist/tex/latex/CJK/KS/c61hpg.fd
+ texmf-dist/tex/latex/CJK/KS/c61mj.fd
+ texmf-dist/tex/latex/CJK/KS/c62song.fd
+ texmf-dist/tex/latex/CJK/KS/hangul.cap
+ texmf-dist/tex/latex/CJK/KS/hangul.cpx
+ texmf-dist/tex/latex/CJK/KS/hangul2.cap
+ texmf-dist/tex/latex/CJK/KS/hangul2.cpx
+ texmf-dist/tex/latex/CJK/KS/hanja.cap
+ texmf-dist/tex/latex/CJK/KS/hanja.cpx
+ texmf-dist/tex/latex/CJK/SJIS/SJIS.bdg
+ texmf-dist/tex/latex/CJK/SJIS/SJIS.cap
+ texmf-dist/tex/latex/CJK/SJIS/SJIS.chr
+ texmf-dist/tex/latex/CJK/SJIS/SJIS.cpx
+ texmf-dist/tex/latex/CJK/SJIS/SJIS.enc
+ texmf-dist/tex/latex/CJK/SJIS/SJISdnp.chr
+ texmf-dist/tex/latex/CJK/SJIS/SJISdnp.enc
+ texmf-dist/tex/latex/CJK/SJIS/c49song.fd
+ texmf-dist/tex/latex/CJK/UTF8/UTF8.bdg
+ texmf-dist/tex/latex/CJK/UTF8/UTF8.chr
+ texmf-dist/tex/latex/CJK/UTF8/UTF8.enc
+ texmf-dist/tex/latex/CJK/UTF8/c70bkai.fd
+ texmf-dist/tex/latex/CJK/UTF8/c70bkai.fdx
+ texmf-dist/tex/latex/CJK/UTF8/c70bsmi.fd
+ texmf-dist/tex/latex/CJK/UTF8/c70bsmi.fdx
+ texmf-dist/tex/latex/CJK/UTF8/c70gbsn.fd
+ texmf-dist/tex/latex/CJK/UTF8/c70gkai.fd
+ texmf-dist/tex/latex/CJK/UTF8/c70mj.fd
+ texmf-dist/tex/latex/CJK/UTF8/c70song.fd
+ texmf-dist/tex/latex/CJK/UTF8/ja.cpx
+ texmf-dist/tex/latex/CJK/UTF8/ko-Hang.cpx
+ texmf-dist/tex/latex/CJK/UTF8/ko-Hang2.cpx
+ texmf-dist/tex/latex/CJK/UTF8/ko-Hani.cpx
+ texmf-dist/tex/latex/CJK/UTF8/zh-Hans.cpx
+ texmf-dist/tex/latex/CJK/UTF8/zh-Hant.cpx
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c42goth.fd
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c42goth.fdx
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c42maru.fd
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c42maru.fdx
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c42min.fd
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c42min.fdx
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c52maru.fd
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c52maru.fdx
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c52min.fd
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c52min.fdx
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c70goth.fd
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c70maru.fd
+ texmf-dist/tex/latex/CJK/contrib/wadalab/c70min.fd
+ texmf-dist/tex/latex/CJK/extended.chr
+ texmf-dist/tex/latex/CJK/extended.enc
+ texmf-dist/tex/latex/CJK/mule/MULEenc.sty
+ texmf-dist/tex/latex/CJK/pinyin.sty
+ texmf-dist/tex/latex/CJK/pinyin/pinyin.ldf
+ texmf-dist/tex/latex/CJK/pmC.chr
+ texmf-dist/tex/latex/CJK/pmCbig.enc
+ texmf-dist/tex/latex/CJK/pmCsmall.enc
+ texmf-dist/tex/latex/CJK/ruby.sty
+ texmf-dist/tex/latex/CJK/standard.bdg
+ texmf-dist/tex/latex/CJK/standard.chr
+ texmf-dist/tex/latex/CJK/standard.enc
+ texmf-dist/tex/latex/CJK/thai/c90cmr.fd
+ texmf-dist/tex/latex/CJK/thai/c90cmss.fd
+ texmf-dist/tex/latex/CJK/thai/c90cmtt.fd
+ texmf-dist/tex/latex/CJK/thai/c90enc.def
+ texmf-dist/tex/latex/CJK/thai/c90gar.fd
+ texmf-dist/tex/latex/CJK/thai/c90nrsr.fd
+ texmf-dist/tex/latex/CJK/thai/thaicjk.ldf
+
+name ESIEEcv
+category Package
+revision 1487
+docfiles size=10200
+ texmf-dist/doc/latex/ESIEEcv/cvtest.dvi
+ texmf-dist/doc/latex/ESIEEcv/cvtest.tex
+srcfiles size=20356
+ texmf-dist/source/latex/ESIEEcv/ESIEEcv.dtx
+ texmf-dist/source/latex/ESIEEcv/ESIEEcv.ins
+runfiles size=3078
+ texmf-dist/tex/latex/ESIEEcv/ESIEEcv.sty
+
+name FAQ-en
+category Documentation
+revision 2808
+docfiles size=5492134
+ texmf-doc/doc/english/FAQ-en/00readme
+ texmf-doc/doc/english/FAQ-en/CHANGES-3.11
+ texmf-doc/doc/english/FAQ-en/CHANGES-3.16
+ texmf-doc/doc/english/FAQ-en/CHANGES-3.16a
+ texmf-doc/doc/english/FAQ-en/CHANGES-3.16b
+ texmf-doc/doc/english/FAQ-en/CHANGES-3.16c
+ texmf-doc/doc/english/FAQ-en/ChangeLog
+ texmf-doc/doc/english/FAQ-en/Makefile
+ texmf-doc/doc/english/FAQ-en/README
+ texmf-doc/doc/english/FAQ-en/Ulogo.fd
+ texmf-doc/doc/english/FAQ-en/archive.cfg
+ texmf-doc/doc/english/FAQ-en/archive.list
+ texmf-doc/doc/english/FAQ-en/dirctan.tex
+ texmf-doc/doc/english/FAQ-en/faq.cls
+ texmf-doc/doc/english/FAQ-en/faq.sty
+ texmf-doc/doc/english/FAQ-en/faqbody.tex
+ texmf-doc/doc/english/FAQ-en/faqfont.cfg
+ texmf-doc/doc/english/FAQ-en/faqfont.cfg.cmfonts
+ texmf-doc/doc/english/FAQ-en/filectan.tex
+ texmf-doc/doc/english/FAQ-en/html/FAQ-2colfloat.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-2colfltorder.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-2letterfontcmd.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-8000.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-AMSpkg.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-BibTeXing.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-CD.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ECfonts.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-HPdrivers.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-LaTeX2HTML.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-LaTeX3.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-LaTeXandPlain.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-LaTeXtoPlain.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-MF.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-MP.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-PSpreview.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-RCS.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-SGML2TeX.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-TUGstar.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-TeXfuture.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-TeXpronounce.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-TeXsystems.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-WYGexpts.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-abspos.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-acrobat.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-actinarg.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-activechars.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-addtoreset.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-adobetypen.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-algorithms.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-alreadydef.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-altabcr.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-amfonts.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ant.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-appendix.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-archives.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-askquestion.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-atsign.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-atsigns.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-atvert.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-backref.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-badhyph.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-balance.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-baselinepar.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-bibaccent.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-bibinline.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-bibplain.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-bibprefixsort.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-bibstrtl.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-bibtocorder.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-bibtranscinit.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-bold-extras.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-boldgreek.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-books.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-braket.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-breakbox.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-breaklinks.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-brkinline.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-buffovl.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-bug.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-buildbib.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-cancellation.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-capbibtex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-captsty.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-casechange.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-changebars.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-changemargin.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-chapbib.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-charshift.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-chngmargonfly.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-citeURL.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-citesort.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-clsvpkg.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-cmdstar.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-codelist.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-commercial.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-compactbib.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-compjobnam.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-complist.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-concrete.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-conditional.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-context.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-crop.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-crossref.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-csname.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-custbib.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-cv.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-cvtlatex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dec_comma.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-destable.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-distill-prob.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-divzero.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-doc-dirs.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-doc-wiki.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-docotherdir.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-docpictex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dolldoll.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dpfloat.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-drawFeyn.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-drawing.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-driver.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dropping.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dtx.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dvi-bmp.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dvi.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dvipdfmgraphics.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dvips-pdf.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dvips.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-dvipsgraphics.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-edef.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-editors.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-empty.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-endingroup.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-enlarge.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-enumerate.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-epigraph.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-eplain.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-eps.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-epsf.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-eqnarray.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-errmissitem.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-erroradvice.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-errparnum.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-errstruct.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-etex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-euro.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-exscale.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-extex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-extrabrace.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-extref.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-extsizes.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fancyhdr.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fig.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-filename.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-filesused.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-findfiles.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-findfont.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-findwidth.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fixnam.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fixwidtab.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fllost.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-floatpages.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-floats.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-flushboth.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fmtconv.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fontname.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fonts-pln.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fontunavail.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-footintab.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-footnpp.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-formatstymy.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-formbiblabel.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ftncapt.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ftnsect.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fuzzy-T1.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fuzzy-gs.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-fuzzy-type3.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-getbitmap.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-gethelp.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-graph-pspdf.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-graphicspath.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-grmaxwidth.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-gutter.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-hash.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-howmanypp.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-htmlbib.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-hyper.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-hyperdupdest.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-hyphen.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-hyphenaccents.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-hyphexcept.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-hyphoff.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-i18nbib.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ifpdf.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-impgraph.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-inclplain.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-include.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-inputlev.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-inst1cm.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-instfont.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-instmffont.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-instpackages.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-instprinterfont.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-instt1font.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-interruptlist.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-isdef.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-isitanum.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-journalpaper.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-keepfonts.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-labelctr.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-labelfig.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-labelformat.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-labundef.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-landscape.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-latex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-latex2e.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-latexbug.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-latexpronounce.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-latexwords.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-letterclass.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-letterspace.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-limits.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-linenos.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-linespace.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-linespread.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-lit.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-logos.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-lollipop.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-longtab.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ltxabbrv.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ltxcmds.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ltxhash.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-luatex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-mailliststar.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-make.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-makebib.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-makeindex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-man-latex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-man-tex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-manyauthor.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-manymathalph.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-marginmanual.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-marginparside.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-marginpkgs.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-matchbrak.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-mathlips.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-mathml.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-mathsize.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-mathstext.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-mcfloat.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-mcite.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-metrics.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-mfptutorials.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-miktexinst.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-minitoc.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-minxampl.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-missbegdoc.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-misschar.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-missssymb.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-moren9.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-mpprologues.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-msxy.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-multbib.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-multfoot.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-multidoc.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-multind.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-multirow.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-music.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nameref.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-newans.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-newfont.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-newfunction.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-newlang.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-newlineargs.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-noans.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nocitestar.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nodollar.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nofm.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nohyph.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-noline.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nonfree.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nonpdfsp.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nonum.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nopagebrk.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-nopageno.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-normalszmiss.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-noroom.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-notWYSIWYG.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-numbersets.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-oarglikesect.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-oddhyphen.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-oddpage.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ol-books.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-oldfontnames.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-omegaleph.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-onecolabs.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-optionclash.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-otherprinters.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ouparmd.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-outszwrng.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-overfull.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-overstrike.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-pagebychap.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-papersize.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-parallel.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-paraparam.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-parskip.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-patch.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-pdfpagelabels.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-pdftexgraphics.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-pk.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-pkfix.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-pkgdoc.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-plainvltx.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-plninltx.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-poster.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-previewers.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-prinvalint.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-privinst.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-proof.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-protect.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-psatempty.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-psfchoice.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-psfontprob.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ragright.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-readML.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-readtex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-reallyblank.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-recovertex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-ref-doc.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-repeatgrf.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-repfootnote.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-replstdcls.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-rerun.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-resolns.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-reuseq.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-rulethk.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-runheadtoobig.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-running-nos.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-scriptfonts.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-seccntfmt.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-secindent.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-secnumdep.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-secthead.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-semanticnest.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-setURL.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-slashbox.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-slidecls.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-sortbib.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-spaftend.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-specials.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-spell.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-spinmacro.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-splitfoot.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-srchpdf.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-struttab.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-subsubsub.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-subverttoks.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-symbols.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-t1enc.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tabacc.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tabcellalign.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tds.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tempinst.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-texcad.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-texinfo.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-textflow.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-textrace.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tfm.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-the-commands.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-theoremfmt.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-thesis.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-time.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-titlsty.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tmupfl.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-toascii.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tocbibind.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tocloft.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tocloftwrong.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-toodeep.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-topgraph.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tradesyms.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-triptrap.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tutbitslatex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-tutorialstar.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-twooptarg.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-type1T1.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-typebooks.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-typend.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-typo-style.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-underline.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-underscore.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-unkgrfextn.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-uploads.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-upquot.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-useMF.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-usebibtex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-uselmfonts.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-usepictex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-usepsfont.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-varwidcol.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-varwidth.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-verbfile.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-verbwithin.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-vertposfp.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-vertspacefloat.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-virtualfonts.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-watermark.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-wdnohyph.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-webpkgs.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-weirdhyphen.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-whatTeX.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-whatbst.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-whatenc.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-whatpdftex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-whereFAQ.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-wherefiles.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-wholerow.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-why-inp-font.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-whyfree.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-widefigs.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-widows.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-wordcount.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-writecls.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-wrongpn.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-xetex.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-xspace.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-y2k.html
+ texmf-doc/doc/english/FAQ-en/html/FAQ-zerochap.html
+ texmf-doc/doc/english/FAQ-en/html/index.html
+ texmf-doc/doc/english/FAQ-en/letterfaq.tex
+ texmf-doc/doc/english/FAQ-en/locations.mk
+ texmf-doc/doc/english/FAQ-en/logotst.tex
+ texmf-doc/doc/english/FAQ-en/markup-syntax
+ texmf-doc/doc/english/FAQ-en/mflogo.sty
+ texmf-doc/doc/english/FAQ-en/newfaq.aux
+ texmf-doc/doc/english/FAQ-en/newfaq.pdf
+ texmf-doc/doc/english/FAQ-en/newfaq.tex
+ texmf-doc/doc/english/FAQ-en/newfaq.workers
+ texmf-doc/doc/english/FAQ-en/sanitize.pl
+ texmf-doc/doc/english/FAQ-en/stupid_names.sty
+ texmf-doc/doc/english/FAQ-en/texfaq2file
+ texmf-doc/doc/english/FAQ-en/texfaq2html
+ texmf-doc/doc/english/FAQ-en/texnames.sty
+ texmf-doc/doc/english/FAQ-en/updates.tex
+
+name FAQ-fr
+category Documentation
+revision 16
+docfiles size=535081
+ texmf-doc/doc/french/FAQ-fr/docs-francaises
+ texmf-doc/doc/french/FAQ-fr/part1
+ texmf-doc/doc/french/FAQ-fr/part2
+ texmf-doc/doc/french/FAQ-fr/part3
+ texmf-doc/doc/french/FAQ-fr/part4
+ texmf-doc/doc/french/FAQ-fr/part5
+ texmf-doc/doc/french/FAQ-fr/part6
+
+name FAQ-ge
+category Documentation
+revision 16
+docfiles size=3023791
+ texmf-doc/doc/german/FAQ-ge/de-tex-faq.pdf
+ texmf-doc/doc/german/FAQ-ge/html/allgemein.html
+ texmf-doc/doc/german/FAQ-ge/html/de-tex-faq.html
+ texmf-doc/doc/german/FAQ-ge/html/faqindex.html
+ texmf-doc/doc/german/FAQ-ge/html/fonts1.html
+ texmf-doc/doc/german/FAQ-ge/html/fonts2.html
+ texmf-doc/doc/german/FAQ-ge/html/greynext.gif
+ texmf-doc/doc/german/FAQ-ge/html/greynext.xbm
+ texmf-doc/doc/german/FAQ-ge/html/greyprevious.gif
+ texmf-doc/doc/german/FAQ-ge/html/greyprevious.xbm
+ texmf-doc/doc/german/FAQ-ge/html/greyup.gif
+ texmf-doc/doc/german/FAQ-ge/html/index.html
+ texmf-doc/doc/german/FAQ-ge/html/makros1.html
+ texmf-doc/doc/german/FAQ-ge/html/makros2.html
+ texmf-doc/doc/german/FAQ-ge/html/makros3.html
+ texmf-doc/doc/german/FAQ-ge/html/makros4.html
+ texmf-doc/doc/german/FAQ-ge/html/new-de.gif
+ texmf-doc/doc/german/FAQ-ge/html/next.gif
+ texmf-doc/doc/german/FAQ-ge/html/next.xbm
+ texmf-doc/doc/german/FAQ-ge/html/previous.gif
+ texmf-doc/doc/german/FAQ-ge/html/previous.xbm
+ texmf-doc/doc/german/FAQ-ge/html/tools.html
+ texmf-doc/doc/german/FAQ-ge/html/uebersicht.html
+ texmf-doc/doc/german/FAQ-ge/html/up.gif
+ texmf-doc/doc/german/FAQ-ge/html/up.xbm
+ texmf-doc/doc/german/FAQ-ge/html/upd-de.gif
+ texmf-doc/doc/german/FAQ-ge/html/vereine.html
+ texmf-doc/doc/german/FAQ-ge/html/woher.html
+ texmf-doc/doc/german/FAQ-ge/index.html
+ texmf-doc/doc/german/FAQ-ge/txt/de-tex-faq.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.1.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.10.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.11.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.2.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.3.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.4.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.5.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.6.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.7.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.8.txt
+ texmf-doc/doc/german/FAQ-ge/txt/faq.9.txt
+ texmf-doc/doc/german/FAQ-ge/txt/index.html
+
+name GuIT
+category Package
+revision 1606
+docfiles size=342396
+ texmf-dist/doc/latex/GuIT/README
+ texmf-dist/doc/latex/GuIT/guit.pdf
+ texmf-dist/doc/latex/GuIT/guittest.pdf
+ texmf-dist/doc/latex/GuIT/guittest.tex
+srcfiles size=64426
+ texmf-dist/source/latex/GuIT/guit.dtx
+ texmf-dist/source/latex/GuIT/guit.ins
+runfiles size=11004
+ texmf-dist/tex/latex/GuIT/guit.cfg
+ texmf-dist/tex/latex/GuIT/guit.sty
+
+name HA-prosper
+category Package
+revision 633
+docfiles size=243443
+ texmf-dist/doc/latex/HA-prosper/HA-prosper.pdf
+ texmf-dist/doc/latex/HA-prosper/HAPBigtest.tex
+ texmf-dist/doc/latex/HA-prosper/HAPDualslide.tex
+ texmf-dist/doc/latex/HA-prosper/HAPIntroduction.tex
+ texmf-dist/doc/latex/HA-prosper/README
+srcfiles size=164474
+ texmf-dist/source/latex/HA-prosper/HA-prosper.def
+ texmf-dist/source/latex/HA-prosper/HA-prosper.dtx
+runfiles size=187168
+ texmf-dist/tex/latex/HA-prosper/HA-prosper.cfg
+ texmf-dist/tex/latex/HA-prosper/HA-prosper.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/Aggie/AMLogo.eps
+ texmf-dist/tex/latex/HA-prosper/Styles/Aggie/HAPAggie.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/Aggie/files.txt
+ texmf-dist/tex/latex/HA-prosper/Styles/Capsules/HAPcapsules.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/Ciment/HAPciment.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/Fyma/HAPFyma.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/HA/HAPHA.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/HA/flower.ps
+ texmf-dist/tex/latex/HA-prosper/Styles/Lakar/HAPLakar.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/Simple/HAPsimple.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/TCS/HAPTCS.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/TCS/HAPTCSTealBlue.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/TCS/HAPTCSgrad.sty
+ texmf-dist/tex/latex/HA-prosper/Styles/TCS/TCSgradlogo.ps
+ texmf-dist/tex/latex/HA-prosper/Styles/TCS/TCSlogo.ps
+ texmf-dist/tex/latex/HA-prosper/Styles/Tycja/HAPTycja.sty
+
+name IEEEconf
+category Package
+revision 3551
+shortdesc Macros for IEEE conference proceedings.
+longdesc The IEEEconf class implements the formatting dictated by the
+longdesc IEEE Computer Society Press for conference proceedings.
+docfiles size=233930
+ texmf-dist/doc/latex/IEEEconf/IEEEconf.pdf details="Package documentation"
+ texmf-dist/doc/latex/IEEEconf/README details="Readme"
+srcfiles size=37043
+ texmf-dist/source/latex/IEEEconf/IEEEconf.dtx
+ texmf-dist/source/latex/IEEEconf/IEEEconf.ins
+runfiles size=6113
+ texmf-dist/tex/latex/IEEEconf/IEEEconf.cls
+catalogue-version 1.3b
+catalogue-date 2007-01-16 23:25:39 +0100
+catalogue-ctan /macros/latex/contrib/IEEEconf
+catalogue-license lppl
+
+name IEEEtran
+category Package
+revision 4133
+shortdesc Document class for IEEE Transactions journals and conferences.
+longdesc This IEEEtran.cls is now the official LaTeX class for authors
+longdesc of the Institute of Electrical and Electronics Engineers (IEEE)
+longdesc transactions journals and conferences. IEEEtran.cls is mirrored
+longdesc within IEEE's site as well.
+docfiles size=1912449
+ texmf-dist/doc/latex/IEEEtran/IEEEtran_HOWTO.pdf details="Package documentation"
+ texmf-dist/doc/latex/IEEEtran/IEEEtran_bst_HOWTO.pdf
+ texmf-dist/doc/latex/IEEEtran/IEEEtrantools_doc.txt
+ texmf-dist/doc/latex/IEEEtran/README details="Readme"
+ texmf-dist/doc/latex/IEEEtran/README.bibtex
+ texmf-dist/doc/latex/IEEEtran/README.extras
+ texmf-dist/doc/latex/IEEEtran/README.testflow
+ texmf-dist/doc/latex/IEEEtran/README.tools
+ texmf-dist/doc/latex/IEEEtran/bare_adv.tex
+ texmf-dist/doc/latex/IEEEtran/bare_conf.tex
+ texmf-dist/doc/latex/IEEEtran/bare_jrnl.tex
+ texmf-dist/doc/latex/IEEEtran/bare_jrnl_compsoc.tex
+ texmf-dist/doc/latex/IEEEtran/changelog.txt
+ texmf-dist/doc/latex/IEEEtran/font_install_how.txt
+ texmf-dist/doc/latex/IEEEtran/testflow.tex
+ texmf-dist/doc/latex/IEEEtran/testflow_ctl_A4.pdf
+ texmf-dist/doc/latex/IEEEtran/testflow_ctl_LTR.pdf
+ texmf-dist/doc/latex/IEEEtran/testflow_doc.pdf
+ texmf-dist/doc/latex/IEEEtran/tux.eps
+runfiles size=677906
+ texmf-dist/bibtex/bib/IEEEtran/IEEEabrv.bib
+ texmf-dist/bibtex/bib/IEEEtran/IEEEexample.bib
+ texmf-dist/bibtex/bib/IEEEtran/IEEEfull.bib
+ texmf-dist/bibtex/bst/IEEEtran/IEEEtran.bst
+ texmf-dist/bibtex/bst/IEEEtran/IEEEtranN.bst
+ texmf-dist/bibtex/bst/IEEEtran/IEEEtranS.bst
+ texmf-dist/bibtex/bst/IEEEtran/IEEEtranSA.bst
+ texmf-dist/bibtex/bst/IEEEtran/IEEEtranSN.bst
+ texmf-dist/tex/latex/IEEEtran/IEEEtran.cls
+ texmf-dist/tex/latex/IEEEtran/IEEEtrantools.sty
+catalogue-version 1.7a
+catalogue-date 2007-03-09 14:28:14 +0100
+catalogue-ctan /macros/latex/contrib/IEEEtran
+catalogue-license lppl
+
+name MemoirChapStyles
+category Documentation
+revision 2240
+docfiles size=835696
+ texmf-doc/doc/english/MemoirChapStyles/MemoirChapStyles.pdf
+ texmf-doc/doc/english/MemoirChapStyles/MemoirChapStyles.tex
+ texmf-doc/doc/english/MemoirChapStyles/README
+
+name SIstyle
+category Package
+revision 2830
+shortdesc Package to typeset SI units, numbers and angles.
+longdesc This package typesets SI units, numbers and angles according to
+longdesc the ISO requirements. Care is taken with font setup and
+longdesc requirements, and language customisation is available.
+docfiles size=936580
+ texmf-dist/doc/latex/SIstyle/README
+ texmf-dist/doc/latex/SIstyle/SIstyle-2.3.pdf
+ texmf-dist/doc/latex/SIstyle/fig1.eps
+ texmf-dist/doc/latex/SIstyle/fig1.mps
+ texmf-dist/doc/latex/SIstyle/fig2.eps
+ texmf-dist/doc/latex/SIstyle/fig2.mps
+ texmf-dist/doc/latex/SIstyle/graphs_scr.zip
+srcfiles size=74680
+ texmf-dist/source/latex/SIstyle/sistyle.dtx
+ texmf-dist/source/latex/SIstyle/sistyle.ins
+runfiles size=11957
+ texmf-dist/tex/latex/SIstyle/sistyle.sty
+catalogue-version 2.3
+catalogue-date 2006-12-28 00:31:05 +0100
+catalogue-ctan /macros/latex/contrib/SIstyle
+catalogue-license lppl
+
+name SIunits
+category Package
+revision 637
+docfiles size=532911
+ texmf-dist/doc/latex/SIunits/SIunits.pdf
+ texmf-dist/doc/latex/SIunits/readme.txt
+srcfiles size=159453
+ texmf-dist/source/latex/SIunits/SIunits.drv
+ texmf-dist/source/latex/SIunits/SIunits.dtx
+ texmf-dist/source/latex/SIunits/SIunits.ins
+runfiles size=27070
+ texmf-dist/tex/latex/SIunits/SIunits.cfg
+ texmf-dist/tex/latex/SIunits/SIunits.sty
+ texmf-dist/tex/latex/SIunits/binary.sty
+
+name Susy
+category Package
+revision 5503
+shortdesc Macros for supersymmetry-related work.
+docfiles size=281
+ texmf-dist/doc/latex/Susy/README
+runfiles size=1700
+ texmf-dist/tex/latex/Susy/susy.sty
+catalogue-version
+catalogue-date 2006-11-29 14:22:26 +0100
+catalogue-ctan /macros/latex/contrib/susy
+catalogue-license lppl
+
+name Tabbing
+category Package
+revision 638
+docfiles size=179
+ texmf-dist/doc/latex/Tabbing/00readme
+srcfiles size=9039
+ texmf-dist/source/latex/Tabbing/Tabbing.dtx
+ texmf-dist/source/latex/Tabbing/Tabbing.ins
+runfiles size=1902
+ texmf-dist/tex/latex/Tabbing/Tabbing.sty
+
+name Type1fonts
+category Documentation
+revision 19
+docfiles size=877618
+ texmf-doc/doc/english/Type1fonts/README
+ texmf-doc/doc/english/Type1fonts/figuide-examples.tar.gz
+ texmf-doc/doc/english/Type1fonts/figuide-source.tex.gz
+ texmf-doc/doc/english/Type1fonts/fontinstallationguide.pdf
+
+name a0poster
+category Package
+revision 639
+shortdesc Support for designing posters on large paper.
+longdesc Provides fonts in sizes of 12pt up to 107pt and also makes sure
+longdesc that in math formulas the symbols appear in the right size. Can
+longdesc also create a PostScript header file for dvips which ensures
+longdesc that the poster will be printed in the right size. Supported
+longdesc sizes are DIN A0, DIN A1, DIN A2 and DIN A3.
+docfiles size=188951
+ texmf-dist/doc/latex/a0poster/a0.pdf details="Package documentation (German)" language="de"
+ texmf-dist/doc/latex/a0poster/a0.tex
+ texmf-dist/doc/latex/a0poster/a0_eng.pdf details="Package documentation (English)" language="en"
+ texmf-dist/doc/latex/a0poster/a0_eng.tex
+runfiles size=14484
+ texmf-dist/tex/latex/a0poster/a0poster.cls
+ texmf-dist/tex/latex/a0poster/a0size.sty
+catalogue-version 1.22b
+catalogue-date 2006-11-28 22:38:04 +0100
+catalogue-ctan /macros/latex/contrib/a0poster
+catalogue-license lppl
+
+name aastex
+category Package
+revision 640
+shortdesc Macros for Manuscript Preparation for AAS Journals.
+longdesc The bundle provides a document class for preparing papers for
+longdesc American Astronomical Society publications. Authors who wish to
+longdesc submit papers to AAS journals are strongly urged to use this
+longdesc class in preference to any of the alternatives available.
+docfiles size=2257375
+ texmf-dist/doc/latex/aastex/README details="Readme"
+ texmf-dist/doc/latex/aastex/aasclass.tex
+ texmf-dist/doc/latex/aastex/aasguide.pdf
+ texmf-dist/doc/latex/aastex/aasguide.tex
+ texmf-dist/doc/latex/aastex/aassymbols.pdf
+ texmf-dist/doc/latex/aastex/aassymbols.tex
+ texmf-dist/doc/latex/aastex/datafile1.txt
+ texmf-dist/doc/latex/aastex/f1.eps
+ texmf-dist/doc/latex/aastex/f2.eps
+ texmf-dist/doc/latex/aastex/f2_color.eps
+ texmf-dist/doc/latex/aastex/f3.eps
+ texmf-dist/doc/latex/aastex/sample.tex
+ texmf-dist/doc/latex/aastex/table.tex
+ texmf-dist/doc/latex/aastex/video3.mpg
+srcfiles size=405960
+ texmf-dist/source/latex/aastex/aasclass.dtx
+ texmf-dist/source/latex/aastex/aasclass.ins
+runfiles size=107513
+ texmf-dist/tex/latex/aastex/aastex.cls
+ texmf-dist/tex/latex/aastex/aastex.sty
+catalogue-version 5.2
+catalogue-date 2007-01-26 22:11:52 +0100
+catalogue-ctan /macros/latex/contrib/aastex
+catalogue-license lppl
+
+name abbr
+category Package
+revision 613
+shortdesc Simple macros supporting abreviations for Plain and LaTeX.
+longdesc Abbr is a set of some simple macros to support abbreviations in
+longdesc Plain or LaTeX. It allows writing e.g. \<TEX> instead of \TeX,
+longdesc hence frees users from having to escape space after
+longdesc parameterless macros.
+docfiles size=1062
+ texmf-dist/doc/generic/abbr/README
+runfiles size=5742
+ texmf-dist/tex/generic/abbr/abbr.tex
+catalogue-version
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/generic/abbr
+catalogue-license pd
+
+name abc
+category Package
+revision 1848
+shortdesc Support ABC music notation in LaTeX.
+longdesc The abc package lets you include lines of music written in the
+longdesc ABC Plus language. The package will then employ the \write18
+longdesc facility to convert your notation to PostScript (using the
+longdesc established utility abcm2ps) and hence to the format needed for
+longdesc inclusion in your document.
+docfiles size=165921
+ texmf-dist/doc/latex/abc/README details="Readme"
+ texmf-dist/doc/latex/abc/abc.pdf details="Package documentation"
+ texmf-dist/doc/latex/abc/example.tex
+ texmf-dist/doc/latex/abc/poll.abc
+srcfiles size=21919
+ texmf-dist/source/latex/abc/abc.dtx
+ texmf-dist/source/latex/abc/abc.ins
+runfiles size=4582
+ texmf-dist/tex/latex/abc/abc.sty
+catalogue-version 1.0
+catalogue-date 2007-02-23 23:22:37 +0100
+catalogue-ctan /macros/latex/contrib/abc
+catalogue-license lppl
+
+name abstract
+category Package
+revision 641
+shortdesc Control the typesetting of the abstract environment.
+longdesc The abstract package gives you control over the typesetting of
+longdesc the abstract environment, and in particular provides for a one
+longdesc column abstract in a two column paper.
+docfiles size=174408
+ texmf-dist/doc/latex/abstract/README details="Package Readme"
+ texmf-dist/doc/latex/abstract/abstract.pdf details="Package documentation"
+srcfiles size=27543
+ texmf-dist/source/latex/abstract/abstract.dtx
+ texmf-dist/source/latex/abstract/abstract.ins
+runfiles size=4827
+ texmf-dist/tex/latex/abstract/abstract.sty
+catalogue-version 1.1
+catalogue-date 2006-11-28 22:38:04 +0100
+catalogue-ctan /macros/latex/contrib/abstract
+catalogue-license lppl
+
+name abstyles
+category Package
+revision 4150
+docfiles size=287185
+ texmf-dist/doc/bibtex/abstyles/README
+ texmf-dist/doc/bibtex/abstyles/a4c.sty
+ texmf-dist/doc/bibtex/abstyles/a4c.tex
+ texmf-dist/doc/bibtex/abstyles/abstdok.pdf
+ texmf-dist/doc/bibtex/abstyles/abstdok.tex
+ texmf-dist/doc/bibtex/abstyles/apreambl.doc
+ texmf-dist/doc/bibtex/abstyles/btxabst.doc
+ texmf-dist/doc/bibtex/abstyles/docmac.doc
+ texmf-dist/doc/bibtex/abstyles/docmac.tex
+runfiles size=117751
+ texmf-dist/bibtex/bib/abstyles/acompat.bib
+ texmf-dist/bibtex/bib/abstyles/jourabbr.bib
+ texmf-dist/bibtex/bib/abstyles/jourfull.bib
+ texmf-dist/bibtex/bst/abstyles/aabbrv.bst
+ texmf-dist/bibtex/bst/abstyles/aalpha.bst
+ texmf-dist/bibtex/bst/abstyles/anotit.bst
+ texmf-dist/bibtex/bst/abstyles/aplain.bst
+ texmf-dist/bibtex/bst/abstyles/aunsnot.bst
+ texmf-dist/bibtex/bst/abstyles/aunsrt.bst
+ texmf-dist/tex/generic/abstyles/apreambl.tex
+
+name accfonts
+category Package
+revision 642
+shortdesc Utilities to derive new fonts from existing ones.
+longdesc The accfonts package contains two utilities to permit easy
+longdesc manipulation of fonts, in particular the creation of unusual
+longdesc accented characters. Mkt1font works on Type 1 PostScript fonts,
+longdesc and vpl2vpl works on TeX virtual fonts. Both programs read in a
+longdesc font, together with a simple definition file containing lines
+longdesc such as ‘128 z acute’; they then write out a new version of
+longdesc the font with the requested new characters in the numerical
+longdesc slots specified. Great care is taken over the positioning of
+longdesc accents, and over the provision of kerning information for new
+longdesc characters; mkt1font also generates suitable "hints" to enhance
+longdesc quality at small sizes or poor resolutions. The programs are
+longdesc written in Perl.
+docfiles size=111002
+ texmf-dist/doc/latex/accfonts/CHANGES
+ texmf-dist/doc/latex/accfonts/COPYING
+ texmf-dist/doc/latex/accfonts/README details="Package Readme and documentation"
+ texmf-dist/doc/latex/accfonts/mkt1font
+ texmf-dist/doc/latex/accfonts/vpl2vpl
+runfiles size=13059
+ texmf-dist/fonts/enc/dvips/accfonts/dvips.enc
+ texmf-dist/tex/latex/accfonts/CSX.def
+ texmf-dist/tex/latex/accfonts/ISO-Latin1.def
+ texmf-dist/tex/latex/accfonts/ISO-Latin2.def
+ texmf-dist/tex/latex/accfonts/Norman.def
+catalogue-version 0.222
+catalogue-date 2007-06-15 01:21:11 +0200
+catalogue-ctan /fonts/utilities/accfonts
+catalogue-license gpl
+
+name achemso
+category Package
+revision 5237
+shortdesc Support for American Chemical Society journal submissions.
+longdesc Provides a BibTeX style in accordance with the requirements of
+longdesc the journals of the American Chemical Society, along with a
+longdesc supporting LaTeX package. Also provided is a BibTeX style file
+longdesc to be used for bibliography database listings.
+docfiles size=159763
+ texmf-dist/doc/latex/achemso/README details="Package Readme"
+ texmf-dist/doc/latex/achemso/achemso.pdf details="Package documentation"
+srcfiles size=60443
+ texmf-dist/source/latex/achemso/achemso.dtx
+ texmf-dist/source/latex/achemso/achemso.ins
+runfiles size=105859
+ texmf-dist/bibtex/bib/achemso/achemso.bib
+ texmf-dist/bibtex/bst/achemso/achemlnt.bst
+ texmf-dist/bibtex/bst/achemso/achemnat.bst
+ texmf-dist/bibtex/bst/achemso/achemso.bst
+ texmf-dist/bibtex/bst/achemso/achemsol.bst
+ texmf-dist/tex/latex/achemso/achemso.sty
+ texmf-dist/tex/latex/achemso/jawltxdoc.sty
+catalogue-version 2.2d
+catalogue-date 2007-10-16 14:14:16 +0200
+catalogue-ctan /macros/latex/contrib/achemso
+catalogue-license lppl
+
+name acmconf
+category Package
+revision 1487
+shortdesc Class for ACM conference proceedings.
+longdesc This class may be used to typeset articles to be published in
+longdesc the proceedings of ACM (Association for Computing Machinery)
+longdesc conferences and workshops. The layout produced by the acmconf
+longdesc class is based on the ACM’s own specification.
+docfiles size=185591
+ texmf-dist/doc/latex/acmconf/README
+ texmf-dist/doc/latex/acmconf/THIS-IS-VERSION-1.3
+ texmf-dist/doc/latex/acmconf/accept.dvi
+ texmf-dist/doc/latex/acmconf/accept.tex
+ texmf-dist/doc/latex/acmconf/error.dvi
+ texmf-dist/doc/latex/acmconf/error.tex
+ texmf-dist/doc/latex/acmconf/prepare.dvi
+ texmf-dist/doc/latex/acmconf/prepare.tex
+ texmf-dist/doc/latex/acmconf/print.dvi
+ texmf-dist/doc/latex/acmconf/print.tex
+ texmf-dist/doc/latex/acmconf/pubform.dvi
+ texmf-dist/doc/latex/acmconf/pubform.tex
+ texmf-dist/doc/latex/acmconf/publish.dvi
+ texmf-dist/doc/latex/acmconf/publish.tex
+ texmf-dist/doc/latex/acmconf/submit.dvi
+ texmf-dist/doc/latex/acmconf/submit.tex
+srcfiles size=80221
+ texmf-dist/source/latex/acmconf/Makefile
+ texmf-dist/source/latex/acmconf/acmconf.dtx
+ texmf-dist/source/latex/acmconf/acmconf.ins
+ texmf-dist/source/latex/acmconf/body.eps
+runfiles size=18164
+ texmf-dist/bibtex/bib/acmconf/pubform.bib
+ texmf-dist/tex/latex/acmconf/acmconf.cls
+catalogue-version 1.3
+catalogue-date 2007-08-25 13:53:36 +0200
+catalogue-ctan /macros/latex/contrib/acmconf
+catalogue-license lppl
+
+name acmtrans
+category Package
+revision 645
+shortdesc Class and BibTeX style for ACM Transactions.
+longdesc The acmtrans2e class formats articles in the style of ACM
+longdesc transactions. Users who have prepared their document with LaTeX
+longdesc can, with very little effort, produce camera-ready copy for
+longdesc these journals. The accompanying BibTeX style is based on the
+longdesc chicago style.
+docfiles size=219345
+ texmf-dist/doc/latex/acmtrans/acmtr2e.pdf details="Documentation in the form of an ACM paper"
+ texmf-dist/doc/latex/acmtrans/acmtr2e.tex
+runfiles size=85970
+ texmf-dist/bibtex/bib/acmtrans/acmtr.bib
+ texmf-dist/bibtex/bst/acmtrans/acmtrans.bst
+ texmf-dist/tex/latex/acmtrans/acmtrans2e.cls
+catalogue-version
+catalogue-date 2006-11-29 01:00:03 +0100
+catalogue-ctan /biblio/bibtex/contrib/acmtrans
+catalogue-license unknown
+
+name acronym
+category Package
+revision 1733
+shortdesc Expand acronyms at least once.
+longdesc This package ensures that all acronyms used in the text are
+longdesc spelled out in full at least once. It also provides an
+longdesc environment to build a list of acronyms used. The package is
+longdesc compatible with pdf bookmarks.
+docfiles size=161923
+ texmf-dist/doc/latex/acronym/CHANGES
+ texmf-dist/doc/latex/acronym/README details="Package Readme"
+ texmf-dist/doc/latex/acronym/acronym.pdf details="Package documentation"
+ texmf-dist/doc/latex/acronym/acrotest.tex
+srcfiles size=45780
+ texmf-dist/source/latex/acronym/acronym.dtx
+ texmf-dist/source/latex/acronym/acronym.ins
+runfiles size=11199
+ texmf-dist/tex/latex/acronym/acronym.sty
+catalogue-version 1.26
+catalogue-date 2006-11-28 22:38:04 +0100
+catalogue-ctan /macros/latex/contrib/acronym
+catalogue-license lppl
+
+name active-conf
+category Package
+revision 2097
+shortdesc Class for typesetting ACTIVE conference papers.
+longdesc Active-conf is a class for typesetting papers for the Active
+longdesc conference on noise and vibration control. It is initially
+longdesc intended for the 2006 conference in Adelaide, Australia. The
+longdesc class is based on article with more flexible front-matter, and
+longdesc can be customised for conferences in future years with a header
+longdesc file.
+docfiles size=587790
+ texmf-dist/doc/latex/active-conf/README details="Readme"
+ texmf-dist/doc/latex/active-conf/active-conf.pdf details="Class documentation:"
+ texmf-dist/doc/latex/active-conf/active-example-2006.pdf
+ texmf-dist/doc/latex/active-conf/active-example-2006.tex
+ texmf-dist/doc/latex/active-conf/active-example.pdf
+ texmf-dist/doc/latex/active-conf/active-example.tex
+ texmf-dist/doc/latex/active-conf/active-header-2006.tex
+ texmf-dist/doc/latex/active-conf/example.bib
+ texmf-dist/doc/latex/active-conf/header-logo-2006.eps
+ texmf-dist/doc/latex/active-conf/header-logo-2006.pdf
+srcfiles size=50125
+ texmf-dist/source/latex/active-conf/active-conf.dtx
+ texmf-dist/source/latex/active-conf/active-conf.ins
+runfiles size=64295
+ texmf-dist/bibtex/bst/active-conf/active2006.bst
+ texmf-dist/tex/latex/active-conf/active-conf-2006.cls
+ texmf-dist/tex/latex/active-conf/active-conf.cls
+catalogue-version 0.3a
+catalogue-date 2007-02-25 15:08:52 +0100
+catalogue-ctan /macros/latex/contrib/conferences/active-conf
+catalogue-license lppl
+
+name addlines
+category Package
+revision 5178
+shortdesc A user-friendly wrapper around \enlargethispage.
+longdesc This small package provides the command \addlines for adding or
+longdesc removing space in the textblock of the page it's used on. E.g.,
+longdesc adding an extra line of text to the page so that a section fits
+longdesc better on the next page. It will also add space to the facing
+longdesc page in a two-sided document.
+docfiles size=96492
+ texmf-dist/doc/latex/addlines/README details="Readme"
+ texmf-dist/doc/latex/addlines/addlines-example.ltx
+ texmf-dist/doc/latex/addlines/addlines.pdf details="Package documentation"
+srcfiles size=10985
+ texmf-dist/source/latex/addlines/addlines.dtx
+ texmf-dist/source/latex/addlines/addlines.ins
+runfiles size=1812
+ texmf-dist/tex/latex/addlines/addlines.sty
+catalogue-version 0.1
+catalogue-date 2007-10-16 11:01:13 +0200
+catalogue-ctan /macros/latex/contrib/addlines
+catalogue-license lppl
+
+name adrconv
+category Package
+revision 4718
+shortdesc BibTeX styles to implement an address database.
+longdesc Adrconv is a collection of BibTeX style files to turn an
+longdesc address database stored in the .bib format into files suitable
+longdesc for printing as address books or included into letter classes
+longdesc like akletter or scrletter2. Adrconv will sort the data either
+longdesc by name or birthday and create output files in various formats
+longdesc for address books or time planers.
+docfiles size=145857
+ texmf-dist/doc/latex/adrconv/adrconv.tex
+ texmf-dist/doc/latex/adrconv/adrdir.tex
+ texmf-dist/doc/latex/adrconv/adrfax.tex
+ texmf-dist/doc/latex/adrconv/adrguide.pdf details="Package introduction" language="de"
+ texmf-dist/doc/latex/adrconv/adrguide.tex
+ texmf-dist/doc/latex/adrconv/birthday.tex
+ texmf-dist/doc/latex/adrconv/email.tex
+srcfiles size=26680
+ texmf-dist/source/latex/adrconv/adrconv.dtx
+ texmf-dist/source/latex/adrconv/adrconv.ins
+runfiles size=21925
+ texmf-dist/bibtex/bib/adrconv/example.bib
+ texmf-dist/bibtex/bst/adrconv/adrconv.bst
+ texmf-dist/bibtex/bst/adrconv/adrfax.bst
+ texmf-dist/bibtex/bst/adrconv/birthday.bst
+ texmf-dist/bibtex/bst/adrconv/email.bst
+ texmf-dist/tex/latex/adrconv/adrdir.cfg
+ texmf-dist/tex/latex/adrconv/adrplaner.cfg
+ texmf-dist/tex/latex/adrconv/adrsmall.cfg
+catalogue-version 1.2c
+catalogue-date 2006-11-15 08:44:26 +0100
+catalogue-ctan /macros/latex/contrib/adrconv
+catalogue-license lppl
+
+name adrlist
+category Package
+revision 1487
+shortdesc Using address lists in LaTeX.
+longdesc The package provides a read-file command (\ForEachAdress) and a
+longdesc set of commands for unpicking the address data in the file.
+docfiles size=11208
+ texmf-dist/doc/latex/adrlist/adrlist.dvi
+srcfiles size=8380
+ texmf-dist/source/latex/adrlist/README
+ texmf-dist/source/latex/adrlist/adrlist.dtx
+ texmf-dist/source/latex/adrlist/adrlist.ins
+runfiles size=3678
+ texmf-dist/tex/latex/adrlist/adrlist.sty
+catalogue-version
+catalogue-date 2006-12-07 00:53:40 +0100
+catalogue-ctan /macros/latex/contrib/adrlist
+catalogue-license unknown
+
+name ae
+category Package
+revision 5100
+shortdesc Virtual fonts for T1 encoded CMR-fonts.
+longdesc A set of virtual fonts which emulates T1 coded fonts using the
+longdesc standard CM fonts. The package name, AE fonts, supposedly
+longdesc stands for “Almost European”. The main use of the package
+longdesc was to produce PDF files using Adobe Type 1 versions of the CM
+longdesc fonts instead of bitmapped EC fonts. Note that direct
+longdesc substitutes for the bitmapped fonts are now available, via the
+longdesc CM-super, Latin Modern and CM-LGC font sets.
+docfiles size=46620
+ texmf-dist/doc/fonts/ae/COPYING
+ texmf-dist/doc/fonts/ae/MANIFEST
+ texmf-dist/doc/fonts/ae/README
+ texmf-dist/doc/latex/ae/COPYING
+ texmf-dist/doc/latex/ae/MANIFEST
+ texmf-dist/doc/latex/ae/README
+srcfiles size=329755
+ texmf-dist/source/fonts/ae/aefonts.mtx
+ texmf-dist/source/fonts/ae/aefonts.tex
+ texmf-dist/source/fonts/ae/aehax5.mtx
+ texmf-dist/source/fonts/ae/aehaxit.mtx
+ texmf-dist/source/fonts/ae/aehaxrm.mtx
+ texmf-dist/source/fonts/ae/aehaxsc.mtx
+ texmf-dist/source/fonts/ae/aehaxsl.mtx
+ texmf-dist/source/fonts/ae/aehaxss.mtx
+ texmf-dist/source/fonts/ae/aelatin.mtx
+ texmf-dist/source/fonts/ae/aelatint.mtx
+ texmf-dist/source/fonts/ae/aesample.tex
+ texmf-dist/source/fonts/ae/aet1.etx
+ texmf-dist/source/fonts/ae/bxittest.tex
+ texmf-dist/source/fonts/ae/clean
+ texmf-dist/source/fonts/ae/germtest.tex
+ texmf-dist/source/fonts/ae/go
+ texmf-dist/source/fonts/ae/install
+ texmf-dist/source/fonts/ae/makepl
+ texmf-dist/source/fonts/ae/ot1tt.etx
+ texmf-dist/source/fonts/ae/slitest.tex
+ texmf-dist/source/latex/ae/COPYING
+ texmf-dist/source/latex/ae/aefonts.mtx
+ texmf-dist/source/latex/ae/aefonts.tex
+ texmf-dist/source/latex/ae/aehax5.mtx
+ texmf-dist/source/latex/ae/aehaxit.mtx
+ texmf-dist/source/latex/ae/aehaxrm.mtx
+ texmf-dist/source/latex/ae/aehaxsc.mtx
+ texmf-dist/source/latex/ae/aehaxsl.mtx
+ texmf-dist/source/latex/ae/aehaxss.mtx
+ texmf-dist/source/latex/ae/aelatin.mtx
+ texmf-dist/source/latex/ae/aelatint.mtx
+ texmf-dist/source/latex/ae/aesample.tex
+ texmf-dist/source/latex/ae/aet1.etx
+ texmf-dist/source/latex/ae/bxittest.tex
+ texmf-dist/source/latex/ae/clean
+ texmf-dist/source/latex/ae/germtest.tex
+ texmf-dist/source/latex/ae/go
+ texmf-dist/source/latex/ae/install
+ texmf-dist/source/latex/ae/makepl
+ texmf-dist/source/latex/ae/ot1tt.etx
+ texmf-dist/source/latex/ae/slitest.tex
+runfiles size=453679
+ texmf-dist/fonts/tfm/public/ae/aeb10.tfm
+ texmf-dist/fonts/tfm/public/ae/aebx10.tfm
+ texmf-dist/fonts/tfm/public/ae/aebx12.tfm
+ texmf-dist/fonts/tfm/public/ae/aebx5.tfm
+ texmf-dist/fonts/tfm/public/ae/aebx6.tfm
+ texmf-dist/fonts/tfm/public/ae/aebx7.tfm
+ texmf-dist/fonts/tfm/public/ae/aebx8.tfm
+ texmf-dist/fonts/tfm/public/ae/aebx9.tfm
+ texmf-dist/fonts/tfm/public/ae/aebxsl10.tfm
+ texmf-dist/fonts/tfm/public/ae/aebxti10.tfm
+ texmf-dist/fonts/tfm/public/ae/aecsc10.tfm
+ texmf-dist/fonts/tfm/public/ae/aeitt10.tfm
+ texmf-dist/fonts/tfm/public/ae/aer10.tfm
+ texmf-dist/fonts/tfm/public/ae/aer12.tfm
+ texmf-dist/fonts/tfm/public/ae/aer17.tfm
+ texmf-dist/fonts/tfm/public/ae/aer5.tfm
+ texmf-dist/fonts/tfm/public/ae/aer6.tfm
+ texmf-dist/fonts/tfm/public/ae/aer7.tfm
+ texmf-dist/fonts/tfm/public/ae/aer8.tfm
+ texmf-dist/fonts/tfm/public/ae/aer9.tfm
+ texmf-dist/fonts/tfm/public/ae/aesl10.tfm
+ texmf-dist/fonts/tfm/public/ae/aesl12.tfm
+ texmf-dist/fonts/tfm/public/ae/aesl8.tfm
+ texmf-dist/fonts/tfm/public/ae/aesl9.tfm
+ texmf-dist/fonts/tfm/public/ae/aesltt10.tfm
+ texmf-dist/fonts/tfm/public/ae/aess10.tfm
+ texmf-dist/fonts/tfm/public/ae/aess12.tfm
+ texmf-dist/fonts/tfm/public/ae/aess17.tfm
+ texmf-dist/fonts/tfm/public/ae/aess8.tfm
+ texmf-dist/fonts/tfm/public/ae/aess9.tfm
+ texmf-dist/fonts/tfm/public/ae/aessbx10.tfm
+ texmf-dist/fonts/tfm/public/ae/aessdc10.tfm
+ texmf-dist/fonts/tfm/public/ae/aessi10.tfm
+ texmf-dist/fonts/tfm/public/ae/aessi12.tfm
+ texmf-dist/fonts/tfm/public/ae/aessi17.tfm
+ texmf-dist/fonts/tfm/public/ae/aessi8.tfm
+ texmf-dist/fonts/tfm/public/ae/aessi9.tfm
+ texmf-dist/fonts/tfm/public/ae/aetcsc10.tfm
+ texmf-dist/fonts/tfm/public/ae/aeti10.tfm
+ texmf-dist/fonts/tfm/public/ae/aeti12.tfm
+ texmf-dist/fonts/tfm/public/ae/aeti7.tfm
+ texmf-dist/fonts/tfm/public/ae/aeti8.tfm
+ texmf-dist/fonts/tfm/public/ae/aeti9.tfm
+ texmf-dist/fonts/tfm/public/ae/aett10.tfm
+ texmf-dist/fonts/tfm/public/ae/aett12.tfm
+ texmf-dist/fonts/tfm/public/ae/aett8.tfm
+ texmf-dist/fonts/tfm/public/ae/aett9.tfm
+ texmf-dist/fonts/tfm/public/ae/laess8.tfm
+ texmf-dist/fonts/tfm/public/ae/laessb8.tfm
+ texmf-dist/fonts/tfm/public/ae/laessi8.tfm
+ texmf-dist/fonts/vf/public/ae/aeb10.vf
+ texmf-dist/fonts/vf/public/ae/aebx10.vf
+ texmf-dist/fonts/vf/public/ae/aebx12.vf
+ texmf-dist/fonts/vf/public/ae/aebx5.vf
+ texmf-dist/fonts/vf/public/ae/aebx6.vf
+ texmf-dist/fonts/vf/public/ae/aebx7.vf
+ texmf-dist/fonts/vf/public/ae/aebx8.vf
+ texmf-dist/fonts/vf/public/ae/aebx9.vf
+ texmf-dist/fonts/vf/public/ae/aebxsl10.vf
+ texmf-dist/fonts/vf/public/ae/aebxti10.vf
+ texmf-dist/fonts/vf/public/ae/aecsc10.vf
+ texmf-dist/fonts/vf/public/ae/aeitt10.vf
+ texmf-dist/fonts/vf/public/ae/aer10.vf
+ texmf-dist/fonts/vf/public/ae/aer12.vf
+ texmf-dist/fonts/vf/public/ae/aer17.vf
+ texmf-dist/fonts/vf/public/ae/aer5.vf
+ texmf-dist/fonts/vf/public/ae/aer6.vf
+ texmf-dist/fonts/vf/public/ae/aer7.vf
+ texmf-dist/fonts/vf/public/ae/aer8.vf
+ texmf-dist/fonts/vf/public/ae/aer9.vf
+ texmf-dist/fonts/vf/public/ae/aesl10.vf
+ texmf-dist/fonts/vf/public/ae/aesl12.vf
+ texmf-dist/fonts/vf/public/ae/aesl8.vf
+ texmf-dist/fonts/vf/public/ae/aesl9.vf
+ texmf-dist/fonts/vf/public/ae/aesltt10.vf
+ texmf-dist/fonts/vf/public/ae/aess10.vf
+ texmf-dist/fonts/vf/public/ae/aess12.vf
+ texmf-dist/fonts/vf/public/ae/aess17.vf
+ texmf-dist/fonts/vf/public/ae/aess8.vf
+ texmf-dist/fonts/vf/public/ae/aess9.vf
+ texmf-dist/fonts/vf/public/ae/aessbx10.vf
+ texmf-dist/fonts/vf/public/ae/aessdc10.vf
+ texmf-dist/fonts/vf/public/ae/aessi10.vf
+ texmf-dist/fonts/vf/public/ae/aessi12.vf
+ texmf-dist/fonts/vf/public/ae/aessi17.vf
+ texmf-dist/fonts/vf/public/ae/aessi8.vf
+ texmf-dist/fonts/vf/public/ae/aessi9.vf
+ texmf-dist/fonts/vf/public/ae/aetcsc10.vf
+ texmf-dist/fonts/vf/public/ae/aeti10.vf
+ texmf-dist/fonts/vf/public/ae/aeti12.vf
+ texmf-dist/fonts/vf/public/ae/aeti7.vf
+ texmf-dist/fonts/vf/public/ae/aeti8.vf
+ texmf-dist/fonts/vf/public/ae/aeti9.vf
+ texmf-dist/fonts/vf/public/ae/aett10.vf
+ texmf-dist/fonts/vf/public/ae/aett12.vf
+ texmf-dist/fonts/vf/public/ae/aett8.vf
+ texmf-dist/fonts/vf/public/ae/aett9.vf
+ texmf-dist/fonts/vf/public/ae/laess8.vf
+ texmf-dist/fonts/vf/public/ae/laessb8.vf
+ texmf-dist/fonts/vf/public/ae/laessi8.vf
+ texmf-dist/tex/latex/ae/ae.sty
+ texmf-dist/tex/latex/ae/aecompl.sty
+ texmf-dist/tex/latex/ae/omlaer.fd
+ texmf-dist/tex/latex/ae/omsaer.fd
+ texmf-dist/tex/latex/ae/ot1aer.fd
+ texmf-dist/tex/latex/ae/ot1aess.fd
+ texmf-dist/tex/latex/ae/ot1aett.fd
+ texmf-dist/tex/latex/ae/ot1laess.fd
+ texmf-dist/tex/latex/ae/ot1laett.fd
+ texmf-dist/tex/latex/ae/t1aer.fd
+ texmf-dist/tex/latex/ae/t1aess.fd
+ texmf-dist/tex/latex/ae/t1aett.fd
+ texmf-dist/tex/latex/ae/t1laess.fd
+ texmf-dist/tex/latex/ae/t1laett.fd
+catalogue-version 1.4
+catalogue-date 2007-05-29 11:07:58 +0200
+catalogue-ctan /fonts/ae
+catalogue-license lppl
+
+name aeguill
+category Package
+revision 1487
+shortdesc Add several kinds of guillemets to the ae fonts.
+longdesc The package adds several kinds of guillemets (Polish cmr,
+longdesc Cyrillic cmr, lasy and ec) to the ae fonts. It is useful if you
+longdesc are using the ae fonts to produce PDF files, since the
+longdesc additional guillemets exist in Type 1 versions.
+docfiles size=7637
+ texmf-dist/doc/latex/aeguill/README
+ texmf-dist/doc/latex/aeguill/guil-test1.dvi
+ texmf-dist/doc/latex/aeguill/guil-test1.tex
+ texmf-dist/doc/latex/aeguill/guil-test2.dvi
+ texmf-dist/doc/latex/aeguill/guil-test2.tex
+ texmf-dist/doc/latex/aeguill/license.txt
+runfiles size=5629
+ texmf-dist/tex/latex/aeguill/aeguill.sty
+catalogue-version
+catalogue-date 2006-11-29 18:42:01 +0100
+catalogue-ctan /macros/latex/contrib/aeguill
+catalogue-license lppl
+
+name aguplus
+category Package
+revision 2116
+shortdesc Styles for American Geophysical Union.
+longdesc This is an extension to the AGU’s own published styles; this
+longdesc extension provides extra facilities and improved usability, by
+longdesc comparison with the AGU’s offering.
+docfiles size=84109
+ texmf-dist/doc/latex/aguplus/README.aguplus
+ texmf-dist/doc/latex/aguplus/aguplus.tex
+ texmf-dist/doc/latex/aguplus/changes.v16b
+ texmf-dist/doc/latex/aguplus/geophys.tex
+ texmf-dist/doc/latex/aguplus/sample.bib
+ texmf-dist/doc/latex/aguplus/samplus.tex
+runfiles size=162308
+ texmf-dist/bibtex/bst/aguplus/agu.bst
+ texmf-dist/bibtex/bst/aguplus/agufull.bst
+ texmf-dist/tex/latex/aguplus/aguplus.cls
+ texmf-dist/tex/latex/aguplus/aguplus.sty
+catalogue-version 1.6b
+catalogue-date 2006-11-29 18:42:01 +0100
+catalogue-ctan /macros/latex/contrib/aguplus
+catalogue-license lppl
+
+name ai
+category Package
+revision 111
+execute addMap aifonts.map
+docfiles size=8772
+ texmf-dist/doc/fonts/ai/README
+ texmf-dist/doc/fonts/ai/processfonts
+ texmf-dist/doc/fonts/ai/remap
+srcfiles size=91638
+ texmf-dist/source/fonts/ai/aidvips
+ texmf-dist/source/fonts/ai/aipdflatex
+ texmf-dist/source/fonts/ai/aipdftex
+ texmf-dist/source/fonts/ai/vf/cmb10.vf
+ texmf-dist/source/fonts/ai/vf/cmbsy10.vf
+ texmf-dist/source/fonts/ai/vf/cmbsy5.vf
+ texmf-dist/source/fonts/ai/vf/cmbsy7.vf
+ texmf-dist/source/fonts/ai/vf/cmbx10.vf
+ texmf-dist/source/fonts/ai/vf/cmbx12.vf
+ texmf-dist/source/fonts/ai/vf/cmbx5.vf
+ texmf-dist/source/fonts/ai/vf/cmbx6.vf
+ texmf-dist/source/fonts/ai/vf/cmbx7.vf
+ texmf-dist/source/fonts/ai/vf/cmbx8.vf
+ texmf-dist/source/fonts/ai/vf/cmbx9.vf
+ texmf-dist/source/fonts/ai/vf/cmbxsl10.vf
+ texmf-dist/source/fonts/ai/vf/cmbxti10.vf
+ texmf-dist/source/fonts/ai/vf/cmcsc10.vf
+ texmf-dist/source/fonts/ai/vf/cmdunh10.vf
+ texmf-dist/source/fonts/ai/vf/cmex10.vf
+ texmf-dist/source/fonts/ai/vf/cmff10.vf
+ texmf-dist/source/fonts/ai/vf/cmfi10.vf
+ texmf-dist/source/fonts/ai/vf/cmfib8.vf
+ texmf-dist/source/fonts/ai/vf/cminch.vf
+ texmf-dist/source/fonts/ai/vf/cmitt10.vf
+ texmf-dist/source/fonts/ai/vf/cmmi10.vf
+ texmf-dist/source/fonts/ai/vf/cmmi12.vf
+ texmf-dist/source/fonts/ai/vf/cmmi5.vf
+ texmf-dist/source/fonts/ai/vf/cmmi6.vf
+ texmf-dist/source/fonts/ai/vf/cmmi7.vf
+ texmf-dist/source/fonts/ai/vf/cmmi8.vf
+ texmf-dist/source/fonts/ai/vf/cmmi9.vf
+ texmf-dist/source/fonts/ai/vf/cmmib10.vf
+ texmf-dist/source/fonts/ai/vf/cmmib5.vf
+ texmf-dist/source/fonts/ai/vf/cmmib7.vf
+ texmf-dist/source/fonts/ai/vf/cmr10.vf
+ texmf-dist/source/fonts/ai/vf/cmr12.vf
+ texmf-dist/source/fonts/ai/vf/cmr17.vf
+ texmf-dist/source/fonts/ai/vf/cmr5.vf
+ texmf-dist/source/fonts/ai/vf/cmr6.vf
+ texmf-dist/source/fonts/ai/vf/cmr7.vf
+ texmf-dist/source/fonts/ai/vf/cmr8.vf
+ texmf-dist/source/fonts/ai/vf/cmr9.vf
+ texmf-dist/source/fonts/ai/vf/cmsl10.vf
+ texmf-dist/source/fonts/ai/vf/cmsl12.vf
+ texmf-dist/source/fonts/ai/vf/cmsl8.vf
+ texmf-dist/source/fonts/ai/vf/cmsl9.vf
+ texmf-dist/source/fonts/ai/vf/cmsltt10.vf
+ texmf-dist/source/fonts/ai/vf/cmss10.vf
+ texmf-dist/source/fonts/ai/vf/cmss12.vf
+ texmf-dist/source/fonts/ai/vf/cmss17.vf
+ texmf-dist/source/fonts/ai/vf/cmss8.vf
+ texmf-dist/source/fonts/ai/vf/cmss9.vf
+ texmf-dist/source/fonts/ai/vf/cmssbx10.vf
+ texmf-dist/source/fonts/ai/vf/cmssdc10.vf
+ texmf-dist/source/fonts/ai/vf/cmssi10.vf
+ texmf-dist/source/fonts/ai/vf/cmssi12.vf
+ texmf-dist/source/fonts/ai/vf/cmssi17.vf
+ texmf-dist/source/fonts/ai/vf/cmssi8.vf
+ texmf-dist/source/fonts/ai/vf/cmssi9.vf
+ texmf-dist/source/fonts/ai/vf/cmssq8.vf
+ texmf-dist/source/fonts/ai/vf/cmssqi8.vf
+ texmf-dist/source/fonts/ai/vf/cmsy10.vf
+ texmf-dist/source/fonts/ai/vf/cmsy5.vf
+ texmf-dist/source/fonts/ai/vf/cmsy6.vf
+ texmf-dist/source/fonts/ai/vf/cmsy7.vf
+ texmf-dist/source/fonts/ai/vf/cmsy8.vf
+ texmf-dist/source/fonts/ai/vf/cmsy9.vf
+ texmf-dist/source/fonts/ai/vf/cmtcsc10.vf
+ texmf-dist/source/fonts/ai/vf/cmtex10.vf
+ texmf-dist/source/fonts/ai/vf/cmtex8.vf
+ texmf-dist/source/fonts/ai/vf/cmtex9.vf
+ texmf-dist/source/fonts/ai/vf/cmti10.vf
+ texmf-dist/source/fonts/ai/vf/cmti12.vf
+ texmf-dist/source/fonts/ai/vf/cmti7.vf
+ texmf-dist/source/fonts/ai/vf/cmti8.vf
+ texmf-dist/source/fonts/ai/vf/cmti9.vf
+ texmf-dist/source/fonts/ai/vf/cmtt10.vf
+ texmf-dist/source/fonts/ai/vf/cmtt12.vf
+ texmf-dist/source/fonts/ai/vf/cmtt8.vf
+ texmf-dist/source/fonts/ai/vf/cmtt9.vf
+ texmf-dist/source/fonts/ai/vf/cmu10.vf
+ texmf-dist/source/fonts/ai/vf/cmvtt10.vf
+ texmf-dist/source/fonts/ai/vf/euex10.vf
+ texmf-dist/source/fonts/ai/vf/eufb10.vf
+ texmf-dist/source/fonts/ai/vf/eufb5.vf
+ texmf-dist/source/fonts/ai/vf/eufb7.vf
+ texmf-dist/source/fonts/ai/vf/eufm10.vf
+ texmf-dist/source/fonts/ai/vf/eufm5.vf
+ texmf-dist/source/fonts/ai/vf/eufm7.vf
+ texmf-dist/source/fonts/ai/vf/eurb10.vf
+ texmf-dist/source/fonts/ai/vf/eurb5.vf
+ texmf-dist/source/fonts/ai/vf/eurb7.vf
+ texmf-dist/source/fonts/ai/vf/eurm10.vf
+ texmf-dist/source/fonts/ai/vf/eurm5.vf
+ texmf-dist/source/fonts/ai/vf/eurm7.vf
+ texmf-dist/source/fonts/ai/vf/eusb10.vf
+ texmf-dist/source/fonts/ai/vf/eusb5.vf
+ texmf-dist/source/fonts/ai/vf/eusb7.vf
+ texmf-dist/source/fonts/ai/vf/eusm10.vf
+ texmf-dist/source/fonts/ai/vf/eusm5.vf
+ texmf-dist/source/fonts/ai/vf/eusm7.vf
+ texmf-dist/source/fonts/ai/vf/lasy10.vf
+ texmf-dist/source/fonts/ai/vf/lasy5.vf
+ texmf-dist/source/fonts/ai/vf/lasy6.vf
+ texmf-dist/source/fonts/ai/vf/lasy7.vf
+ texmf-dist/source/fonts/ai/vf/lasy8.vf
+ texmf-dist/source/fonts/ai/vf/lasy9.vf
+ texmf-dist/source/fonts/ai/vf/lasyb10.vf
+ texmf-dist/source/fonts/ai/vf/lcircle10.vf
+ texmf-dist/source/fonts/ai/vf/lcirclew10.vf
+ texmf-dist/source/fonts/ai/vf/lcmss8.vf
+ texmf-dist/source/fonts/ai/vf/lcmssb8.vf
+ texmf-dist/source/fonts/ai/vf/lcmssi8.vf
+ texmf-dist/source/fonts/ai/vf/line10.vf
+ texmf-dist/source/fonts/ai/vf/linew10.vf
+ texmf-dist/source/fonts/ai/vf/logo10.vf
+ texmf-dist/source/fonts/ai/vf/logo8.vf
+ texmf-dist/source/fonts/ai/vf/logo9.vf
+ texmf-dist/source/fonts/ai/vf/logobf10.vf
+ texmf-dist/source/fonts/ai/vf/logosl10.vf
+ texmf-dist/source/fonts/ai/vf/msam10.vf
+ texmf-dist/source/fonts/ai/vf/msam5.vf
+ texmf-dist/source/fonts/ai/vf/msam7.vf
+ texmf-dist/source/fonts/ai/vf/msbm10.vf
+ texmf-dist/source/fonts/ai/vf/msbm5.vf
+ texmf-dist/source/fonts/ai/vf/msbm7.vf
+ texmf-dist/source/fonts/ai/vf/wncyb10.vf
+ texmf-dist/source/fonts/ai/vf/wncyi10.vf
+ texmf-dist/source/fonts/ai/vf/wncyr10.vf
+ texmf-dist/source/fonts/ai/vf/wncysc10.vf
+ texmf-dist/source/fonts/ai/vf/wncyss10.vf
+runfiles size=221008
+ texmf-dist/dvips/ai/aifonts.map.nodownload
+ texmf-dist/dvips/ai/config.ai
+ texmf-dist/dvips/ai/config.aiz
+ texmf-dist/fonts/enc/dvips/ai/aicmex.enc
+ texmf-dist/fonts/enc/dvips/ai/aicmitext.enc
+ texmf-dist/fonts/enc/dvips/ai/aicmittext.enc
+ texmf-dist/fonts/enc/dvips/ai/aicmmi.enc
+ texmf-dist/fonts/enc/dvips/ai/aicmsy.enc
+ texmf-dist/fonts/enc/dvips/ai/aicmtex.enc
+ texmf-dist/fonts/enc/dvips/ai/aicmtext.enc
+ texmf-dist/fonts/enc/dvips/ai/aicmtextf.enc
+ texmf-dist/fonts/enc/dvips/ai/aicmttext.enc
+ texmf-dist/fonts/enc/dvips/ai/aicy.enc
+ texmf-dist/fonts/enc/dvips/ai/aieuex.enc
+ texmf-dist/fonts/enc/dvips/ai/aieufm.enc
+ texmf-dist/fonts/enc/dvips/ai/aieurm.enc
+ texmf-dist/fonts/enc/dvips/ai/aieusm.enc
+ texmf-dist/fonts/enc/dvips/ai/ailasy.enc
+ texmf-dist/fonts/enc/dvips/ai/ailcircle.enc
+ texmf-dist/fonts/enc/dvips/ai/ailine.enc
+ texmf-dist/fonts/enc/dvips/ai/aimsam.enc
+ texmf-dist/fonts/enc/dvips/ai/aimsbm.enc
+ texmf-dist/fonts/map/dvips/ai/aifonts.map
+ texmf-dist/fonts/tfm/public/ai/aicmb10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbsy10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbsy5.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbsy7.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbx10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbx12.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbx5.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbx6.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbx7.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbx8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbx9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbxsl10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmbxti10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmcsc10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmdunh10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmex10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmff10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmfi10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmfib8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicminch.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmitt10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmi10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmi12.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmi5.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmi6.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmi7.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmi8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmi9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmib10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmib5.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmmib7.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmr10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmr12.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmr17.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmr5.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmr6.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmr7.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmr8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmr9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsl10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsl12.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsl8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsl9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsltt10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmss10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmss12.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmss17.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmss8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmss9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmssbx10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmssdc10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmssi10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmssi12.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmssi17.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmssi8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmssi9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmssq8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmssqi8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsy10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsy5.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsy6.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsy7.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsy8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmsy9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmtex10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmtex8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmtex9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmti10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmti12.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmti7.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmti8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmti9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmtt10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmtt12.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmtt8.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmtt9.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmu10.tfm
+ texmf-dist/fonts/tfm/public/ai/aicmvtt10.tfm
+ texmf-dist/fonts/tfm/public/ai/aieuex10.tfm
+ texmf-dist/fonts/tfm/public/ai/aieufb10.tfm
+ texmf-dist/fonts/tfm/public/ai/aieufb5.tfm
+ texmf-dist/fonts/tfm/public/ai/aieufb7.tfm
+ texmf-dist/fonts/tfm/public/ai/aieufm10.tfm
+ texmf-dist/fonts/tfm/public/ai/aieufm5.tfm
+ texmf-dist/fonts/tfm/public/ai/aieufm7.tfm
+ texmf-dist/fonts/tfm/public/ai/aieurb10.tfm
+ texmf-dist/fonts/tfm/public/ai/aieurb5.tfm
+ texmf-dist/fonts/tfm/public/ai/aieurb7.tfm
+ texmf-dist/fonts/tfm/public/ai/aieurm10.tfm
+ texmf-dist/fonts/tfm/public/ai/aieurm5.tfm
+ texmf-dist/fonts/tfm/public/ai/aieurm7.tfm
+ texmf-dist/fonts/tfm/public/ai/aieusb10.tfm
+ texmf-dist/fonts/tfm/public/ai/aieusb5.tfm
+ texmf-dist/fonts/tfm/public/ai/aieusb7.tfm
+ texmf-dist/fonts/tfm/public/ai/aieusm10.tfm
+ texmf-dist/fonts/tfm/public/ai/aieusm5.tfm
+ texmf-dist/fonts/tfm/public/ai/aieusm7.tfm
+ texmf-dist/fonts/tfm/public/ai/ailasy10.tfm
+ texmf-dist/fonts/tfm/public/ai/ailasy5.tfm
+ texmf-dist/fonts/tfm/public/ai/ailasy6.tfm
+ texmf-dist/fonts/tfm/public/ai/ailasy7.tfm
+ texmf-dist/fonts/tfm/public/ai/ailasy8.tfm
+ texmf-dist/fonts/tfm/public/ai/ailasy9.tfm
+ texmf-dist/fonts/tfm/public/ai/ailasyb10.tfm
+ texmf-dist/fonts/tfm/public/ai/ailcircle10.tfm
+ texmf-dist/fonts/tfm/public/ai/ailcirclew10.tfm
+ texmf-dist/fonts/tfm/public/ai/ailcmss8.tfm
+ texmf-dist/fonts/tfm/public/ai/ailcmssb8.tfm
+ texmf-dist/fonts/tfm/public/ai/ailcmssi8.tfm
+ texmf-dist/fonts/tfm/public/ai/ailine10.tfm
+ texmf-dist/fonts/tfm/public/ai/ailinew10.tfm
+ texmf-dist/fonts/tfm/public/ai/ailogo10.tfm
+ texmf-dist/fonts/tfm/public/ai/ailogo8.tfm
+ texmf-dist/fonts/tfm/public/ai/ailogo9.tfm
+ texmf-dist/fonts/tfm/public/ai/ailogobf10.tfm
+ texmf-dist/fonts/tfm/public/ai/ailogosl10.tfm
+ texmf-dist/fonts/tfm/public/ai/aimsam10.tfm
+ texmf-dist/fonts/tfm/public/ai/aimsam5.tfm
+ texmf-dist/fonts/tfm/public/ai/aimsam7.tfm
+ texmf-dist/fonts/tfm/public/ai/aimsbm10.tfm
+ texmf-dist/fonts/tfm/public/ai/aimsbm5.tfm
+ texmf-dist/fonts/tfm/public/ai/aimsbm7.tfm
+ texmf-dist/fonts/tfm/public/ai/aiwncyb10.tfm
+ texmf-dist/fonts/tfm/public/ai/aiwncyi10.tfm
+ texmf-dist/fonts/tfm/public/ai/aiwncyr10.tfm
+ texmf-dist/fonts/tfm/public/ai/aiwncysc10.tfm
+ texmf-dist/fonts/tfm/public/ai/aiwncyss10.tfm
+
+name aiaa
+category Package
+revision 652
+shortdesc Typeset AIAA conference papers.
+longdesc A bundle of LaTeX/BibTeX files and sample documents to aid
+longdesc those producing papers and journal articles according to the
+longdesc guidelines of the American Institute of Aeronautics and
+longdesc Astronautics (AIAA).
+docfiles size=1958759
+ texmf-dist/doc/latex/aiaa/README details="Package README"
+ texmf-dist/doc/latex/aiaa/aiaa.pdf details="Package documentation"
+ texmf-dist/doc/latex/aiaa/author_guide.pdf details="Author guide"
+ texmf-dist/doc/latex/aiaa/author_guide.tex
+ texmf-dist/doc/latex/aiaa/figure_magnet.eps
+ texmf-dist/doc/latex/aiaa/figure_magnet.pdf
+ texmf-dist/doc/latex/aiaa/pre2004/CHANGES
+ texmf-dist/doc/latex/aiaa/pre2004/MANIFEST
+ texmf-dist/doc/latex/aiaa/pre2004/README details="Package README"
+ texmf-dist/doc/latex/aiaa/pre2004/aiaa.dtx
+ texmf-dist/doc/latex/aiaa/pre2004/aiaa.ins
+ texmf-dist/doc/latex/aiaa/pre2004/aiaa.pdf details="Package documentation"
+ texmf-dist/doc/latex/aiaa/pre2004/aiaalgo.eps
+ texmf-dist/doc/latex/aiaa/pre2004/demos/paper/smpaiaa.ps
+ texmf-dist/doc/latex/aiaa/pre2004/demos/paper/smpaiaa.ps.gz
+ texmf-dist/doc/latex/aiaa/pre2004/demos/paper/smpaiaa.tex
+ texmf-dist/doc/latex/aiaa/pre2004/demos/paper/smpbtx.bib
+ texmf-dist/doc/latex/aiaa/pre2004/demos/paper/smpfig.eps
+ texmf-dist/doc/latex/aiaa/pre2004/demos/refs/tstbtx.bib
+ texmf-dist/doc/latex/aiaa/pre2004/demos/refs/tstref.tex
+ texmf-dist/doc/latex/aiaa/pre2004/demos/subfigs/smpfig.eps
+ texmf-dist/doc/latex/aiaa/pre2004/demos/subfigs/smpsubf.tex
+ texmf-dist/doc/latex/aiaa/pre2004/demos/talk/smpfig.eps
+ texmf-dist/doc/latex/aiaa/pre2004/demos/talk/smptalk.ps
+ texmf-dist/doc/latex/aiaa/pre2004/demos/talk/smptalk.ps.gz
+ texmf-dist/doc/latex/aiaa/pre2004/demos/talk/smptalk.sty
+ texmf-dist/doc/latex/aiaa/pre2004/demos/talk/smptalk.tex
+ texmf-dist/doc/latex/aiaa/template_advanced.pdf
+ texmf-dist/doc/latex/aiaa/template_advanced.tex
+ texmf-dist/doc/latex/aiaa/template_basic.pdf
+ texmf-dist/doc/latex/aiaa/template_basic.tex
+srcfiles size=61756
+ texmf-dist/source/latex/aiaa/aiaa.dtx
+ texmf-dist/source/latex/aiaa/aiaa.ins
+runfiles size=40260
+ texmf-dist/bibtex/bib/aiaa/bibtex_database.bib
+ texmf-dist/bibtex/bst/aiaa/aiaa.bst
+ texmf-dist/tex/latex/aiaa/aiaa-tc.cls
+catalogue-version 3.6
+catalogue-date 2006-09-12 13:40:13 +0200
+catalogue-ctan /macros/latex/contrib/aiaa
+catalogue-license lppl
+
+name akletter
+category Package
+revision 1487
+shortdesc Comprehensive letter support.
+longdesc An advanced letter document class which extends LaTeX's usual
+longdesc letter class, providing support for building your own
+longdesc letterhead and marking fold points for window envelopes.
+longdesc Options supported by the package include: letterpaper for US
+longdesc letter; a4offset for a modified A4 layout suitable for platic
+longdesc binders that cover a part of the left margin. The class’s
+longdesc handling of dates has inspired an extended version of date-
+longdesc handling in the isodate package. The class supersedes an
+longdesc earlier class called myletter.
+docfiles size=282064
+ texmf-dist/doc/latex/akletter/akletter.dvi
+ texmf-dist/doc/latex/akletter/akletter.tex
+ texmf-dist/doc/latex/akletter/letterdoc.pdf details="Package documentation (German)" language="de"
+ texmf-dist/doc/latex/akletter/letterdoc.tex
+ texmf-dist/doc/latex/akletter/lettereng.pdf details="Package documentation (English)" language="en"
+ texmf-dist/doc/latex/akletter/lettereng.tex
+srcfiles size=7020
+ texmf-dist/source/latex/akletter/XtraStuf.mac/akfax.cfg
+ texmf-dist/source/latex/akletter/XtraStuf.mac/akletter.cfg
+ texmf-dist/source/latex/akletter/XtraStuf.mac/akletter.cls
+ texmf-dist/source/latex/akletter/XtraStuf.mac/akletter.tex
+ texmf-dist/source/latex/akletter/XtraStuf.mac/akletter.upl
+ texmf-dist/source/latex/akletter/XtraStuf.mac/akletter.xml
+ texmf-dist/source/latex/akletter/XtraStuf.mac/letterdoc.tex
+ texmf-dist/source/latex/akletter/XtraStuf.mac/lettereng.tex
+ texmf-dist/source/latex/akletter/XtraStuf.mac/myletter.cls
+ texmf-dist/source/latex/akletter/akletter.upl
+runfiles size=34563
+ texmf-dist/tex/latex/akletter/akfax.cfg
+ texmf-dist/tex/latex/akletter/akletter.cfg
+ texmf-dist/tex/latex/akletter/akletter.cls
+ texmf-dist/tex/latex/akletter/myletter.cls
+catalogue-version 1.5i
+catalogue-date 2006-12-08 14:34:19 +0100
+catalogue-ctan /macros/latex/contrib/akletter
+catalogue-license lppl
+
+name alatex
+category Package
+revision 606
+shortdesc Abstract LaTeX.
+longdesc ALaTeX provides the user with all the functionality of LaTeX
+longdesc but with one small change: a general, legal way to override
+longdesc standard LaTeX behavior without altering source files. ALaTeX
+longdesc can interpret official LaTeX markup in an abstract way.
+docfiles size=835
+ texmf-dist/doc/alatex/base/alatex.tex
+srcfiles size=67158
+ texmf-dist/source/alatex/base/0areadme.txt
+ texmf-dist/source/alatex/base/COPYING
+ texmf-dist/source/alatex/base/Makefile
+ texmf-dist/source/alatex/base/README
+ texmf-dist/source/alatex/base/VERSION-1.0
+ texmf-dist/source/alatex/base/abugs.txt
+ texmf-dist/source/alatex/base/ainstall.txt
+ texmf-dist/source/alatex/base/alatex.dtx
+ texmf-dist/source/alatex/base/alatex.ltx
+ texmf-dist/source/alatex/base/amanifst.txt
+ texmf-dist/source/alatex/base/aunpack.ins
+ texmf-dist/source/alatex/base/aunpcked.txt
+ texmf-dist/source/alatex/base/testdist.dtx
+runfiles size=2726
+ texmf-dist/tex/alatex/base/metaclas.cfg
+catalogue-version 1.0
+catalogue-date 2006-12-17 11:41:28 +0100
+catalogue-ctan /macros/alatex/alatex-1.0
+catalogue-license gpl
+
+name albertus
+category Package
+revision 90
+runfiles size=75308
+ texmf-dist/fonts/tfm/cg/albertus/ale10u.tfm
+ texmf-dist/fonts/tfm/cg/albertus/ale6j.tfm
+ texmf-dist/fonts/tfm/cg/albertus/ale7j.tfm
+ texmf-dist/fonts/tfm/cg/albertus/ale8u.tfm
+ texmf-dist/fonts/tfm/cg/albertus/alr10u.tfm
+ texmf-dist/fonts/tfm/cg/albertus/alr6j.tfm
+ texmf-dist/fonts/tfm/cg/albertus/alr7j.tfm
+ texmf-dist/fonts/tfm/cg/albertus/alr8u.tfm
+ texmf-dist/fonts/tfm/cg/albertus/cal8tx.tfm
+ texmf-dist/fonts/tfm/cg/albertus/calm.tfm
+ texmf-dist/fonts/tfm/cg/albertus/calm8t.tfm
+ texmf-dist/fonts/tfm/cg/albertus/calx.tfm
+ texmf-dist/fonts/vf/cg/albertus/cal8tx.vf
+ texmf-dist/fonts/vf/cg/albertus/calm.vf
+ texmf-dist/fonts/vf/cg/albertus/calm8t.vf
+ texmf-dist/fonts/vf/cg/albertus/calx.vf
+
+name aleph
+category Package
+revision 77
+shortdesc Extended TeX.
+longdesc An development of omega, using most of the extensions of TeX
+longdesc itself developed for e-TeX.
+docfiles size=1995
+ texmf-dist/doc/aleph/base/News
+ texmf-dist/doc/aleph/base/readme.txt
+catalogue-version RC2
+catalogue-date 2007-01-26 20:48:23 +0100
+catalogue-ctan /systems/aleph
+catalogue-license unknown
+
+name alg
+category Package
+revision 654
+shortdesc LaTeX environments for typesetting algorithms.
+longdesc Defines two environments for typesetting algorithms in LaTeX2e.
+longdesc The algtab environment is used to typeset an algorithm with
+longdesc automatically numbered lines. The algorithm environment can be
+longdesc used to encapsulate the algtab environment algorithm in a
+longdesc floating body together with a header, a caption, etc.
+longdesc \listofalgorithms is defined.
+docfiles size=1445
+ texmf-dist/doc/latex/alg/readme.txt
+srcfiles size=19666
+ texmf-dist/source/latex/alg/alg.dtx
+ texmf-dist/source/latex/alg/alg.ins
+runfiles size=7447
+ texmf-dist/tex/latex/alg/alg.sty
+catalogue-version 2001-03-13
+catalogue-date 2006-12-17 11:41:28 +0100
+catalogue-ctan /macros/latex/contrib/alg
+catalogue-license lppl
+
+name algorithm2e
+category Package
+revision 655
+docfiles size=377021
+ texmf-dist/doc/latex/algorithm2e/README
+ texmf-dist/doc/latex/algorithm2e/algorithm2e.pdf
+ texmf-dist/doc/latex/algorithm2e/algorithm2e.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_ex01.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_ex02.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_ex03.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_ex04.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_ex05.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_ex06.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_ex07.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_exfor.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_exrepeat.tex
+ texmf-dist/doc/latex/algorithm2e/algorithm2e_exswitch.tex
+runfiles size=90314
+ texmf-dist/tex/latex/algorithm2e/algorithm2e.sty
+
+name algorithmicx
+category Package
+revision 2311
+shortdesc The algorithmic style you always wanted.
+longdesc Algorithmicx provides a very flexible, yet easy to use way for
+longdesc inserting good looking pseudocode or source code in your
+longdesc papers. It has built in support for Pseudocode, Pascal, C, and
+longdesc powerful means to create definitions for any programming
+longdesc language. You can easily adapt a Pseudocode style to your
+longdesc native language.
+docfiles size=243420
+ texmf-dist/doc/latex/algorithmicx/README details="Package README"
+ texmf-dist/doc/latex/algorithmicx/algorithmicx.pdf details="Package documentation"
+ texmf-dist/doc/latex/algorithmicx/algorithmicx.tex
+runfiles size=38021
+ texmf-dist/tex/latex/algorithmicx/algc.sty
+ texmf-dist/tex/latex/algorithmicx/algcompatible.sty
+ texmf-dist/tex/latex/algorithmicx/algmatlab.sty
+ texmf-dist/tex/latex/algorithmicx/algorithmicx.sty
+ texmf-dist/tex/latex/algorithmicx/algpascal.sty
+ texmf-dist/tex/latex/algorithmicx/algpseudocode.sty
+catalogue-version
+catalogue-date 2006-10-12 12:11:58 +0200
+catalogue-ctan /macros/latex/contrib/algorithmicx
+catalogue-license lppl
+
+name algorithms
+category Package
+revision 1658
+shortdesc A suite of tools for typesetting algorithms in pseudo-code.
+longdesc Consists of two environments: algorithm and algorithmic. The
+longdesc algorithm package defines a floating algorithm environment
+longdesc designed to work with the algorithmic style. Within an
+longdesc algorithmic environment a number of commands for typesetting
+longdesc popular algorithmic constructs are available.
+docfiles size=450866
+ texmf-dist/doc/latex/algorithms/COPYING
+ texmf-dist/doc/latex/algorithms/README
+ texmf-dist/doc/latex/algorithms/THANKS
+ texmf-dist/doc/latex/algorithms/algorithms.pdf details="Package documentation" language="en"
+ texmf-dist/doc/latex/algorithms/algorithms.tex
+runfiles size=10375
+ texmf-dist/tex/latex/algorithms/algorithm.sty
+ texmf-dist/tex/latex/algorithms/algorithmic.sty
+catalogue-version
+catalogue-date 2006-09-15 10:30:37 +0200
+catalogue-ctan /macros/latex/contrib/algorithms
+catalogue-license lgpl
+
+name allrunes
+category Package
+revision 658
+shortdesc Fonts and LaTeX package for almost all runes.
+longdesc This large collection of fonts (in Adobe Type 1 format), with
+longdesc the LaTeX package gives access to almost all runes ever used in
+longdesc Europe. The bundle covers not only the main forms but also a
+longdesc lot of varieties.
+execute addMixedMap allrunes.map
+docfiles size=1048888
+ texmf-dist/doc/fonts/allrunes/README details="Package Readme"
+ texmf-dist/doc/fonts/allrunes/allrunes.pdf details="Package documentation"
+ texmf-dist/doc/fonts/allrunes/allrunes.ps
+ texmf-dist/doc/fonts/allrunes/ar_demo.pdf
+ texmf-dist/doc/fonts/allrunes/ar_demo.tex
+srcfiles size=386162
+ texmf-dist/source/fonts/allrunes/allrunes.dtx
+ texmf-dist/source/fonts/allrunes/allrunes.ins
+runfiles size=10861194
+ texmf-dist/fonts/map/dvips/allrunes/allrunes.map
+ texmf-dist/fonts/source/public/allrunes/frua.mf
+ texmf-dist/fonts/source/public/allrunes/fruabm.mf
+ texmf-dist/fonts/source/public/allrunes/fruabn.mf
+ texmf-dist/fonts/source/public/allrunes/fruabq.mf
+ texmf-dist/fonts/source/public/allrunes/fruabr.mf
+ texmf-dist/fonts/source/public/allrunes/fruabs.mf
+ texmf-dist/fonts/source/public/allrunes/fruabt.mf
+ texmf-dist/fonts/source/public/allrunes/fruacm.mf
+ texmf-dist/fonts/source/public/allrunes/fruacn.mf
+ texmf-dist/fonts/source/public/allrunes/fruacq.mf
+ texmf-dist/fonts/source/public/allrunes/fruacr.mf
+ texmf-dist/fonts/source/public/allrunes/fruacs.mf
+ texmf-dist/fonts/source/public/allrunes/fruact.mf
+ texmf-dist/fonts/source/public/allrunes/fruakm.mf
+ texmf-dist/fonts/source/public/allrunes/fruakn.mf
+ texmf-dist/fonts/source/public/allrunes/fruakq.mf
+ texmf-dist/fonts/source/public/allrunes/fruakr.mf
+ texmf-dist/fonts/source/public/allrunes/fruaks.mf
+ texmf-dist/fonts/source/public/allrunes/fruakt.mf
+ texmf-dist/fonts/source/public/allrunes/frualm.mf
+ texmf-dist/fonts/source/public/allrunes/frualn.mf
+ texmf-dist/fonts/source/public/allrunes/frualq.mf
+ texmf-dist/fonts/source/public/allrunes/frualr.mf
+ texmf-dist/fonts/source/public/allrunes/fruals.mf
+ texmf-dist/fonts/source/public/allrunes/frualt.mf
+ texmf-dist/fonts/source/public/allrunes/fruamm.mf
+ texmf-dist/fonts/source/public/allrunes/fruamn.mf
+ texmf-dist/fonts/source/public/allrunes/fruamq.mf
+ texmf-dist/fonts/source/public/allrunes/fruamr.mf
+ texmf-dist/fonts/source/public/allrunes/fruams.mf
+ texmf-dist/fonts/source/public/allrunes/fruamt.mf
+ texmf-dist/fonts/source/public/allrunes/fruanm.mf
+ texmf-dist/fonts/source/public/allrunes/fruann.mf
+ texmf-dist/fonts/source/public/allrunes/fruanq.mf
+ texmf-dist/fonts/source/public/allrunes/fruanr.mf
+ texmf-dist/fonts/source/public/allrunes/fruans.mf
+ texmf-dist/fonts/source/public/allrunes/fruant.mf
+ texmf-dist/fonts/source/public/allrunes/frubase.mf
+ texmf-dist/fonts/source/public/allrunes/fruc.mf
+ texmf-dist/fonts/source/public/allrunes/frucbm.mf
+ texmf-dist/fonts/source/public/allrunes/frucbn.mf
+ texmf-dist/fonts/source/public/allrunes/frucbq.mf
+ texmf-dist/fonts/source/public/allrunes/frucbr.mf
+ texmf-dist/fonts/source/public/allrunes/frucbs.mf
+ texmf-dist/fonts/source/public/allrunes/frucbt.mf
+ texmf-dist/fonts/source/public/allrunes/fruccm.mf
+ texmf-dist/fonts/source/public/allrunes/fruccn.mf
+ texmf-dist/fonts/source/public/allrunes/fruccq.mf
+ texmf-dist/fonts/source/public/allrunes/fruccr.mf
+ texmf-dist/fonts/source/public/allrunes/fruccs.mf
+ texmf-dist/fonts/source/public/allrunes/frucct.mf
+ texmf-dist/fonts/source/public/allrunes/fruckm.mf
+ texmf-dist/fonts/source/public/allrunes/fruckn.mf
+ texmf-dist/fonts/source/public/allrunes/fruckq.mf
+ texmf-dist/fonts/source/public/allrunes/fruckr.mf
+ texmf-dist/fonts/source/public/allrunes/frucks.mf
+ texmf-dist/fonts/source/public/allrunes/fruckt.mf
+ texmf-dist/fonts/source/public/allrunes/fruclm.mf
+ texmf-dist/fonts/source/public/allrunes/frucln.mf
+ texmf-dist/fonts/source/public/allrunes/fruclq.mf
+ texmf-dist/fonts/source/public/allrunes/fruclr.mf
+ texmf-dist/fonts/source/public/allrunes/frucls.mf
+ texmf-dist/fonts/source/public/allrunes/fruclt.mf
+ texmf-dist/fonts/source/public/allrunes/frucmm.mf
+ texmf-dist/fonts/source/public/allrunes/frucmn.mf
+ texmf-dist/fonts/source/public/allrunes/frucmq.mf
+ texmf-dist/fonts/source/public/allrunes/frucmr.mf
+ texmf-dist/fonts/source/public/allrunes/frucms.mf
+ texmf-dist/fonts/source/public/allrunes/frucmt.mf
+ texmf-dist/fonts/source/public/allrunes/frucnm.mf
+ texmf-dist/fonts/source/public/allrunes/frucnn.mf
+ texmf-dist/fonts/source/public/allrunes/frucnq.mf
+ texmf-dist/fonts/source/public/allrunes/frucnr.mf
+ texmf-dist/fonts/source/public/allrunes/frucns.mf
+ texmf-dist/fonts/source/public/allrunes/frucnt.mf
+ texmf-dist/fonts/source/public/allrunes/frul.mf
+ texmf-dist/fonts/source/public/allrunes/frulbm.mf
+ texmf-dist/fonts/source/public/allrunes/frulbn.mf
+ texmf-dist/fonts/source/public/allrunes/frulbq.mf
+ texmf-dist/fonts/source/public/allrunes/frulbr.mf
+ texmf-dist/fonts/source/public/allrunes/frulbs.mf
+ texmf-dist/fonts/source/public/allrunes/frulbt.mf
+ texmf-dist/fonts/source/public/allrunes/frulcm.mf
+ texmf-dist/fonts/source/public/allrunes/frulcn.mf
+ texmf-dist/fonts/source/public/allrunes/frulcq.mf
+ texmf-dist/fonts/source/public/allrunes/frulcr.mf
+ texmf-dist/fonts/source/public/allrunes/frulcs.mf
+ texmf-dist/fonts/source/public/allrunes/frulct.mf
+ texmf-dist/fonts/source/public/allrunes/frulkm.mf
+ texmf-dist/fonts/source/public/allrunes/frulkn.mf
+ texmf-dist/fonts/source/public/allrunes/frulkq.mf
+ texmf-dist/fonts/source/public/allrunes/frulkr.mf
+ texmf-dist/fonts/source/public/allrunes/frulks.mf
+ texmf-dist/fonts/source/public/allrunes/frulkt.mf
+ texmf-dist/fonts/source/public/allrunes/frullm.mf
+ texmf-dist/fonts/source/public/allrunes/frulln.mf
+ texmf-dist/fonts/source/public/allrunes/frullq.mf
+ texmf-dist/fonts/source/public/allrunes/frullr.mf
+ texmf-dist/fonts/source/public/allrunes/frulls.mf
+ texmf-dist/fonts/source/public/allrunes/frullt.mf
+ texmf-dist/fonts/source/public/allrunes/frulmm.mf
+ texmf-dist/fonts/source/public/allrunes/frulmn.mf
+ texmf-dist/fonts/source/public/allrunes/frulmq.mf
+ texmf-dist/fonts/source/public/allrunes/frulmr.mf
+ texmf-dist/fonts/source/public/allrunes/frulms.mf
+ texmf-dist/fonts/source/public/allrunes/frulmt.mf
+ texmf-dist/fonts/source/public/allrunes/frulnm.mf
+ texmf-dist/fonts/source/public/allrunes/frulnn.mf
+ texmf-dist/fonts/source/public/allrunes/frulnq.mf
+ texmf-dist/fonts/source/public/allrunes/frulnr.mf
+ texmf-dist/fonts/source/public/allrunes/frulns.mf
+ texmf-dist/fonts/source/public/allrunes/frulnt.mf
+ texmf-dist/fonts/source/public/allrunes/frum.mf
+ texmf-dist/fonts/source/public/allrunes/frumbm.mf
+ texmf-dist/fonts/source/public/allrunes/frumbn.mf
+ texmf-dist/fonts/source/public/allrunes/frumbq.mf
+ texmf-dist/fonts/source/public/allrunes/frumbr.mf
+ texmf-dist/fonts/source/public/allrunes/frumbs.mf
+ texmf-dist/fonts/source/public/allrunes/frumbt.mf
+ texmf-dist/fonts/source/public/allrunes/frumcm.mf
+ texmf-dist/fonts/source/public/allrunes/frumcn.mf
+ texmf-dist/fonts/source/public/allrunes/frumcq.mf
+ texmf-dist/fonts/source/public/allrunes/frumcr.mf
+ texmf-dist/fonts/source/public/allrunes/frumcs.mf
+ texmf-dist/fonts/source/public/allrunes/frumct.mf
+ texmf-dist/fonts/source/public/allrunes/frumkm.mf
+ texmf-dist/fonts/source/public/allrunes/frumkn.mf
+ texmf-dist/fonts/source/public/allrunes/frumkq.mf
+ texmf-dist/fonts/source/public/allrunes/frumkr.mf
+ texmf-dist/fonts/source/public/allrunes/frumks.mf
+ texmf-dist/fonts/source/public/allrunes/frumkt.mf
+ texmf-dist/fonts/source/public/allrunes/frumlm.mf
+ texmf-dist/fonts/source/public/allrunes/frumln.mf
+ texmf-dist/fonts/source/public/allrunes/frumlq.mf
+ texmf-dist/fonts/source/public/allrunes/frumlr.mf
+ texmf-dist/fonts/source/public/allrunes/frumls.mf
+ texmf-dist/fonts/source/public/allrunes/frumlt.mf
+ texmf-dist/fonts/source/public/allrunes/frummm.mf
+ texmf-dist/fonts/source/public/allrunes/frummn.mf
+ texmf-dist/fonts/source/public/allrunes/frummq.mf
+ texmf-dist/fonts/source/public/allrunes/frummr.mf
+ texmf-dist/fonts/source/public/allrunes/frumms.mf
+ texmf-dist/fonts/source/public/allrunes/frummt.mf
+ texmf-dist/fonts/source/public/allrunes/frumnm.mf
+ texmf-dist/fonts/source/public/allrunes/frumnn.mf
+ texmf-dist/fonts/source/public/allrunes/frumnq.mf
+ texmf-dist/fonts/source/public/allrunes/frumnr.mf
+ texmf-dist/fonts/source/public/allrunes/frumns.mf
+ texmf-dist/fonts/source/public/allrunes/frumnt.mf
+ texmf-dist/fonts/source/public/allrunes/frun.mf
+ texmf-dist/fonts/source/public/allrunes/frunbm.mf
+ texmf-dist/fonts/source/public/allrunes/frunbn.mf
+ texmf-dist/fonts/source/public/allrunes/frunbq.mf
+ texmf-dist/fonts/source/public/allrunes/frunbr.mf
+ texmf-dist/fonts/source/public/allrunes/frunbs.mf
+ texmf-dist/fonts/source/public/allrunes/frunbt.mf
+ texmf-dist/fonts/source/public/allrunes/fruncm.mf
+ texmf-dist/fonts/source/public/allrunes/fruncn.mf
+ texmf-dist/fonts/source/public/allrunes/fruncq.mf
+ texmf-dist/fonts/source/public/allrunes/fruncr.mf
+ texmf-dist/fonts/source/public/allrunes/fruncs.mf
+ texmf-dist/fonts/source/public/allrunes/frunct.mf
+ texmf-dist/fonts/source/public/allrunes/frunkm.mf
+ texmf-dist/fonts/source/public/allrunes/frunkn.mf
+ texmf-dist/fonts/source/public/allrunes/frunkq.mf
+ texmf-dist/fonts/source/public/allrunes/frunkr.mf
+ texmf-dist/fonts/source/public/allrunes/frunks.mf
+ texmf-dist/fonts/source/public/allrunes/frunkt.mf
+ texmf-dist/fonts/source/public/allrunes/frunlm.mf
+ texmf-dist/fonts/source/public/allrunes/frunln.mf
+ texmf-dist/fonts/source/public/allrunes/frunlq.mf
+ texmf-dist/fonts/source/public/allrunes/frunlr.mf
+ texmf-dist/fonts/source/public/allrunes/frunls.mf
+ texmf-dist/fonts/source/public/allrunes/frunlt.mf
+ texmf-dist/fonts/source/public/allrunes/frunmm.mf
+ texmf-dist/fonts/source/public/allrunes/frunmn.mf
+ texmf-dist/fonts/source/public/allrunes/frunmq.mf
+ texmf-dist/fonts/source/public/allrunes/frunmr.mf
+ texmf-dist/fonts/source/public/allrunes/frunms.mf
+ texmf-dist/fonts/source/public/allrunes/frunmt.mf
+ texmf-dist/fonts/source/public/allrunes/frunnm.mf
+ texmf-dist/fonts/source/public/allrunes/frunnn.mf
+ texmf-dist/fonts/source/public/allrunes/frunnq.mf
+ texmf-dist/fonts/source/public/allrunes/frunnr.mf
+ texmf-dist/fonts/source/public/allrunes/frunns.mf
+ texmf-dist/fonts/source/public/allrunes/frunnt.mf
+ texmf-dist/fonts/source/public/allrunes/frusep.mf
+ texmf-dist/fonts/source/public/allrunes/frut.mf
+ texmf-dist/fonts/source/public/allrunes/frutbm.mf
+ texmf-dist/fonts/source/public/allrunes/frutbn.mf
+ texmf-dist/fonts/source/public/allrunes/frutbq.mf
+ texmf-dist/fonts/source/public/allrunes/frutbr.mf
+ texmf-dist/fonts/source/public/allrunes/frutbs.mf
+ texmf-dist/fonts/source/public/allrunes/frutbt.mf
+ texmf-dist/fonts/source/public/allrunes/frutcm.mf
+ texmf-dist/fonts/source/public/allrunes/frutcn.mf
+ texmf-dist/fonts/source/public/allrunes/frutcq.mf
+ texmf-dist/fonts/source/public/allrunes/frutcr.mf
+ texmf-dist/fonts/source/public/allrunes/frutcs.mf
+ texmf-dist/fonts/source/public/allrunes/frutct.mf
+ texmf-dist/fonts/source/public/allrunes/frutkm.mf
+ texmf-dist/fonts/source/public/allrunes/frutkn.mf
+ texmf-dist/fonts/source/public/allrunes/frutkq.mf
+ texmf-dist/fonts/source/public/allrunes/frutkr.mf
+ texmf-dist/fonts/source/public/allrunes/frutks.mf
+ texmf-dist/fonts/source/public/allrunes/frutkt.mf
+ texmf-dist/fonts/source/public/allrunes/frutlm.mf
+ texmf-dist/fonts/source/public/allrunes/frutln.mf
+ texmf-dist/fonts/source/public/allrunes/frutlq.mf
+ texmf-dist/fonts/source/public/allrunes/frutlr.mf
+ texmf-dist/fonts/source/public/allrunes/frutls.mf
+ texmf-dist/fonts/source/public/allrunes/frutlt.mf
+ texmf-dist/fonts/source/public/allrunes/frutmm.mf
+ texmf-dist/fonts/source/public/allrunes/frutmn.mf
+ texmf-dist/fonts/source/public/allrunes/frutmq.mf
+ texmf-dist/fonts/source/public/allrunes/frutmr.mf
+ texmf-dist/fonts/source/public/allrunes/frutms.mf
+ texmf-dist/fonts/source/public/allrunes/frutmt.mf
+ texmf-dist/fonts/source/public/allrunes/frutnm.mf
+ texmf-dist/fonts/source/public/allrunes/frutnn.mf
+ texmf-dist/fonts/source/public/allrunes/frutnq.mf
+ texmf-dist/fonts/source/public/allrunes/frutnr.mf
+ texmf-dist/fonts/source/public/allrunes/frutns.mf
+ texmf-dist/fonts/source/public/allrunes/frutnt.mf
+ texmf-dist/fonts/tfm/public/allrunes/fruamn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/fruann8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frucmn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frucnn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frulmn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frulnm8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frulnn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frulnr8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frulns8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frummn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frumnn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frunbn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frunln8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frunmm8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frunmn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frunmr8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frunms8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frunnn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frutmn8z.tfm
+ texmf-dist/fonts/tfm/public/allrunes/frutnn8z.tfm
+ texmf-dist/fonts/type1/public/allrunes/fruabm.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruabn.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruabq.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruabr.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruabs.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruabt.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruacm.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruacn.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruacq.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruacr.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruacs.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruact.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruakm.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruakn.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruakq.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruakr.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruaks.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruakt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frualm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frualn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frualq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frualr.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruals.pfb
+ texmf-dist/fonts/type1/public/allrunes/frualt.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruamm.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruamn.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruamn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruamq.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruamr.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruams.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruamt.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruanm.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruann.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruann8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruanq.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruanr.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruans.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruant.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucbm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucbn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucbq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucbr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucbs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucbt.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruccm.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruccn.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruccq.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruccr.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruccs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucct.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruckm.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruckn.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruckq.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruckr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucks.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruckt.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruclm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucln.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruclq.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruclr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucls.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruclt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucmm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucmn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucmn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucmq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucmr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucms.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucmt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucnm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucnn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucnn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucnq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucnr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucns.pfb
+ texmf-dist/fonts/type1/public/allrunes/frucnt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulbm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulbn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulbq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulbr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulbs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulbt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulcm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulcn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulcq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulcr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulcs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulct.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulkm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulkn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulkq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulkr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulks.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulkt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frullm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulln.pfb
+ texmf-dist/fonts/type1/public/allrunes/frullq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frullr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulls.pfb
+ texmf-dist/fonts/type1/public/allrunes/frullt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulmm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulmn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulmn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulmq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulmr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulms.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulmt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulnm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulnm8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulnn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulnn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulnq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulnr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulnr8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulns.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulns8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frulnt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumbm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumbn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumbq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumbr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumbs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumbt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumcm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumcn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumcq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumcr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumcs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumct.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumkm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumkn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumkq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumkr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumks.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumkt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumlm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumln.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumlq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumlr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumls.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumlt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frummm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frummn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frummn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frummq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frummr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumms.pfb
+ texmf-dist/fonts/type1/public/allrunes/frummt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumnm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumnn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumnn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumnq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumnr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumns.pfb
+ texmf-dist/fonts/type1/public/allrunes/frumnt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunbm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunbn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunbn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunbq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunbr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunbs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunbt.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruncm.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruncn.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruncq.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruncr.pfb
+ texmf-dist/fonts/type1/public/allrunes/fruncs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunct.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunkm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunkn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunkq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunkr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunks.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunkt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunlm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunln.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunln8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunlq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunlr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunls.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunlt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunmm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunmm8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunmn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunmn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunmq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunmr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunmr8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunms.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunms8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunmt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunnm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunnn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunnn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunnq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunnr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunns.pfb
+ texmf-dist/fonts/type1/public/allrunes/frunnt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutbm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutbn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutbq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutbr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutbs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutbt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutcm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutcn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutcq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutcr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutcs.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutct.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutkm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutkn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutkq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutkr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutks.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutkt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutlm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutln.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutlq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutlr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutls.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutlt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutmm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutmn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutmn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutmq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutmr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutms.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutmt.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutnm.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutnn.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutnn8z.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutnq.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutnr.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutns.pfb
+ texmf-dist/fonts/type1/public/allrunes/frutnt.pfb
+ texmf-dist/tex/latex/allrunes/allrunes.sty
+ texmf-dist/tex/latex/allrunes/ara.fd
+ texmf-dist/tex/latex/allrunes/arc.fd
+ texmf-dist/tex/latex/allrunes/arl.fd
+ texmf-dist/tex/latex/allrunes/arm.fd
+ texmf-dist/tex/latex/allrunes/arn.fd
+ texmf-dist/tex/latex/allrunes/art.fd
+catalogue-version 2.1
+catalogue-date 2007-01-14 10:14:42 +0100
+catalogue-ctan /fonts/allrunes
+catalogue-license lppl
+
+name alnumsec
+category Package
+revision 5049
+shortdesc Alphanumeric section numbering.
+longdesc This package allows you to use alphanumeric section numbering,
+longdesc e.g.: A. Introduction; III. International Law. Its output is
+longdesc similar to alphanum.sty, but you can use the standard LaTeX
+longdesc sectioning commands. Thus it is possible to switch numbering
+longdesc schemes easily. Greek letters, double letters (bb) and
+longdesc different delimiters around them are supported.
+docfiles size=147513
+ texmf-dist/doc/latex/alnumsec/README
+ texmf-dist/doc/latex/alnumsec/alnumsec.pdf
+srcfiles size=24474
+ texmf-dist/source/latex/alnumsec/alnumsec.dtx
+ texmf-dist/source/latex/alnumsec/alnumsec.ins
+runfiles size=9580
+ texmf-dist/tex/latex/alnumsec/alnumsec.sty
+catalogue-version v0.03
+catalogue-date 2007-09-25 15:03:33 +0200
+catalogue-ctan /macros/latex/contrib/alnumsec
+catalogue-license lppl
+
+name altfont
+category Package
+revision 2622
+shortdesc Alternative font handling in LaTeX.
+longdesc The package provides a replacement for that part of psnfss and
+longdesc mfnfss that changes the default font. The package is
+longdesc distributed together with the psfont package, by the same
+longdesc author.
+docfiles size=234637
+ texmf-dist/doc/latex/altfont/README details="Readme"
+ texmf-dist/doc/latex/altfont/altfont.pdf details="Package documentation"
+ texmf-dist/doc/latex/altfont/psfont.pdf
+srcfiles size=42560
+ texmf-dist/source/latex/altfont/altfont.dtx
+ texmf-dist/source/latex/altfont/altfont.ins
+ texmf-dist/source/latex/altfont/psfont.dtx
+ texmf-dist/source/latex/altfont/psfont.ins
+runfiles size=18385
+ texmf-dist/tex/latex/altfont/altfont.cfg
+ texmf-dist/tex/latex/altfont/altfont.sty
+ texmf-dist/tex/latex/altfont/psfont.cfg
+ texmf-dist/tex/latex/altfont/psfont.sty
+catalogue-version 1.1
+catalogue-date 2007-09-25 20:36:22 +0200
+catalogue-ctan /macros/latex/contrib/altfont
+catalogue-license gpl
+
+name ametsoc
+category Package
+revision 4958
+shortdesc Official American Meteorological Society Latex Template.
+longdesc This package contains all the files necessary to write an
+longdesc article using latex for the American Meteorological Society
+longdesc journals. The article and bibliography style files are provided
+longdesc along with two PDFs describing the use of the files and a blank
+longdesc template for authors to use in writing their article.
+docfiles size=283877
+ texmf-dist/doc/latex/ametsoc/AMS_References.pdf details="Bibliography style documentation"
+ texmf-dist/doc/latex/ametsoc/README details="Readme"
+ texmf-dist/doc/latex/ametsoc/amspaper.pdf details="Package documentation (as sample paper)"
+ texmf-dist/doc/latex/ametsoc/amspaper.tex
+ texmf-dist/doc/latex/ametsoc/bibliography/database.bib
+ texmf-dist/doc/latex/ametsoc/bibliography/references.bib
+ texmf-dist/doc/latex/ametsoc/blank_template.tex
+ texmf-dist/doc/latex/ametsoc/figures/figure01.eps
+runfiles size=43946
+ texmf-dist/bibtex/bst/ametsoc/ametsoc.bst
+ texmf-dist/tex/latex/ametsoc/ametsoc.sty
+catalogue-version 2007-09-14
+catalogue-date 2007-09-15 16:23:43 +0200
+catalogue-ctan /macros/latex/contrib/ametsoc
+catalogue-license lppl
+
+name ams
+category Package
+revision 5189
+execute addMixedMap ams-bsr-interpolated.map
+execute addMixedMap ams-bsr.map
+execute addMixedMap ams-cmcsc-bsr-interpolated.map
+execute addMap mathpple.map
+runfiles size=3382071
+ texmf-dist/bibtex/bib/ams/amsj.bib
+ texmf-dist/bibtex/bst/ams/amsalpha.bst
+ texmf-dist/bibtex/bst/ams/amsplain.bst
+ texmf-dist/bibtex/bst/ams/amsra.bst
+ texmf-dist/bibtex/bst/ams/amsrn.bst
+ texmf-dist/bibtex/bst/ams/amsrs.bst
+ texmf-dist/bibtex/bst/ams/amsru.bst
+ texmf-dist/bibtex/bst/ams/amsry.bst
+ texmf-dist/dvips/ams/config.ams
+ texmf-dist/dvips/ams/config.amz
+ texmf-dist/fonts/afm/bluesky/ams/cmbsy5.afm
+ texmf-dist/fonts/afm/bluesky/ams/cmbsy7.afm
+ texmf-dist/fonts/afm/bluesky/ams/cmmib5.afm
+ texmf-dist/fonts/afm/bluesky/ams/cmmib7.afm
+ texmf-dist/fonts/afm/bluesky/ams/euex10.afm
+ texmf-dist/fonts/afm/bluesky/ams/eufb10.afm
+ texmf-dist/fonts/afm/bluesky/ams/eufb5.afm
+ texmf-dist/fonts/afm/bluesky/ams/eufb7.afm
+ texmf-dist/fonts/afm/bluesky/ams/eufm10.afm
+ texmf-dist/fonts/afm/bluesky/ams/eufm5.afm
+ texmf-dist/fonts/afm/bluesky/ams/eufm7.afm
+ texmf-dist/fonts/afm/bluesky/ams/eurb10.afm
+ texmf-dist/fonts/afm/bluesky/ams/eurb5.afm
+ texmf-dist/fonts/afm/bluesky/ams/eurb7.afm
+ texmf-dist/fonts/afm/bluesky/ams/eurm10.afm
+ texmf-dist/fonts/afm/bluesky/ams/eurm5.afm
+ texmf-dist/fonts/afm/bluesky/ams/eurm7.afm
+ texmf-dist/fonts/afm/bluesky/ams/eusb10.afm
+ texmf-dist/fonts/afm/bluesky/ams/eusb5.afm
+ texmf-dist/fonts/afm/bluesky/ams/eusb7.afm
+ texmf-dist/fonts/afm/bluesky/ams/eusm10.afm
+ texmf-dist/fonts/afm/bluesky/ams/eusm5.afm
+ texmf-dist/fonts/afm/bluesky/ams/eusm7.afm
+ texmf-dist/fonts/afm/bluesky/ams/msam10.afm
+ texmf-dist/fonts/afm/bluesky/ams/msam5.afm
+ texmf-dist/fonts/afm/bluesky/ams/msam7.afm
+ texmf-dist/fonts/afm/bluesky/ams/msbm10.afm
+ texmf-dist/fonts/afm/bluesky/ams/msbm5.afm
+ texmf-dist/fonts/afm/bluesky/ams/msbm7.afm
+ texmf-dist/fonts/afm/bluesky/ams/wncyb10.afm
+ texmf-dist/fonts/afm/bluesky/ams/wncyi10.afm
+ texmf-dist/fonts/afm/bluesky/ams/wncyr10.afm
+ texmf-dist/fonts/afm/bluesky/ams/wncysc10.afm
+ texmf-dist/fonts/afm/bluesky/ams/wncyss10.afm
+ texmf-dist/fonts/map/dvips/ams/ams-bsr-interpolated.map
+ texmf-dist/fonts/map/dvips/ams/ams-bsr.map
+ texmf-dist/fonts/map/dvips/ams/ams-cmcsc-bsr-interpolated.map
+ texmf-dist/fonts/map/dvips/ams/ams-cmex-bsr-interpolated.map
+ texmf-dist/fonts/map/dvips/ams/psfonts.ams
+ texmf-dist/fonts/map/dvips/ams/psfonts.amz
+ texmf-dist/fonts/source/public/ams/amsya.mf
+ texmf-dist/fonts/source/public/ams/amsyb.mf
+ texmf-dist/fonts/source/public/ams/asymbols.mf
+ texmf-dist/fonts/source/public/ams/bsymbols.mf
+ texmf-dist/fonts/source/public/ams/cmbsy5.mf
+ texmf-dist/fonts/source/public/ams/cmbsy6.mf
+ texmf-dist/fonts/source/public/ams/cmbsy7.mf
+ texmf-dist/fonts/source/public/ams/cmbsy8.mf
+ texmf-dist/fonts/source/public/ams/cmbsy9.mf
+ texmf-dist/fonts/source/public/ams/cmcsc8.mf
+ texmf-dist/fonts/source/public/ams/cmcsc9.mf
+ texmf-dist/fonts/source/public/ams/cmex7.mf
+ texmf-dist/fonts/source/public/ams/cmex8.mf
+ texmf-dist/fonts/source/public/ams/cmex9.mf
+ texmf-dist/fonts/source/public/ams/cmmib5.mf
+ texmf-dist/fonts/source/public/ams/cmmib6.mf
+ texmf-dist/fonts/source/public/ams/cmmib7.mf
+ texmf-dist/fonts/source/public/ams/cmmib8.mf
+ texmf-dist/fonts/source/public/ams/cmmib9.mf
+ texmf-dist/fonts/source/public/ams/cyrcsc.mf
+ texmf-dist/fonts/source/public/ams/cyrfont.mf
+ texmf-dist/fonts/source/public/ams/cyrilu.mf
+ texmf-dist/fonts/source/public/ams/cyrital.mf
+ texmf-dist/fonts/source/public/ams/cyrmax.mf
+ texmf-dist/fonts/source/public/ams/cyrpunc.mf
+ texmf-dist/fonts/source/public/ams/cyrspl.mf
+ texmf-dist/fonts/source/public/ams/cyrspu.mf
+ texmf-dist/fonts/source/public/ams/cyrti.mf
+ texmf-dist/fonts/source/public/ams/ebigop.mf
+ texmf-dist/fonts/source/public/ams/eubase.mf
+ texmf-dist/fonts/source/public/ams/euex10.mf
+ texmf-dist/fonts/source/public/ams/euex7.mf
+ texmf-dist/fonts/source/public/ams/euex8.mf
+ texmf-dist/fonts/source/public/ams/euex9.mf
+ texmf-dist/fonts/source/public/ams/eufb10.mf
+ texmf-dist/fonts/source/public/ams/eufb5.mf
+ texmf-dist/fonts/source/public/ams/eufb6.mf
+ texmf-dist/fonts/source/public/ams/eufb7.mf
+ texmf-dist/fonts/source/public/ams/eufb8.mf
+ texmf-dist/fonts/source/public/ams/eufb9.mf
+ texmf-dist/fonts/source/public/ams/eufbch.mf
+ texmf-dist/fonts/source/public/ams/eufm10.mf
+ texmf-dist/fonts/source/public/ams/eufm5.mf
+ texmf-dist/fonts/source/public/ams/eufm6.mf
+ texmf-dist/fonts/source/public/ams/eufm7.mf
+ texmf-dist/fonts/source/public/ams/eufm8.mf
+ texmf-dist/fonts/source/public/ams/eufm9.mf
+ texmf-dist/fonts/source/public/ams/eufmch.mf
+ texmf-dist/fonts/source/public/ams/eurb10.mf
+ texmf-dist/fonts/source/public/ams/eurb5.mf
+ texmf-dist/fonts/source/public/ams/eurb6.mf
+ texmf-dist/fonts/source/public/ams/eurb7.mf
+ texmf-dist/fonts/source/public/ams/eurb8.mf
+ texmf-dist/fonts/source/public/ams/eurb9.mf
+ texmf-dist/fonts/source/public/ams/eurbch.mf
+ texmf-dist/fonts/source/public/ams/eurm10.mf
+ texmf-dist/fonts/source/public/ams/eurm5.mf
+ texmf-dist/fonts/source/public/ams/eurm6.mf
+ texmf-dist/fonts/source/public/ams/eurm7.mf
+ texmf-dist/fonts/source/public/ams/eurm8.mf
+ texmf-dist/fonts/source/public/ams/eurm9.mf
+ texmf-dist/fonts/source/public/ams/eurmch.mf
+ texmf-dist/fonts/source/public/ams/eusb10.mf
+ texmf-dist/fonts/source/public/ams/eusb5.mf
+ texmf-dist/fonts/source/public/ams/eusb6.mf
+ texmf-dist/fonts/source/public/ams/eusb7.mf
+ texmf-dist/fonts/source/public/ams/eusb8.mf
+ texmf-dist/fonts/source/public/ams/eusb9.mf
+ texmf-dist/fonts/source/public/ams/eusbch.mf
+ texmf-dist/fonts/source/public/ams/eusm10.mf
+ texmf-dist/fonts/source/public/ams/eusm5.mf
+ texmf-dist/fonts/source/public/ams/eusm6.mf
+ texmf-dist/fonts/source/public/ams/eusm7.mf
+ texmf-dist/fonts/source/public/ams/eusm8.mf
+ texmf-dist/fonts/source/public/ams/eusm9.mf
+ texmf-dist/fonts/source/public/ams/eusmch.mf
+ texmf-dist/fonts/source/public/ams/msam10.mf
+ texmf-dist/fonts/source/public/ams/msam5.mf
+ texmf-dist/fonts/source/public/ams/msam6.mf
+ texmf-dist/fonts/source/public/ams/msam7.mf
+ texmf-dist/fonts/source/public/ams/msam8.mf
+ texmf-dist/fonts/source/public/ams/msam9.mf
+ texmf-dist/fonts/source/public/ams/msbm10.mf
+ texmf-dist/fonts/source/public/ams/msbm5.mf
+ texmf-dist/fonts/source/public/ams/msbm6.mf
+ texmf-dist/fonts/source/public/ams/msbm7.mf
+ texmf-dist/fonts/source/public/ams/msbm8.mf
+ texmf-dist/fonts/source/public/ams/msbm9.mf
+ texmf-dist/fonts/source/public/ams/serb.mf
+ texmf-dist/fonts/source/public/ams/serbspu.mf
+ texmf-dist/fonts/source/public/ams/wncyb10.mf
+ texmf-dist/fonts/source/public/ams/wncyb5.mf
+ texmf-dist/fonts/source/public/ams/wncyb6.mf
+ texmf-dist/fonts/source/public/ams/wncyb7.mf
+ texmf-dist/fonts/source/public/ams/wncyb8.mf
+ texmf-dist/fonts/source/public/ams/wncyb9.mf
+ texmf-dist/fonts/source/public/ams/wncyi10.mf
+ texmf-dist/fonts/source/public/ams/wncyi5.mf
+ texmf-dist/fonts/source/public/ams/wncyi6.mf
+ texmf-dist/fonts/source/public/ams/wncyi7.mf
+ texmf-dist/fonts/source/public/ams/wncyi8.mf
+ texmf-dist/fonts/source/public/ams/wncyi9.mf
+ texmf-dist/fonts/source/public/ams/wncyr10.mf
+ texmf-dist/fonts/source/public/ams/wncyr5.mf
+ texmf-dist/fonts/source/public/ams/wncyr6.mf
+ texmf-dist/fonts/source/public/ams/wncyr7.mf
+ texmf-dist/fonts/source/public/ams/wncyr8.mf
+ texmf-dist/fonts/source/public/ams/wncyr9.mf
+ texmf-dist/fonts/source/public/ams/wncysc10.mf
+ texmf-dist/fonts/source/public/ams/wncyss10.mf
+ texmf-dist/fonts/source/public/ams/wncyss8.mf
+ texmf-dist/fonts/source/public/ams/wncyss9.mf
+ texmf-dist/fonts/source/public/ams/xbbase.mf
+ texmf-dist/fonts/source/public/ams/xbbold.mf
+ texmf-dist/fonts/source/public/ams/xbcaps.mf
+ texmf-dist/fonts/tfm/public/ams/cmbsy5.tfm
+ texmf-dist/fonts/tfm/public/ams/cmbsy6.tfm
+ texmf-dist/fonts/tfm/public/ams/cmbsy7.tfm
+ texmf-dist/fonts/tfm/public/ams/cmbsy8.tfm
+ texmf-dist/fonts/tfm/public/ams/cmbsy9.tfm
+ texmf-dist/fonts/tfm/public/ams/cmcsc8.tfm
+ texmf-dist/fonts/tfm/public/ams/cmcsc9.tfm
+ texmf-dist/fonts/tfm/public/ams/cmex7.tfm
+ texmf-dist/fonts/tfm/public/ams/cmex8.tfm
+ texmf-dist/fonts/tfm/public/ams/cmex9.tfm
+ texmf-dist/fonts/tfm/public/ams/cmmib5.tfm
+ texmf-dist/fonts/tfm/public/ams/cmmib6.tfm
+ texmf-dist/fonts/tfm/public/ams/cmmib7.tfm
+ texmf-dist/fonts/tfm/public/ams/cmmib8.tfm
+ texmf-dist/fonts/tfm/public/ams/cmmib9.tfm
+ texmf-dist/fonts/tfm/public/ams/euex10.tfm
+ texmf-dist/fonts/tfm/public/ams/euex7.tfm
+ texmf-dist/fonts/tfm/public/ams/euex8.tfm
+ texmf-dist/fonts/tfm/public/ams/euex9.tfm
+ texmf-dist/fonts/tfm/public/ams/eufb10.tfm
+ texmf-dist/fonts/tfm/public/ams/eufb5.tfm
+ texmf-dist/fonts/tfm/public/ams/eufb6.tfm
+ texmf-dist/fonts/tfm/public/ams/eufb7.tfm
+ texmf-dist/fonts/tfm/public/ams/eufb8.tfm
+ texmf-dist/fonts/tfm/public/ams/eufb9.tfm
+ texmf-dist/fonts/tfm/public/ams/eufm10.tfm
+ texmf-dist/fonts/tfm/public/ams/eufm5.tfm
+ texmf-dist/fonts/tfm/public/ams/eufm6.tfm
+ texmf-dist/fonts/tfm/public/ams/eufm7.tfm
+ texmf-dist/fonts/tfm/public/ams/eufm8.tfm
+ texmf-dist/fonts/tfm/public/ams/eufm9.tfm
+ texmf-dist/fonts/tfm/public/ams/eurb10.tfm
+ texmf-dist/fonts/tfm/public/ams/eurb5.tfm
+ texmf-dist/fonts/tfm/public/ams/eurb6.tfm
+ texmf-dist/fonts/tfm/public/ams/eurb7.tfm
+ texmf-dist/fonts/tfm/public/ams/eurb8.tfm
+ texmf-dist/fonts/tfm/public/ams/eurb9.tfm
+ texmf-dist/fonts/tfm/public/ams/eurm10.tfm
+ texmf-dist/fonts/tfm/public/ams/eurm5.tfm
+ texmf-dist/fonts/tfm/public/ams/eurm6.tfm
+ texmf-dist/fonts/tfm/public/ams/eurm7.tfm
+ texmf-dist/fonts/tfm/public/ams/eurm8.tfm
+ texmf-dist/fonts/tfm/public/ams/eurm9.tfm
+ texmf-dist/fonts/tfm/public/ams/eusb10.tfm
+ texmf-dist/fonts/tfm/public/ams/eusb5.tfm
+ texmf-dist/fonts/tfm/public/ams/eusb6.tfm
+ texmf-dist/fonts/tfm/public/ams/eusb7.tfm
+ texmf-dist/fonts/tfm/public/ams/eusb8.tfm
+ texmf-dist/fonts/tfm/public/ams/eusb9.tfm
+ texmf-dist/fonts/tfm/public/ams/eusm10.tfm
+ texmf-dist/fonts/tfm/public/ams/eusm5.tfm
+ texmf-dist/fonts/tfm/public/ams/eusm6.tfm
+ texmf-dist/fonts/tfm/public/ams/eusm7.tfm
+ texmf-dist/fonts/tfm/public/ams/eusm8.tfm
+ texmf-dist/fonts/tfm/public/ams/eusm9.tfm
+ texmf-dist/fonts/tfm/public/ams/msam10.tfm
+ texmf-dist/fonts/tfm/public/ams/msam5.tfm
+ texmf-dist/fonts/tfm/public/ams/msam6.tfm
+ texmf-dist/fonts/tfm/public/ams/msam7.tfm
+ texmf-dist/fonts/tfm/public/ams/msam8.tfm
+ texmf-dist/fonts/tfm/public/ams/msam9.tfm
+ texmf-dist/fonts/tfm/public/ams/msbm10.tfm
+ texmf-dist/fonts/tfm/public/ams/msbm5.tfm
+ texmf-dist/fonts/tfm/public/ams/msbm6.tfm
+ texmf-dist/fonts/tfm/public/ams/msbm7.tfm
+ texmf-dist/fonts/tfm/public/ams/msbm8.tfm
+ texmf-dist/fonts/tfm/public/ams/msbm9.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyb10.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyb5.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyb6.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyb7.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyb8.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyb9.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyi10.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyi5.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyi6.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyi7.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyi8.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyi9.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyr10.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyr5.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyr6.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyr7.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyr8.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyr9.tfm
+ texmf-dist/fonts/tfm/public/ams/wncysc10.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyss10.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyss8.tfm
+ texmf-dist/fonts/tfm/public/ams/wncyss9.tfm
+ texmf-dist/fonts/type1/bluesky/ams/cmbsy5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/cmbsy7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/cmmib5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/cmmib7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/euex10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eufb10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eufb5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eufb7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eufm10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eufm5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eufm7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eurb10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eurb5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eurb7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eurm10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eurm5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eurm7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eusb10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eusb5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eusb7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eusm10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eusm5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/eusm7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/msam10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/msam5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/msam7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/msbm10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/msbm5.pfb
+ texmf-dist/fonts/type1/bluesky/ams/msbm7.pfb
+ texmf-dist/fonts/type1/bluesky/ams/wncyb10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/wncyi10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/wncyr10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/wncysc10.pfb
+ texmf-dist/fonts/type1/bluesky/ams/wncyss10.pfb
+
+name amsaddr
+category Package
+revision 5311
+shortdesc Alter the position of affiliations in amsart.
+longdesc The package is to be used with the amsart documentclass. It
+longdesc lets you move the authors’ affiliations either just below the
+longdesc authors’ names on the front page or as footnotes on the first
+longdesc page. The email addresses are always listed as a footnote on
+longdesc the front page.
+docfiles size=65312
+ texmf-dist/doc/latex/amsaddr/README details="Readme"
+ texmf-dist/doc/latex/amsaddr/amsaddr.pdf details="Package documentation"
+srcfiles size=11835
+ texmf-dist/source/latex/amsaddr/amsaddr.dtx
+ texmf-dist/source/latex/amsaddr/amsaddr.ins
+runfiles size=4080
+ texmf-dist/tex/latex/amsaddr/amsaddr.sty
+catalogue-version 1.0
+catalogue-date 2007-02-23 20:41:27 +0100
+catalogue-ctan /macros/latex/contrib/amsaddr
+catalogue-license lppl
+
+name amscls
+category Package
+revision 5189
+shortdesc AMS document classes for LaTeX.
+longdesc This directory contains two AMS classes, amsart and amsproc,
+longdesc together with some supporting material. The material is made
+longdesc available as part of the AMS-LaTeX distribution.
+docfiles size=1820075
+ texmf-dist/doc/latex/amscls/amsart.template
+ texmf-dist/doc/latex/amscls/amsbook.template
+ texmf-dist/doc/latex/amscls/amsclass.pdf
+ texmf-dist/doc/latex/amscls/amsdtx.pdf
+ texmf-dist/doc/latex/amscls/amsmidx.pdf
+ texmf-dist/doc/latex/amscls/amsproc.template
+ texmf-dist/doc/latex/amscls/amsthdoc.pdf
+ texmf-dist/doc/latex/amscls/diffs-c.txt
+ texmf-dist/doc/latex/amscls/instr-l.pdf
+ texmf-dist/doc/latex/amscls/thmtest.pdf
+ texmf-dist/doc/latex/amscls/upref.pdf
+srcfiles size=325005
+ texmf-dist/source/latex/amscls/00readme.txt
+ texmf-dist/source/latex/amscls/ams-c1.ins
+ texmf-dist/source/latex/amscls/amsclass.dtx
+ texmf-dist/source/latex/amscls/amsdtx.dtx
+ texmf-dist/source/latex/amscls/amsmidx.dtx
+ texmf-dist/source/latex/amscls/amsthdoc.tex
+ texmf-dist/source/latex/amscls/install.txt
+ texmf-dist/source/latex/amscls/instr-l.tex
+ texmf-dist/source/latex/amscls/manifest.txt
+ texmf-dist/source/latex/amscls/thmtest.tex
+ texmf-dist/source/latex/amscls/upref.dtx
+runfiles size=268469
+ texmf-dist/tex/latex/amscls/amsart.cls
+ texmf-dist/tex/latex/amscls/amsbook.cls
+ texmf-dist/tex/latex/amscls/amsbooka.sty
+ texmf-dist/tex/latex/amscls/amsbst.sty
+ texmf-dist/tex/latex/amscls/amsdtx.cls
+ texmf-dist/tex/latex/amscls/amsmidx.sty
+ texmf-dist/tex/latex/amscls/amsproc.cls
+ texmf-dist/tex/latex/amscls/amsrbeta.sty
+ texmf-dist/tex/latex/amscls/amsthm.sty
+ texmf-dist/tex/latex/amscls/rkvbeta.sty
+ texmf-dist/tex/latex/amscls/upref.sty
+catalogue-version
+catalogue-date 2007-02-20 16:27:25 +0100
+catalogue-ctan /macros/latex/required/amslatex/classes
+catalogue-license lppl
+
+name amsfonts
+category Package
+revision 1487
+shortdesc TeX fonts from the American Mathematical Society.
+longdesc Augments the standard set normally distributed with TeX,
+longdesc including: extra mathematical symbols; blackboard bold letters
+longdesc (uppercase only); fraktur letters; subscript sizes of bold math
+longdesc italic and bold Greek letters; subscript sizes of large symbols
+longdesc such as sum and product; added sizes of the Computer Modern
+longdesc small caps font; cyrillic fonts (from the University of
+longdesc Washington); Euler mathematical fonts. Adobe Type 1 versions of
+longdesc these fonts are also available, and bitmap PK font versions are
+longdesc available via the fonts' home page
+depend ams
+docfiles size=951790
+ texmf-dist/doc/fonts/amsfonts/READ.ME
+ texmf-dist/doc/fonts/amsfonts/README-amsps.txt
+ texmf-dist/doc/fonts/amsfonts/amsfndoc.cyr
+ texmf-dist/doc/fonts/amsfonts/amsfndoc.def
+ texmf-dist/doc/fonts/amsfonts/amsfndoc.fnt
+ texmf-dist/doc/fonts/amsfonts/amsfndoc.ins
+ texmf-dist/doc/fonts/amsfonts/amsfndoc.pdf
+ texmf-dist/doc/fonts/amsfonts/amsfndoc.tex
+ texmf-dist/doc/fonts/amsfonts/amsfonts.bug
+ texmf-dist/doc/fonts/amsfonts/amsfonts.faq
+ texmf-dist/doc/fonts/amsfonts/eufrak.dvi
+ texmf-dist/doc/fonts/amsfonts/euscript.dvi
+srcfiles size=357810
+ texmf-dist/source/latex/amsfonts/amsfonts.dtx
+ texmf-dist/source/latex/amsfonts/amsfonts.fdd
+ texmf-dist/source/latex/amsfonts/amsfonts.ins
+ texmf-dist/source/latex/amsfonts/amssymb.dtx
+ texmf-dist/source/latex/amsfonts/cmmib57.dtx
+ texmf-dist/source/latex/amsfonts/cyr-alt/READ.ME
+ texmf-dist/source/latex/amsfonts/cyr-alt/wkcyb10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wkcyi10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wkcyr10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wkcysc10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wkcyss10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wlcyb10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wlcyi10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wlcyr10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wlcysc10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wlcyss10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wvcyb10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wvcyi10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wvcyr10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wvcysc10.vpl
+ texmf-dist/source/latex/amsfonts/cyr-alt/wvcyss10.vpl
+ texmf-dist/source/latex/amsfonts/eufrak.dtx
+ texmf-dist/source/latex/amsfonts/euscript.dtx
+runfiles size=93331
+ texmf-dist/tex/latex/amsfonts/amsfonts.sty
+ texmf-dist/tex/latex/amsfonts/amssymb.sty
+ texmf-dist/tex/latex/amsfonts/cmmib57.sty
+ texmf-dist/tex/latex/amsfonts/eucal.sty
+ texmf-dist/tex/latex/amsfonts/eufrak.sty
+ texmf-dist/tex/latex/amsfonts/euscript.sty
+ texmf-dist/tex/latex/amsfonts/ueuex.fd
+ texmf-dist/tex/latex/amsfonts/ueuex57.fd
+ texmf-dist/tex/latex/amsfonts/ueuf.fd
+ texmf-dist/tex/latex/amsfonts/ueuf57.fd
+ texmf-dist/tex/latex/amsfonts/ueur.fd
+ texmf-dist/tex/latex/amsfonts/ueur57.fd
+ texmf-dist/tex/latex/amsfonts/ueus.fd
+ texmf-dist/tex/latex/amsfonts/ueus57.fd
+ texmf-dist/tex/latex/amsfonts/umsa.fd
+ texmf-dist/tex/latex/amsfonts/umsa57.fd
+ texmf-dist/tex/latex/amsfonts/umsb.fd
+ texmf-dist/tex/latex/amsfonts/umsb57.fd
+ texmf-dist/tex/plain/amsfonts/amssym.def
+ texmf-dist/tex/plain/amsfonts/amssym.tex
+ texmf-dist/tex/plain/amsfonts/cyracc.def
+catalogue-version 2.2
+catalogue-date 2006-12-01 11:11:43 +0100
+catalogue-ctan /fonts/amsfonts
+catalogue-license lppl
+
+name amslatex-primer
+category Documentation
+revision 19
+shortdesc Getting started with AMS-LaTeX
+longdesc This is a tutorial on writing papers, etc., using the AMS
+longdesc classes and of course amsmath and the other AMS packages. Note
+longdesc that the document describes AMS-LaTeX version 1.2, which is no
+longdesc longer current.
+docfiles size=61120
+ texmf-doc/doc/english/amslatex-primer/amshelp.tex
+ texmf-doc/doc/english/amslatex-primer/template.tex
+catalogue-version 2.0
+catalogue-date 2007-07-22 14:16:32 +0200
+catalogue-ctan /info/amslatex/primer
+catalogue-license unknown
+
+name amsldoc-it
+category Documentation
+revision 1620
+docfiles size=424637
+ texmf-doc/doc/italian/amsldoc-it/itamsldoc.pdf
+ texmf-doc/doc/italian/amsldoc-it/itamsldoc.tex
+
+name amsldoc-vn
+category Documentation
+revision 12
+docfiles size=1492273
+ texmf-doc/doc/vietnamese/amsldoc-vn/Makefile
+ texmf-doc/doc/vietnamese/amsldoc-vn/README
+ texmf-doc/doc/vietnamese/amsldoc-vn/TODO
+ texmf-doc/doc/vietnamese/amsldoc-vn/amsldoc-print-vi.pdf
+ texmf-doc/doc/vietnamese/amsldoc-vn/amsldoc-print-vi.tex
+ texmf-doc/doc/vietnamese/amsldoc-vn/amsldoc-vi.pdf
+ texmf-doc/doc/vietnamese/amsldoc-vn/amsldoc-vi.tex
+
+name amsmath
+category Package
+revision 2050
+shortdesc AMS mathematical facilities for LaTeX.
+longdesc This package is the principal package in the AMS-LaTeX
+longdesc distribution. It adapts for use in LaTeX most of the
+longdesc mathematical features found in AMS-TeX; it is a near-
+longdesc indispensable adjunct to serious mathematical typesetting in
+longdesc LaTeX. When amsmath is loaded, AMS-LaTeX packages amsbsy (for
+longdesc bold symbols), amsopn (for operator names) and amstext (for
+longdesc text embdedded in mathematics) are also loaded. Amsmath is part
+longdesc of the LaTeX required distribution; however, several
+longdesc contributed packages add still further to its appeal; examples
+longdesc are empheq, which provides functions for decorating and
+longdesc highlighting mathematics, and ntheorem, for specifying theorem
+longdesc (and similar) definitions.
+docfiles size=2751948
+ texmf-dist/doc/latex/amsmath/amsbsy.pdf
+ texmf-dist/doc/latex/amsmath/amscd.pdf
+ texmf-dist/doc/latex/amsmath/amsgen.pdf
+ texmf-dist/doc/latex/amsmath/amsldoc.pdf details="User guide (English):" language="en"
+ texmf-dist/doc/latex/amsmath/amsmath.pdf
+ texmf-dist/doc/latex/amsmath/amsopn.pdf
+ texmf-dist/doc/latex/amsmath/amstext.pdf
+ texmf-dist/doc/latex/amsmath/amsxtra.pdf
+ texmf-dist/doc/latex/amsmath/diffs-m.txt details="Differences from previous versions" language="en"
+ texmf-dist/doc/latex/amsmath/subeqn.pdf
+ texmf-dist/doc/latex/amsmath/technote.pdf details="Technical details:" language="en"
+ texmf-dist/doc/latex/amsmath/testmath.pdf
+srcfiles size=504746
+ texmf-dist/source/latex/amsmath/00readme.txt
+ texmf-dist/source/latex/amsmath/ams-m1.ins
+ texmf-dist/source/latex/amsmath/amsbsy.dtx
+ texmf-dist/source/latex/amsmath/amscd.dtx
+ texmf-dist/source/latex/amsmath/amsdtx.cls
+ texmf-dist/source/latex/amsmath/amsgen.dtx
+ texmf-dist/source/latex/amsmath/amsldoc.cls
+ texmf-dist/source/latex/amsmath/amsldoc.tex
+ texmf-dist/source/latex/amsmath/amsmath.dtx
+ texmf-dist/source/latex/amsmath/amsopn.dtx
+ texmf-dist/source/latex/amsmath/amstext.dtx
+ texmf-dist/source/latex/amsmath/amsxtra.dtx
+ texmf-dist/source/latex/amsmath/install.txt
+ texmf-dist/source/latex/amsmath/manifest.txt
+ texmf-dist/source/latex/amsmath/subeqn.tex
+ texmf-dist/source/latex/amsmath/technote.tex
+ texmf-dist/source/latex/amsmath/testmath.tex
+runfiles size=178262
+ texmf-dist/tex/latex/amsmath/amsbsy.sty
+ texmf-dist/tex/latex/amsmath/amscd.sty
+ texmf-dist/tex/latex/amsmath/amsgen.sty
+ texmf-dist/tex/latex/amsmath/amsmath.sty
+ texmf-dist/tex/latex/amsmath/amsopn.sty
+ texmf-dist/tex/latex/amsmath/amstex.sty
+ texmf-dist/tex/latex/amsmath/amstext.sty
+ texmf-dist/tex/latex/amsmath/amsxtra.sty
+catalogue-version 2.13
+catalogue-date 2007-02-20 16:27:25 +0100
+catalogue-ctan /macros/latex/required/amslatex/math
+catalogue-license lppl
+
+name amsmath-it
+category Documentation
+revision 14
+docfiles size=39308
+ texmf-doc/doc/italian/amsmath-it/amsmath.faq
+ texmf-doc/doc/italian/amsmath-it/diffs-m_it.txt
+
+name amsrefs
+category Package
+revision 5285
+shortdesc A LaTeX-based replacement for BibTeX.
+longdesc Amsrefs is a LaTeX package for bibliographies that provides an
+longdesc archival data format similar to the format of BibTeX database
+longdesc files, but adapted to make direct processing by LaTeX easier.
+longdesc The package can be used either in conjunction with BibTeX or as
+longdesc a replacement for BibTeX.
+docfiles size=2499776
+ texmf-dist/doc/latex/amsrefs/amsrdoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/amsrefs/amsrefs.faq
+ texmf-dist/doc/latex/amsrefs/amsrefs.pdf details="Documented source"
+ texmf-dist/doc/latex/amsrefs/amsxport.pdf
+ texmf-dist/doc/latex/amsrefs/changes.pdf
+ texmf-dist/doc/latex/amsrefs/cite-xa.pdf
+ texmf-dist/doc/latex/amsrefs/cite-xa.tex
+ texmf-dist/doc/latex/amsrefs/cite-xb.pdf
+ texmf-dist/doc/latex/amsrefs/cite-xb.tex
+ texmf-dist/doc/latex/amsrefs/cite-xh.pdf
+ texmf-dist/doc/latex/amsrefs/cite-xh.tex
+ texmf-dist/doc/latex/amsrefs/cite-xs.pdf
+ texmf-dist/doc/latex/amsrefs/cite-xs.tex
+ texmf-dist/doc/latex/amsrefs/gktest.ltb
+ texmf-dist/doc/latex/amsrefs/ifoption.pdf
+ texmf-dist/doc/latex/amsrefs/jr.bib
+ texmf-dist/doc/latex/amsrefs/mathscinet.pdf
+ texmf-dist/doc/latex/amsrefs/pcatcode.pdf
+ texmf-dist/doc/latex/amsrefs/rkeyval.pdf
+ texmf-dist/doc/latex/amsrefs/textcmds.pdf
+srcfiles size=464823
+ texmf-dist/source/latex/amsrefs/00readme.txt
+ texmf-dist/source/latex/amsrefs/amsrdoc.tex
+ texmf-dist/source/latex/amsrefs/amsrefs.dtx
+ texmf-dist/source/latex/amsrefs/amsrefs.ins
+ texmf-dist/source/latex/amsrefs/amsxport.dtx
+ texmf-dist/source/latex/amsrefs/amsxport.ins
+ texmf-dist/source/latex/amsrefs/changes.tex
+ texmf-dist/source/latex/amsrefs/ifoption.dtx
+ texmf-dist/source/latex/amsrefs/ifoption.ins
+ texmf-dist/source/latex/amsrefs/install.txt
+ texmf-dist/source/latex/amsrefs/manifest.txt
+ texmf-dist/source/latex/amsrefs/mathscinet.dtx
+ texmf-dist/source/latex/amsrefs/mathscinet.ins
+ texmf-dist/source/latex/amsrefs/pcatcode.dtx
+ texmf-dist/source/latex/amsrefs/pcatcode.ins
+ texmf-dist/source/latex/amsrefs/rkeyval.dtx
+ texmf-dist/source/latex/amsrefs/rkeyval.ins
+ texmf-dist/source/latex/amsrefs/textcmds.dtx
+ texmf-dist/source/latex/amsrefs/textcmds.ins
+runfiles size=123954
+ texmf-dist/tex/latex/amsrefs/amsbst.sty
+ texmf-dist/tex/latex/amsrefs/amsrefs.sty
+ texmf-dist/tex/latex/amsrefs/ifoption.sty
+ texmf-dist/tex/latex/amsrefs/mathscinet.sty
+ texmf-dist/tex/latex/amsrefs/pcatcode.sty
+ texmf-dist/tex/latex/amsrefs/rkeyval.sty
+ texmf-dist/tex/latex/amsrefs/textcmds.sty
+catalogue-version 2.02
+catalogue-date 2007-10-04 11:45:31 +0200
+catalogue-ctan /macros/latex/contrib/amsrefs
+catalogue-license other-free
+
+name amstex
+category Package
+revision 607
+shortdesc American Mathematical Society plain TeX macros.
+longdesc AMSTeX is a TeX macro package, originally written by Michael
+longdesc Spivak for the American Mathematical Society (AMS) during
+longdesc 1983–1985 and is described in the book ‘The Joy of TeX’.
+longdesc It is based on Plain TeX, and provides many features for
+longdesc producing more professional-looking maths formulas with less
+longdesc burden on authors. More recently, the focus of attention has
+longdesc switched to amslatex, but AMSTeX remains as a working system.
+docfiles size=735548
+ texmf-dist/doc/amstex/base/README
+ texmf-dist/doc/amstex/base/amsguide.pdf
+ texmf-dist/doc/amstex/base/amsguide.tex
+ texmf-dist/doc/amstex/base/amsppt.doc
+ texmf-dist/doc/amstex/base/amsppt.faq
+ texmf-dist/doc/amstex/base/amstinst.ps.gz
+ texmf-dist/doc/amstex/base/amstinst.tex
+ texmf-dist/doc/amstex/base/joyerr.tex
+ texmf-dist/doc/amstex/base/joyerr2.tex
+runfiles size=167284
+ texmf-dist/tex/amstex/base/amsppt.sti
+ texmf-dist/tex/amstex/base/amsppt.sty
+ texmf-dist/tex/amstex/base/amsppt1.tex
+ texmf-dist/tex/amstex/base/amstex.bug
+ texmf-dist/tex/amstex/base/amstex.tex
+ texmf-dist/tex/amstex/config/amstex.ini
+catalogue-version 2.2
+catalogue-date 2006-12-01 13:53:35 +0100
+catalogue-ctan /macros/amstex
+catalogue-license lppl
+
+name amsthdoc-it
+category Documentation
+revision 1622
+docfiles size=122738
+ texmf-doc/doc/italian/amsthdoc-it/amsthdoc_it.pdf
+ texmf-doc/doc/italian/amsthdoc-it/amsthdoc_it.tex
+
+name animate
+category Package
+revision 5444
+shortdesc Create PDF animations from graphics files and inline graphics.
+longdesc The package provides an interface to create portable,
+longdesc JavaScript driven PDF animations from sets of graphics files or
+longdesc from inline graphics, such as LaTeX picture environment,
+longdesc PSTricks or pgf/TikZ generated pictures, or just from typeset
+longdesc text.
+docfiles size=1419717
+ texmf-dist/doc/latex/animate/README details="Readme"
+ texmf-dist/doc/latex/animate/doc/animate.pdf details="Package documentation"
+ texmf-dist/doc/latex/animate/doc/animate.tex
+ texmf-dist/doc/latex/animate/doc/files/bye_0.eps
+ texmf-dist/doc/latex/animate/doc/files/bye_1.eps
+ texmf-dist/doc/latex/animate/doc/files/bye_2.eps
+ texmf-dist/doc/latex/animate/doc/files/bye_3.eps
+ texmf-dist/doc/latex/animate/doc/files/exp.mp
+ texmf-dist/doc/latex/animate/doc/files/mailto.eps
+ texmf-dist/doc/latex/animate/doc/files/scarab.mp
+ texmf-dist/doc/latex/animate/doc/files/timeline.txt
+runfiles size=125049
+ texmf-dist/tex/latex/animate/animate-noocg.sty
+ texmf-dist/tex/latex/animate/animate.sty
+catalogue-version
+catalogue-date 2007-11-12 22:08:46 +0100
+catalogue-ctan /macros/latex/contrib/animate
+catalogue-license lppl
+
+name answers
+category Package
+revision 1487
+shortdesc Setting questions (or exercises) and answers.
+longdesc The package allows a lot of flexibility in constructing
+longdesc question and answer sheets. (The author is no longer active
+longdesc with TeX: the CTAN team can assign licence ownership to anyone
+longdesc who wants to adopt the package.)
+docfiles size=6280
+ texmf-dist/doc/latex/answers/ans1.tex
+ texmf-dist/doc/latex/answers/ans2.tex
+ texmf-dist/doc/latex/answers/ans2x.tex
+ texmf-dist/doc/latex/answers/ans3.tex
+ texmf-dist/doc/latex/answers/ansexam1.dvi
+ texmf-dist/doc/latex/answers/ansexam1.tex
+ texmf-dist/doc/latex/answers/ansexam2.dvi
+ texmf-dist/doc/latex/answers/ansexam2.tex
+ texmf-dist/doc/latex/answers/ansexam3.dvi
+ texmf-dist/doc/latex/answers/ansexam3.tex
+srcfiles size=25419
+ texmf-dist/source/latex/answers/answers.dtx
+ texmf-dist/source/latex/answers/answers.ins
+runfiles size=5394
+ texmf-dist/tex/latex/answers/answers.sty
+catalogue-version 2.10
+catalogue-date 2006-12-28 13:46:38 +0100
+catalogue-ctan /macros/latex/contrib/answers
+catalogue-license unknown
+
+name antiqua
+category Package
+revision 664
+execute addMap uaq.map
+docfiles size=5259
+ texmf-dist/doc/fonts/antiqua/README.base35
+ texmf-dist/doc/fonts/antiqua/antiqua.txt
+runfiles size=163032
+ texmf-dist/dvips/antiqua/config.uaq
+ texmf-dist/fonts/afm/urw/antiqua/uaqr8ac.afm
+ texmf-dist/fonts/map/dvips/antiqua/uaq.map
+ texmf-dist/fonts/tfm/urw/antiqua/uaqr7tc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqr8ac.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqr8cc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqr8rc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqr8tc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqrc7tc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqrc8tc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqro7tc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqro8cc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqro8rc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqro8tc.tfm
+ texmf-dist/fonts/tfm/urw/antiqua/uaqrrc.tfm
+ texmf-dist/fonts/type1/urw/antiqua/uaqr8ac.pfb
+ texmf-dist/fonts/vf/urw/antiqua/uaqr7tc.vf
+ texmf-dist/fonts/vf/urw/antiqua/uaqr8cc.vf
+ texmf-dist/fonts/vf/urw/antiqua/uaqr8tc.vf
+ texmf-dist/fonts/vf/urw/antiqua/uaqrc7tc.vf
+ texmf-dist/fonts/vf/urw/antiqua/uaqrc8tc.vf
+ texmf-dist/fonts/vf/urw/antiqua/uaqro7tc.vf
+ texmf-dist/fonts/vf/urw/antiqua/uaqro8cc.vf
+ texmf-dist/fonts/vf/urw/antiqua/uaqro8tc.vf
+ texmf-dist/fonts/vf/urw/antiqua/uaqrrc.vf
+ texmf-dist/tex/latex/antiqua/ot1uaq.fd
+ texmf-dist/tex/latex/antiqua/t1uaq.fd
+ texmf-dist/tex/latex/antiqua/ts1uaq.fd
+
+name antomega
+category Package
+revision 615
+shortdesc Alternative language support for Omega/Lambda.
+longdesc A language support package for Omega/Lambda. This replaces the
+longdesc original omega package for use with Lambda, and provides extra
+longdesc facilities (including Babel-like language switching, which
+longdesc eases porting of LaTeX documents to Lambda).
+depend omega
+docfiles size=204359
+ texmf-dist/doc/lambda/antomega/README details="Readme"
+ texmf-dist/doc/lambda/antomega/antomega.pdf
+srcfiles size=103424
+ texmf-dist/source/lambda/antomega/antenc.dtx
+ texmf-dist/source/lambda/antomega/antenc.ins
+ texmf-dist/source/lambda/antomega/antomega.dtx
+ texmf-dist/source/lambda/antomega/antomega.ins
+runfiles size=591017
+ texmf-dist/omega/ocp/antomega/babel2de.ocp
+ texmf-dist/omega/ocp/antomega/babel2es.ocp
+ texmf-dist/omega/ocp/antomega/babel2la.ocp
+ texmf-dist/omega/ocp/antomega/babel2pl.ocp
+ texmf-dist/omega/ocp/antomega/babel2punct.ocp
+ texmf-dist/omega/ocp/antomega/babel2ru.ocp
+ texmf-dist/omega/ocp/antomega/bblgrk2uni.ocp
+ texmf-dist/omega/ocp/antomega/dosrus2uni.ocp
+ texmf-dist/omega/ocp/antomega/greek2punct.ocp
+ texmf-dist/omega/ocp/antomega/iso2uni.ocp
+ texmf-dist/omega/ocp/antomega/isobaltic2uni.ocp
+ texmf-dist/omega/ocp/antomega/isoce2uni.ocp
+ texmf-dist/omega/ocp/antomega/isocyr2uni.ocp
+ texmf-dist/omega/ocp/antomega/isogrk2uni.ocp
+ texmf-dist/omega/ocp/antomega/koirus2uni.ocp
+ texmf-dist/omega/ocp/antomega/latcyr2uni.ocp
+ texmf-dist/omega/ocp/antomega/latin/la-lig.ocp
+ texmf-dist/omega/ocp/antomega/latin/la-longs.ocp
+ texmf-dist/omega/ocp/antomega/latin/la-noj.ocp
+ texmf-dist/omega/ocp/antomega/latin/la-nouv.ocp
+ texmf-dist/omega/ocp/antomega/oldstyle.ocp
+ texmf-dist/omega/ocp/antomega/rhobre.ocp
+ texmf-dist/omega/ocp/antomega/rhonobre.ocp
+ texmf-dist/omega/ocp/antomega/tex2punct.ocp
+ texmf-dist/omega/ocp/antomega/texgrk2uni.ocp
+ texmf-dist/omega/ocp/antomega/uni2accents.ocp
+ texmf-dist/omega/ocp/antomega/uni2lgr.ocp
+ texmf-dist/omega/ocp/antomega/uni2lig.ocp
+ texmf-dist/omega/ocp/antomega/uni2omega.ocp
+ texmf-dist/omega/ocp/antomega/uni2t1.ocp
+ texmf-dist/omega/ocp/antomega/uni2t2a.ocp
+ texmf-dist/omega/ocp/antomega/uniutf2uni.ocp
+ texmf-dist/omega/ocp/antomega/uppercase-dflt.ocp
+ texmf-dist/omega/ocp/antomega/win2uni.ocp
+ texmf-dist/omega/ocp/antomega/winbaltic2uni.ocp
+ texmf-dist/omega/ocp/antomega/wince2uni.ocp
+ texmf-dist/omega/ocp/antomega/wincyr2uni.ocp
+ texmf-dist/omega/otp/antomega/babel2de.otp
+ texmf-dist/omega/otp/antomega/babel2es.otp
+ texmf-dist/omega/otp/antomega/babel2la.otp
+ texmf-dist/omega/otp/antomega/babel2pl.otp
+ texmf-dist/omega/otp/antomega/babel2punct.otp
+ texmf-dist/omega/otp/antomega/babel2ru.otp
+ texmf-dist/omega/otp/antomega/bblgrk2uni.otp
+ texmf-dist/omega/otp/antomega/dosrus2uni.otp
+ texmf-dist/omega/otp/antomega/greek2punct.otp
+ texmf-dist/omega/otp/antomega/iso2uni.otp
+ texmf-dist/omega/otp/antomega/isobaltic2uni.otp
+ texmf-dist/omega/otp/antomega/isoce2uni.otp
+ texmf-dist/omega/otp/antomega/isocyr2uni.otp
+ texmf-dist/omega/otp/antomega/isogrk2uni.otp
+ texmf-dist/omega/otp/antomega/koirus2uni.otp
+ texmf-dist/omega/otp/antomega/latcyr2uni.otp
+ texmf-dist/omega/otp/antomega/latin/la-lig.otp
+ texmf-dist/omega/otp/antomega/latin/la-longs.otp
+ texmf-dist/omega/otp/antomega/latin/la-noj.otp
+ texmf-dist/omega/otp/antomega/latin/la-nouv.otp
+ texmf-dist/omega/otp/antomega/rhobre.otp
+ texmf-dist/omega/otp/antomega/rhonobre.otp
+ texmf-dist/omega/otp/antomega/tex2punct.otp
+ texmf-dist/omega/otp/antomega/texgrk2uni.otp
+ texmf-dist/omega/otp/antomega/uni2accents.otp
+ texmf-dist/omega/otp/antomega/uni2lgr.otp
+ texmf-dist/omega/otp/antomega/uni2lig.otp
+ texmf-dist/omega/otp/antomega/uni2omega.otp
+ texmf-dist/omega/otp/antomega/uni2t1.otp
+ texmf-dist/omega/otp/antomega/uni2t2a.otp
+ texmf-dist/omega/otp/antomega/uniutf2uni.otp
+ texmf-dist/omega/otp/antomega/uppercase-dflt.otp
+ texmf-dist/omega/otp/antomega/win2uni.otp
+ texmf-dist/omega/otp/antomega/winbaltic2uni.otp
+ texmf-dist/omega/otp/antomega/wince2uni.otp
+ texmf-dist/omega/otp/antomega/wincyr2uni.otp
+ texmf-dist/tex/lambda/antomega/antomega.cfg
+ texmf-dist/tex/lambda/antomega/antomega.sty
+ texmf-dist/tex/lambda/antomega/grhyph16.tex
+ texmf-dist/tex/lambda/antomega/hyphen.cfg
+ texmf-dist/tex/lambda/antomega/language.dat.sample
+ texmf-dist/tex/lambda/antomega/lgc0700.def
+ texmf-dist/tex/lambda/antomega/lgrenc-antomega.def
+ texmf-dist/tex/lambda/antomega/ograhyph4.tex
+ texmf-dist/tex/lambda/antomega/ogrmhyph4.tex
+ texmf-dist/tex/lambda/antomega/ogrphyph4.tex
+ texmf-dist/tex/lambda/antomega/omega-english.ldf
+ texmf-dist/tex/lambda/antomega/omega-french.ldf
+ texmf-dist/tex/lambda/antomega/omega-german.ldf
+ texmf-dist/tex/lambda/antomega/omega-greek.ldf
+ texmf-dist/tex/lambda/antomega/omega-latin.ldf
+ texmf-dist/tex/lambda/antomega/omega-latvian.ldf
+ texmf-dist/tex/lambda/antomega/omega-polish.ldf
+ texmf-dist/tex/lambda/antomega/omega-russian.ldf
+ texmf-dist/tex/lambda/antomega/omega-spanish.ldf
+ texmf-dist/tex/lambda/antomega/ruhyph16.tex
+ texmf-dist/tex/lambda/antomega/t1enc-antomega.def
+ texmf-dist/tex/lambda/antomega/t2aenc-antomega.def
+ texmf-dist/tex/lambda/antomega/uni0100.def
+ texmf-dist/tex/lambda/antomega/uni0370.def
+ texmf-dist/tex/lambda/antomega/uni0400.def
+ texmf-dist/tex/lambda/antomega/uni1f00.def
+ texmf-dist/tex/lambda/antomega/ut1enc-antomega.def
+catalogue-version 0.8
+catalogue-date 2007-01-23 22:34:44 +0100
+catalogue-ctan /systems/omega/contrib/antomega
+catalogue-license lppl
+
+name antp
+category Package
+revision 665
+shortdesc Antykwa Półtawskiego: a Type 1 family of Polish traditional type.
+longdesc A replica of Antykwa Półtawskiego font in PostScript Type 1
+longdesc format — preliminary version. This font was designed in the
+longdesc 'twenties and the 'thirties of XX century by a Polish graphic
+longdesc artist and a typographer Adam Półtawski. It was widely used
+longdesc by Polish printing houses as long as metal types were in use
+longdesc (until ca. the 'sixties). Perhaps the first complete font
+longdesc family programmed and parametrized in MetaPost.
+execute addMap antp.map
+docfiles size=82943
+ texmf-dist/doc/fonts/antp/README.ENG details="Package README in English" language="en"
+ texmf-dist/doc/fonts/antp/README.POL details="Package README in Polish" language="pl"
+ texmf-dist/doc/fonts/antp/testot4.tex
+ texmf-dist/doc/fonts/antp/testqx.tex
+runfiles size=246365
+ texmf-dist/dvips/antp/antp.cfg
+ texmf-dist/dvips/antp/config.antp
+ texmf-dist/fonts/afm/public/antp/antpb.afm
+ texmf-dist/fonts/afm/public/antp/antpbi.afm
+ texmf-dist/fonts/afm/public/antp/antpr.afm
+ texmf-dist/fonts/afm/public/antp/antpri.afm
+ texmf-dist/fonts/enc/dvips/antp/antp.enc
+ texmf-dist/fonts/map/dvips/antp/antp.map
+ texmf-dist/fonts/tfm/public/antp/antpb.tfm
+ texmf-dist/fonts/tfm/public/antp/antpbi.tfm
+ texmf-dist/fonts/tfm/public/antp/antpr.tfm
+ texmf-dist/fonts/tfm/public/antp/antpri.tfm
+ texmf-dist/fonts/type1/public/antp/antpb.pfb
+ texmf-dist/fonts/type1/public/antp/antpb.pfm
+ texmf-dist/fonts/type1/public/antp/antpbi.pfb
+ texmf-dist/fonts/type1/public/antp/antpbi.pfm
+ texmf-dist/fonts/type1/public/antp/antpr.pfb
+ texmf-dist/fonts/type1/public/antp/antpr.pfm
+ texmf-dist/fonts/type1/public/antp/antpri.pfb
+ texmf-dist/fonts/type1/public/antp/antpri.pfm
+ texmf-dist/tex/latex/antp/antpolt.sty
+ texmf-dist/tex/latex/antp/ot4antp.fd
+ texmf-dist/tex/latex/antp/qxantp.fd
+catalogue-version 0.50
+catalogue-date 2006-11-28 22:17:33 +0100
+catalogue-ctan /fonts/psfonts/polish/antp
+catalogue-license pd
+
+name antt
+category Package
+revision 3477
+shortdesc Antykwa Toruńska: a Type 1 family of a Polish traditional type.
+longdesc Antykwa Toruńska is a serif font designed by the late Polish
+longdesc typographer Zygfryd Gardzielewski, reconstructed and digitized
+longdesc as as Type 1.
+execute addMap antt.map
+docfiles size=3097732
+ texmf-dist/doc/fonts/antt/AntykwaTorunska-doc-en-2_03.pdf details="Documentation in English:" language="en"
+ texmf-dist/doc/fonts/antt/AntykwaTorunska-doc-pl-2_03.pdf details="Documentation in Polish:" language="pl"
+ texmf-dist/doc/fonts/antt/AntykwaTorunska-doc-src-2_03.zip
+ texmf-dist/doc/fonts/antt/GUST-FONT-NOSOURCE-LICENSE.txt
+ texmf-dist/doc/fonts/antt/MANIFEST.txt
+ texmf-dist/doc/fonts/antt/README
+ texmf-dist/doc/fonts/antt/antt-latex-cyr.tex
+ texmf-dist/doc/fonts/antt/antt-latex-math.tex
+ texmf-dist/doc/fonts/antt/antt-latex-pl.tex
+ texmf-dist/doc/fonts/antt/antt-latex-t2a.tex
+ texmf-dist/doc/fonts/antt/antt-latex-t5.tex
+ texmf-dist/doc/fonts/antt/antt-mathtest.tex
+ texmf-dist/doc/fonts/antt/antt-table.tex
+runfiles size=20589979
+ texmf-dist/fonts/afm/public/antt/anttb.afm
+ texmf-dist/fonts/afm/public/antt/anttbi.afm
+ texmf-dist/fonts/afm/public/antt/anttcb.afm
+ texmf-dist/fonts/afm/public/antt/anttcbi.afm
+ texmf-dist/fonts/afm/public/antt/anttcl.afm
+ texmf-dist/fonts/afm/public/antt/anttcli.afm
+ texmf-dist/fonts/afm/public/antt/anttcm.afm
+ texmf-dist/fonts/afm/public/antt/anttcmi.afm
+ texmf-dist/fonts/afm/public/antt/anttcr.afm
+ texmf-dist/fonts/afm/public/antt/anttcri.afm
+ texmf-dist/fonts/afm/public/antt/anttl.afm
+ texmf-dist/fonts/afm/public/antt/anttli.afm
+ texmf-dist/fonts/afm/public/antt/anttm.afm
+ texmf-dist/fonts/afm/public/antt/anttmi.afm
+ texmf-dist/fonts/afm/public/antt/anttr.afm
+ texmf-dist/fonts/afm/public/antt/anttri.afm
+ texmf-dist/fonts/enc/dvips/antt/antt-cs.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-ec.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-el.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-ex.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-exp.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-greek.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-mi.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-qx.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-rm.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-sy.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-t2a.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-t2b.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-t2c.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-t5.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-texnansi.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-ts1.enc
+ texmf-dist/fonts/enc/dvips/antt/antt-wncy.enc
+ texmf-dist/fonts/enc/dvips/antt/anttcap-cs.enc
+ texmf-dist/fonts/enc/dvips/antt/anttcap-ec.enc
+ texmf-dist/fonts/enc/dvips/antt/anttcap-qx.enc
+ texmf-dist/fonts/enc/dvips/antt/anttcap-t5.enc
+ texmf-dist/fonts/enc/dvips/antt/anttcap-texnansi.enc
+ texmf-dist/fonts/map/dvips/antt/antt-cs.map
+ texmf-dist/fonts/map/dvips/antt/antt-ec.map
+ texmf-dist/fonts/map/dvips/antt/antt-el.map
+ texmf-dist/fonts/map/dvips/antt/antt-ex.map
+ texmf-dist/fonts/map/dvips/antt/antt-exp.map
+ texmf-dist/fonts/map/dvips/antt/antt-greek.map
+ texmf-dist/fonts/map/dvips/antt/antt-mi.map
+ texmf-dist/fonts/map/dvips/antt/antt-qx.map
+ texmf-dist/fonts/map/dvips/antt/antt-rm.map
+ texmf-dist/fonts/map/dvips/antt/antt-sy.map
+ texmf-dist/fonts/map/dvips/antt/antt-t2a.map
+ texmf-dist/fonts/map/dvips/antt/antt-t2b.map
+ texmf-dist/fonts/map/dvips/antt/antt-t2c.map
+ texmf-dist/fonts/map/dvips/antt/antt-t5.map
+ texmf-dist/fonts/map/dvips/antt/antt-texnansi.map
+ texmf-dist/fonts/map/dvips/antt/antt-ts1.map
+ texmf-dist/fonts/map/dvips/antt/antt-wncy.map
+ texmf-dist/fonts/map/dvips/antt/antt.map
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunska-Bold.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunska-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunska-Italic.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunska-Regular.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaCond-Bold.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaCond-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaCond-Italic.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaCond-Regular.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaCondLight-Italic.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaCondLight-Regular.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaCondMed-Italic.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaCondMed-Regular.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaLight-Italic.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaLight-Regular.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaMed-Italic.otf
+ texmf-dist/fonts/opentype/public/antt/AntykwaTorunskaMed-Regular.otf
+ texmf-dist/fonts/tfm/public/antt/cs-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttclcap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttclicap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttcricap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttlcap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttlicap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/cs-anttricap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttclcap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttclicap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttcricap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttlcap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttlicap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/ec-anttricap.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/el-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/ex-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/ex-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/ex-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/ex-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/ex-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/ex-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/ex-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/ex-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/exp-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/greek-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/mi-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/mi-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/mi-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/mi-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/mi-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/mi-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/mi-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/mi-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttclcap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttclicap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttcricap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttlcap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttlicap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/qx-anttricap.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/rm-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/sy-anttbz.tfm
+ texmf-dist/fonts/tfm/public/antt/sy-anttcbz.tfm
+ texmf-dist/fonts/tfm/public/antt/sy-anttclz.tfm
+ texmf-dist/fonts/tfm/public/antt/sy-anttcmz.tfm
+ texmf-dist/fonts/tfm/public/antt/sy-anttcrz.tfm
+ texmf-dist/fonts/tfm/public/antt/sy-anttlz.tfm
+ texmf-dist/fonts/tfm/public/antt/sy-anttmz.tfm
+ texmf-dist/fonts/tfm/public/antt/sy-anttrz.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/t2a-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/t2b-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/t2c-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttclcap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttclicap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttcricap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttlcap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttlicap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/t5-anttricap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcbcap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcbicap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttclcap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttclicap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttcricap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttlcap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttlicap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttmcap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttmicap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttrcap.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/texnansi-anttricap.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/ts1-anttri.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttb.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttbi.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttcb.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttcbi.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttcl.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttcli.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttcm.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttcmi.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttcr.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttcri.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttl.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttli.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttm.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttmi.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttr.tfm
+ texmf-dist/fonts/tfm/public/antt/wncy-anttri.tfm
+ texmf-dist/fonts/type1/public/antt/anttb.pfb
+ texmf-dist/fonts/type1/public/antt/anttbi.pfb
+ texmf-dist/fonts/type1/public/antt/anttcb.pfb
+ texmf-dist/fonts/type1/public/antt/anttcbi.pfb
+ texmf-dist/fonts/type1/public/antt/anttcl.pfb
+ texmf-dist/fonts/type1/public/antt/anttcli.pfb
+ texmf-dist/fonts/type1/public/antt/anttcm.pfb
+ texmf-dist/fonts/type1/public/antt/anttcmi.pfb
+ texmf-dist/fonts/type1/public/antt/anttcr.pfb
+ texmf-dist/fonts/type1/public/antt/anttcri.pfb
+ texmf-dist/fonts/type1/public/antt/anttl.pfb
+ texmf-dist/fonts/type1/public/antt/anttli.pfb
+ texmf-dist/fonts/type1/public/antt/anttm.pfb
+ texmf-dist/fonts/type1/public/antt/anttmi.pfb
+ texmf-dist/fonts/type1/public/antt/anttr.pfb
+ texmf-dist/fonts/type1/public/antt/anttri.pfb
+ texmf-dist/tex/latex/antt/anttor.sty
+ texmf-dist/tex/latex/antt/antyktor.sty
+ texmf-dist/tex/latex/antt/il2antt.fd
+ texmf-dist/tex/latex/antt/il2anttc.fd
+ texmf-dist/tex/latex/antt/il2anttl.fd
+ texmf-dist/tex/latex/antt/il2anttlc.fd
+ texmf-dist/tex/latex/antt/ly1antt.fd
+ texmf-dist/tex/latex/antt/ly1anttc.fd
+ texmf-dist/tex/latex/antt/ly1anttl.fd
+ texmf-dist/tex/latex/antt/ly1anttlc.fd
+ texmf-dist/tex/latex/antt/omlantt.fd
+ texmf-dist/tex/latex/antt/omlanttc.fd
+ texmf-dist/tex/latex/antt/omlanttl.fd
+ texmf-dist/tex/latex/antt/omlanttlc.fd
+ texmf-dist/tex/latex/antt/omsantt.fd
+ texmf-dist/tex/latex/antt/omsanttc.fd
+ texmf-dist/tex/latex/antt/omsanttl.fd
+ texmf-dist/tex/latex/antt/omsanttlc.fd
+ texmf-dist/tex/latex/antt/omxantt.fd
+ texmf-dist/tex/latex/antt/omxanttc.fd
+ texmf-dist/tex/latex/antt/omxanttl.fd
+ texmf-dist/tex/latex/antt/omxanttlc.fd
+ texmf-dist/tex/latex/antt/ot1antt.fd
+ texmf-dist/tex/latex/antt/ot1anttc.fd
+ texmf-dist/tex/latex/antt/ot1anttcm.fd
+ texmf-dist/tex/latex/antt/ot1anttl.fd
+ texmf-dist/tex/latex/antt/ot1anttlc.fd
+ texmf-dist/tex/latex/antt/ot1anttlcm.fd
+ texmf-dist/tex/latex/antt/ot1anttlm.fd
+ texmf-dist/tex/latex/antt/ot1anttm.fd
+ texmf-dist/tex/latex/antt/ot2antt.fd
+ texmf-dist/tex/latex/antt/ot2anttc.fd
+ texmf-dist/tex/latex/antt/ot2anttl.fd
+ texmf-dist/tex/latex/antt/ot2anttlc.fd
+ texmf-dist/tex/latex/antt/ot4antt.fd
+ texmf-dist/tex/latex/antt/ot4anttc.fd
+ texmf-dist/tex/latex/antt/ot4anttl.fd
+ texmf-dist/tex/latex/antt/ot4anttlc.fd
+ texmf-dist/tex/latex/antt/qxantt.fd
+ texmf-dist/tex/latex/antt/qxanttc.fd
+ texmf-dist/tex/latex/antt/qxanttl.fd
+ texmf-dist/tex/latex/antt/qxanttlc.fd
+ texmf-dist/tex/latex/antt/t1antt.fd
+ texmf-dist/tex/latex/antt/t1anttc.fd
+ texmf-dist/tex/latex/antt/t1anttl.fd
+ texmf-dist/tex/latex/antt/t1anttlc.fd
+ texmf-dist/tex/latex/antt/t2aantt.fd
+ texmf-dist/tex/latex/antt/t2aanttc.fd
+ texmf-dist/tex/latex/antt/t2aanttl.fd
+ texmf-dist/tex/latex/antt/t2aanttlc.fd
+ texmf-dist/tex/latex/antt/t2bantt.fd
+ texmf-dist/tex/latex/antt/t2banttc.fd
+ texmf-dist/tex/latex/antt/t2banttl.fd
+ texmf-dist/tex/latex/antt/t2banttlc.fd
+ texmf-dist/tex/latex/antt/t2cantt.fd
+ texmf-dist/tex/latex/antt/t2canttc.fd
+ texmf-dist/tex/latex/antt/t2canttl.fd
+ texmf-dist/tex/latex/antt/t2canttlc.fd
+ texmf-dist/tex/latex/antt/t5antt.fd
+ texmf-dist/tex/latex/antt/t5anttc.fd
+ texmf-dist/tex/latex/antt/t5anttl.fd
+ texmf-dist/tex/latex/antt/t5anttlc.fd
+ texmf-dist/tex/latex/antt/ts1antt.fd
+ texmf-dist/tex/latex/antt/ts1anttc.fd
+ texmf-dist/tex/latex/antt/ts1anttl.fd
+ texmf-dist/tex/latex/antt/ts1anttlc.fd
+ texmf-dist/tex/plain/antt/antt-math.tex
+ texmf-dist/tex/plain/antt/ofs-8x.tex
+ texmf-dist/tex/plain/antt/pantyk.tex
+catalogue-version 2.08
+catalogue-date 2007-08-24 10:36:49 +0200
+catalogue-ctan /fonts/antt
+catalogue-license gfsl
+
+name anyfontsize
+category Package
+revision 5272
+shortdesc Select any font size in LaTeX.
+longdesc The package allows the to user select any font size (via e.g.
+longdesc \fontsize{...}{...}\selectfont), even those sizes that are not
+longdesc listed in the .fd file. If such a size is requested, LaTeX will
+longdesc search for and select the nearest listed size; anyfontsize will
+longdesc then scale the font to the size actually requested. Similar
+longdesc functionality is available for the CM family, for the EC
+longdesc family, or for either computer modern encoding; the present
+longdesc package generalises the facility.
+docfiles size=511
+ texmf-dist/doc/latex/anyfontsize/README
+runfiles size=3800
+ texmf-dist/tex/latex/anyfontsize/anyfontsize.sty
+catalogue-version
+catalogue-date 2007-02-23 12:17:35 +0100
+catalogue-ctan /macros/latex/contrib/anyfontsize/anyfontsize.sty
+catalogue-license lppl
+
+name anysize
+category Package
+revision 1487
+shortdesc A simple package to set up document margins.
+longdesc This package is considered obsolete; alternatives are the
+longdesc typearea package from the koma-script bundle, or the geometry
+longdesc package.
+docfiles size=7622
+ texmf-dist/doc/latex/anysize/README details="Package Readme"
+ texmf-dist/doc/latex/anysize/anysize.dvi
+ texmf-dist/doc/latex/anysize/anysize.tex
+srcfiles size=940
+ texmf-dist/source/latex/anysize/anysize.bbl
+ texmf-dist/source/latex/anysize/anysize.blg
+runfiles size=2845
+ texmf-dist/tex/latex/anysize/anysize.sty
+catalogue-version
+catalogue-date 2006-12-01 14:16:52 +0100
+catalogue-ctan /macros/latex/contrib/anysize
+catalogue-license pd
+
+name apa
+category Package
+revision 668
+shortdesc American Psychological Association format.
+longdesc A LaTeX class to format text according to the American
+longdesc Psychological Association Publication Manual (5th ed.)
+longdesc specifications for manuscripts or to the APA journal look found
+longdesc in journals like the Journal of Experimental Psychology etc. In
+longdesc addition, it provides regular LaTeX-like output with a few
+longdesc enhancements and APA-motivated changes.
+docfiles size=28977
+ texmf-dist/doc/latex/apa/README
+ texmf-dist/doc/latex/apa/apacls.txt details="Outline of the class:"
+ texmf-dist/doc/latex/apa/apaenum.txt details="Outline of list facilities:"
+ texmf-dist/doc/latex/apa/examples.txt
+srcfiles size=14412
+ texmf-dist/source/latex/apa/CHANGELOG
+ texmf-dist/source/latex/apa/LICENCE
+ texmf-dist/source/latex/apa/endfloat.cfg
+runfiles size=49169
+ texmf-dist/tex/latex/apa/apa.cls
+catalogue-version 1.3.2
+catalogue-date 2006-12-28 13:46:38 +0100
+catalogue-ctan /macros/latex/contrib/apa
+catalogue-license lppl
+
+name apacite
+category Package
+revision 4889
+shortdesc Citation style following the rules of the APA.
+longdesc Apacite is a BibTeX style which closely follows American
+longdesc Psychological Association style citations, providing a very
+longdesc good match. The package follows the the 5th edition of the APA
+longdesc manual, and provides up to date documentation and a test
+longdesc document. The package is compatible with chapterbib and (to
+longdesc some extent) with hyperref (for limits of compatibility, see
+longdesc the manual). The package also includes a means of generating an
+longdesc author index for a document.
+docfiles size=510610
+ texmf-dist/doc/latex/apacite/README details="Package Readme"
+ texmf-dist/doc/latex/apacite/apacite.pdf details="Package documentation"
+srcfiles size=651357
+ texmf-dist/source/latex/apacite/apacite.drv
+ texmf-dist/source/latex/apacite/apacite.dtx
+ texmf-dist/source/latex/apacite/apacite.ins
+runfiles size=486424
+ texmf-dist/bibtex/bib/apacite/apa5ex.bib
+ texmf-dist/bibtex/bst/apacite/apacite.bst
+ texmf-dist/bibtex/bst/apacite/apacitex.bst
+ texmf-dist/tex/latex/apacite/apacdoc.sty
+ texmf-dist/tex/latex/apacite/apacite.sty
+ texmf-dist/tex/latex/apacite/dutch.apc
+ texmf-dist/tex/latex/apacite/english.apc
+ texmf-dist/tex/latex/apacite/finnish.apc
+ texmf-dist/tex/latex/apacite/german.apc
+ texmf-dist/tex/latex/apacite/greek.apc
+ texmf-dist/tex/latex/apacite/ngerman.apc
+ texmf-dist/tex/latex/apacite/norsk.apc
+ texmf-dist/tex/latex/apacite/spanish.apc
+ texmf-dist/tex/latex/apacite/swedish.apc
+catalogue-version 4.0
+catalogue-date 2007-09-05 15:40:11 +0200
+catalogue-ctan /biblio/bibtex/contrib/apacite
+catalogue-license lppl
+
+name apl
+category Package
+revision 4689
+shortdesc Fonts for typesetting APL programs.
+longdesc Includes macros for using the fonts, and the source of the
+longdesc TUGboat paper (and of a ‘second thoughts’ version).
+srcfiles size=97456
+ texmf-dist/source/fonts/apl/apldef.tex
+ texmf-dist/source/fonts/apl/aplstyle.tex
+ texmf-dist/source/fonts/apl/aplverb.tex
+ texmf-dist/source/fonts/apl/clean.pas
+ texmf-dist/source/fonts/apl/convert.pas
+ texmf-dist/source/fonts/apl/fontnotes
+ texmf-dist/source/fonts/apl/ninesize.tex
+ texmf-dist/source/fonts/apl/problems.tex
+ texmf-dist/source/fonts/apl/readme
+ texmf-dist/source/fonts/apl/readme.txt
+ texmf-dist/source/fonts/apl/sample.tex
+ texmf-dist/source/fonts/apl/solutions.tex
+ texmf-dist/source/fonts/apl/tugboat.tex
+ texmf-dist/source/fonts/apl/tugboat2.tex
+ texmf-dist/source/fonts/apl/versatim.tex
+runfiles size=141835
+ texmf-dist/fonts/source/public/apl/cmapl10.mf
+ texmf-dist/fonts/tfm/public/apl/cmapl10.tfm
+ texmf-dist/tex/latex/apl/apl.sty
+ texmf-dist/tex/latex/apl/aplstyle.sty
+catalogue-version
+catalogue-date 2006-12-19 11:27:45 +0100
+catalogue-ctan /fonts/apl
+catalogue-license unknown
+
+name appendix
+category Package
+revision 671
+shortdesc Extra control of appendices.
+longdesc The appendix package provides various ways of formatting the
+longdesc titles of appendices. Also (sub)appendices environments are
+longdesc provided that can be used, for example, for per chapter/section
+longdesc appendices. The word `Appendix' or similar can be prepended to
+longdesc the appendix number for article class documents. The word
+longdesc `Appendices' or similar can be added to the table of contents
+longdesc before the appendices are listed. The word `Appendices' or
+longdesc similar can be typeset as a \part-like heading (page) in the
+longdesc body. An appendices environment is provided which can be used
+longdesc instead of the \appendix command.
+docfiles size=195532
+ texmf-dist/doc/latex/appendix/README details="Package Readme"
+ texmf-dist/doc/latex/appendix/appendix.pdf details="Package documentation"
+srcfiles size=40695
+ texmf-dist/source/latex/appendix/appendix.dtx
+ texmf-dist/source/latex/appendix/appendix.ins
+runfiles size=8664
+ texmf-dist/tex/latex/appendix/appendix.sty
+catalogue-version 1.2
+catalogue-date 2006-11-30 17:01:47 +0100
+catalogue-ctan /macros/latex/contrib/appendix
+catalogue-license lppl
+
+name ar
+category Package
+revision 672
+shortdesc Capital A and capital R ligature for Apsect Ratio.
+longdesc Provides MetaFont files and a LaTeX package for producing and
+longdesc using the uppercase A/R ligature as used by scientists and
+longdesc engineers in the field of aeronautics as the symbol for
+longdesc “aspect ratio”.
+docfiles size=4356
+ texmf-dist/doc/latex/ar/ar.txt details="README"
+runfiles size=47202
+ texmf-dist/fonts/source/public/ar/ar10.mf
+ texmf-dist/fonts/source/public/ar/ar12.mf
+ texmf-dist/fonts/source/public/ar/ar5.mf
+ texmf-dist/fonts/source/public/ar/ar6.mf
+ texmf-dist/fonts/source/public/ar/ar7.mf
+ texmf-dist/fonts/source/public/ar/ar8.mf
+ texmf-dist/fonts/source/public/ar/ar9.mf
+ texmf-dist/fonts/tfm/public/ar/ar10.tfm
+ texmf-dist/fonts/tfm/public/ar/ar12.tfm
+ texmf-dist/fonts/tfm/public/ar/ar5.tfm
+ texmf-dist/fonts/tfm/public/ar/ar6.tfm
+ texmf-dist/fonts/tfm/public/ar/ar7.tfm
+ texmf-dist/fonts/tfm/public/ar/ar8.tfm
+ texmf-dist/fonts/tfm/public/ar/ar9.tfm
+ texmf-dist/tex/latex/ar/ar.sty
+catalogue-version
+catalogue-date 2006-12-29 12:26:56 +0100
+catalogue-ctan /macros/latex/contrib/ar
+catalogue-license dfsg
+
+name arabi
+category Package
+revision 3380
+shortdesc (La)TeX support for Arabic and Farsi, compliant with Babel.
+longdesc The package provides the Arabic and Farsi script support for
+longdesc TeX without the need of any external pre-processor. The bi-
+longdesc directional capability supposes that the user has a TeX engine
+longdesc that knows the four primitives \beginR, \endR, \beginL and
+longdesc \endL. That is the case in both the TeX--XeT and e-TeX engines.
+longdesc Arabi will accept input in several 8-bit encodings, including
+longdesc UTF-8. Arabi can make use of a wide variety of Arabic and Farsi
+longdesc fonts; PDF files generated using Arabi may be searched, and
+longdesc text may be copied from them and pasted elsewhere.
+execute addMap arabi.map
+docfiles size=4124451
+ texmf-dist/doc/latex/arabi/README details="Readme"
+ texmf-dist/doc/latex/arabi/bblopts.cfg
+ texmf-dist/doc/latex/arabi/big2.pdf
+ texmf-dist/doc/latex/arabi/big2.tex
+ texmf-dist/doc/latex/arabi/fontchart_arabic.pdf
+ texmf-dist/doc/latex/arabi/fontchart_farsi.pdf
+ texmf-dist/doc/latex/arabi/lion.pdf
+ texmf-dist/doc/latex/arabi/lppl.tex
+ texmf-dist/doc/latex/arabi/samplebook.css
+ texmf-dist/doc/latex/arabi/samplebook.html
+ texmf-dist/doc/latex/arabi/samplebook.pdf
+ texmf-dist/doc/latex/arabi/samplebook.tex
+ texmf-dist/doc/latex/arabi/test_beamer.pdf
+ texmf-dist/doc/latex/arabi/testplaintex.pdf
+ texmf-dist/doc/latex/arabi/testplaintex.tex
+ texmf-dist/doc/latex/arabi/user_guide.pdf
+ texmf-dist/doc/latex/arabi/user_guide_src.zip
+runfiles size=3674938
+ texmf-dist/fonts/afm/arabi/arabeyes/ae_almohanad_boldItalitalic.afm
+ texmf-dist/fonts/afm/arabi/arabeyes/ae_almohanad_thin.afm
+ texmf-dist/fonts/afm/arabi/arabeyes/ae_almohanad_xxbold.afm
+ texmf-dist/fonts/enc/dvips/arabi/ararabeyes.enc
+ texmf-dist/fonts/enc/dvips/arabi/ardtpnaskh.enc
+ texmf-dist/fonts/enc/dvips/arabi/ardtpthuluth.enc
+ texmf-dist/fonts/enc/dvips/arabi/armonotype.enc
+ texmf-dist/fonts/enc/dvips/arabi/aromega.enc
+ texmf-dist/fonts/enc/dvips/arabi/arsimplified.enc
+ texmf-dist/fonts/enc/dvips/arabi/arunicode.enc
+ texmf-dist/fonts/enc/dvips/arabi/farsitex.enc
+ texmf-dist/fonts/enc/dvips/arabi/farsiwebencoding.enc
+ texmf-dist/fonts/enc/dvips/arabi/frmonotype.enc
+ texmf-dist/fonts/enc/dvips/arabi/frsimple.enc
+ texmf-dist/fonts/enc/dvips/arabi/frsimplified.enc
+ texmf-dist/fonts/enc/dvips/arabi/frunicode.enc
+ texmf-dist/fonts/map/dvips/arabi/arabi.map
+ texmf-dist/fonts/tfm/arabi/arabeyes/ae_almohanad_xxbold.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/ae_alyermook.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/ae_arab.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/ae_tholoth.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aealbattar.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aealmateen.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aealmohanadb.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aealmohanadbolditalic.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aealmothnna.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aealyermook.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aearab.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aecortoba.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aedimnah.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aefurat.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aegranada.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aegraph.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aehani.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aehor.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aekayrawan.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aekhalid.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aemashq.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aemetal.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aenada.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aenagham.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aenice.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aeostorah.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aeouhod.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aepetra.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aerehan.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aesalem.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aeshado.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aesharjah.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aesindibad.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aetarablus.tfm
+ texmf-dist/fonts/tfm/arabi/arabeyes/aetholoth.tfm
+ texmf-dist/fonts/tfm/arabi/farsiweb/homa.tfm
+ texmf-dist/fonts/tfm/arabi/farsiweb/nazli.tfm
+ texmf-dist/fonts/tfm/arabi/farsiweb/nazlib.tfm
+ texmf-dist/fonts/tfm/arabi/farsiweb/nazlibout.tfm
+ texmf-dist/fonts/tfm/arabi/farsiweb/nazliout.tfm
+ texmf-dist/fonts/tfm/arabi/farsiweb/titr.tfm
+ texmf-dist/fonts/tfm/arabi/farsiweb/titrout.tfm
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_albattar.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_almateen.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_almohanad_bold.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_almohanad_boldItalitalic.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_almohanad_thin.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_almohanad_xxbold.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_almothnna.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_alyermook.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_arab.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_cortoba.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_dimnah.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_furat.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_granada.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_graph.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_hani.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_hor.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_kayrawan.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_khalid.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_mashq.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_metal.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_nada.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_nagham.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_nice.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_ostorah.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_ouhod.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_petra.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_rehan.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_salem.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_shado.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_sharjah.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_sindibad.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_tarablus.pfb
+ texmf-dist/fonts/type1/arabi/arabeyes/ae_tholoth.pfb
+ texmf-dist/fonts/type1/arabi/farsiweb/homa.pfb
+ texmf-dist/fonts/type1/arabi/farsiweb/nazli.pfb
+ texmf-dist/fonts/type1/arabi/farsiweb/nazlib.pfb
+ texmf-dist/fonts/type1/arabi/farsiweb/titr.pfb
+ texmf-dist/tex/latex/arabi/8859-6.def
+ texmf-dist/tex/latex/arabi/PPRarabic.sty
+ texmf-dist/tex/latex/arabi/arabi4ht.cfg
+ texmf-dist/tex/latex/arabi/arabic.cfg
+ texmf-dist/tex/latex/arabi/arabic.ldf
+ texmf-dist/tex/latex/arabi/arabicfnt.sty
+ texmf-dist/tex/latex/arabi/arabicore.sty
+ texmf-dist/tex/latex/arabi/arabiftoday.sty
+ texmf-dist/tex/latex/arabi/arabnovowel.sty
+ texmf-dist/tex/latex/arabi/arfonts.sty
+ texmf-dist/tex/latex/arabi/calendrierfpar.sty
+ texmf-dist/tex/latex/arabi/calendrierfpmodified.sty
+ texmf-dist/tex/latex/arabi/cp1256.def
+ texmf-dist/tex/latex/arabi/farsi.ldf
+ texmf-dist/tex/latex/arabi/farsifnt.sty
+ texmf-dist/tex/latex/arabi/fmultico.sty
+ texmf-dist/tex/latex/arabi/fnum.sty
+ texmf-dist/tex/latex/arabi/frfonts.sty
+ texmf-dist/tex/latex/arabi/haparabica.sty
+ texmf-dist/tex/latex/arabi/laeaealbattar.fd
+ texmf-dist/tex/latex/arabi/laeaealmateen.fd
+ texmf-dist/tex/latex/arabi/laeaealmohanadb.fd
+ texmf-dist/tex/latex/arabi/laeaealmothnna.fd
+ texmf-dist/tex/latex/arabi/laeaealyermook.fd
+ texmf-dist/tex/latex/arabi/laeaearab.fd
+ texmf-dist/tex/latex/arabi/laeaecortoba.fd
+ texmf-dist/tex/latex/arabi/laeaedimnah.fd
+ texmf-dist/tex/latex/arabi/laeaefurat.fd
+ texmf-dist/tex/latex/arabi/laeaegranada.fd
+ texmf-dist/tex/latex/arabi/laeaegraph.fd
+ texmf-dist/tex/latex/arabi/laeaehani.fd
+ texmf-dist/tex/latex/arabi/laeaehor.fd
+ texmf-dist/tex/latex/arabi/laeaekayrawan.fd
+ texmf-dist/tex/latex/arabi/laeaekhalid.fd
+ texmf-dist/tex/latex/arabi/laeaemashq.fd
+ texmf-dist/tex/latex/arabi/laeaemetal.fd
+ texmf-dist/tex/latex/arabi/laeaenada.fd
+ texmf-dist/tex/latex/arabi/laeaenagham.fd
+ texmf-dist/tex/latex/arabi/laeaenice.fd
+ texmf-dist/tex/latex/arabi/laeaeostorah.fd
+ texmf-dist/tex/latex/arabi/laeaeouhod.fd
+ texmf-dist/tex/latex/arabi/laeaepetra.fd
+ texmf-dist/tex/latex/arabi/laeaerehan.fd
+ texmf-dist/tex/latex/arabi/laeaesalem.fd
+ texmf-dist/tex/latex/arabi/laeaeshado.fd
+ texmf-dist/tex/latex/arabi/laeaesharjah.fd
+ texmf-dist/tex/latex/arabi/laeaesindibad.fd
+ texmf-dist/tex/latex/arabi/laeaetarablus.fd
+ texmf-dist/tex/latex/arabi/laeaetholoth.fd
+ texmf-dist/tex/latex/arabi/laeandlso.fd
+ texmf-dist/tex/latex/arabi/laeararial.fd
+ texmf-dist/tex/latex/arabi/laearcour.fd
+ texmf-dist/tex/latex/arabi/laearomega.fd
+ texmf-dist/tex/latex/arabi/laearsimpo.fd
+ texmf-dist/tex/latex/arabi/laeartimes.fd
+ texmf-dist/tex/latex/arabi/laeasv.fd
+ texmf-dist/tex/latex/arabi/laecmr.fd
+ texmf-dist/tex/latex/arabi/laecmss.fd
+ texmf-dist/tex/latex/arabi/laecmtt.fd
+ texmf-dist/tex/latex/arabi/laedthuluth.fd
+ texmf-dist/tex/latex/arabi/laedtpn.fd
+ texmf-dist/tex/latex/arabi/laedtpnsp.fd
+ texmf-dist/tex/latex/arabi/laeenc.def
+ texmf-dist/tex/latex/arabi/laeenc.dfu
+ texmf-dist/tex/latex/arabi/laekacstbook.fd
+ texmf-dist/tex/latex/arabi/laemaghribi.fd
+ texmf-dist/tex/latex/arabi/laenaskhi.fd
+ texmf-dist/tex/latex/arabi/laereqaa.fd
+ texmf-dist/tex/latex/arabi/laetraditionalarabic.fd
+ texmf-dist/tex/latex/arabi/lagally.sty
+ texmf-dist/tex/latex/arabi/lfecmr.fd
+ texmf-dist/tex/latex/arabi/lfecmss.fd
+ texmf-dist/tex/latex/arabi/lfecmtt.fd
+ texmf-dist/tex/latex/arabi/lfeelham.fd
+ texmf-dist/tex/latex/arabi/lfeenc.def
+ texmf-dist/tex/latex/arabi/lfefandlso.fd
+ texmf-dist/tex/latex/arabi/lfefarsismpl.fd
+ texmf-dist/tex/latex/arabi/lfefrarial.fd
+ texmf-dist/tex/latex/arabi/lfefrtimes.fd
+ texmf-dist/tex/latex/arabi/lfeftraditionalarabic.fd
+ texmf-dist/tex/latex/arabi/lfehoma.fd
+ texmf-dist/tex/latex/arabi/lfekoodak.fd
+ texmf-dist/tex/latex/arabi/lfenazli.fd
+ texmf-dist/tex/latex/arabi/lfenazliout.fd
+ texmf-dist/tex/latex/arabi/lferoya.fd
+ texmf-dist/tex/latex/arabi/lfesmplarabic.fd
+ texmf-dist/tex/latex/arabi/lfeterafik.fd
+ texmf-dist/tex/latex/arabi/lfetitr.fd
+ texmf-dist/tex/latex/arabi/lfetitrout.fd
+ texmf-dist/tex/latex/arabi/mosq.def
+ texmf-dist/tex/latex/arabi/poetry.sty
+ texmf-dist/tex/latex/arabi/puenc-ar.def
+ texmf-dist/tex/latex/arabi/transcmr.fd
+ texmf-dist/tex/latex/arabi/translit.sty
+catalogue-version 1.1
+catalogue-date 2007-02-23 23:22:37 +0100
+catalogue-ctan /language/arabic/arabi
+catalogue-license lppl
+
+name arabtex
+category Package
+revision 1788
+shortdesc Macros and fonts for typesetting Arabic.
+longdesc ArabTeX is a package extending the capabilities of TeX/LaTeX to
+longdesc generate Arabic and Hebrew text. Input may be in ASCII
+longdesc transliteration or other encodings (including UTF-8); output
+longdesc may be Arabic, Hebrew, or any of several languages that use the
+longdesc Arabic script. ArabTeX consists of a TeX macro package and
+longdesc Arabic and Hebrew fonts (provided both in Metafont format and
+longdesc Adobe Type 1). The Arabic font is presently only available in
+longdesc the Naskhi style. ArabTeX will run with Plain TeX and also with
+longdesc LaTeX.
+execute addMixedMap arabtex.map
+docfiles size=468499
+ texmf-dist/doc/latex/arabtex/announce.txt
+ texmf-dist/doc/latex/arabtex/arabtex.doc
+ texmf-dist/doc/latex/arabtex/arabtex.faq
+ texmf-dist/doc/latex/arabtex/arabtex.gif
+ texmf-dist/doc/latex/arabtex/arabtex.htm
+ texmf-dist/doc/latex/arabtex/arabtex1.htm
+ texmf-dist/doc/latex/arabtex/arabtex2.htm
+ texmf-dist/doc/latex/arabtex/changes.htm
+ texmf-dist/doc/latex/arabtex/changes.txt
+ texmf-dist/doc/latex/arabtex/changes2.txt
+ texmf-dist/doc/latex/arabtex/chg311.htm
+ texmf-dist/doc/latex/arabtex/chg311a.htm
+ texmf-dist/doc/latex/arabtex/chg311b.htm
+ texmf-dist/doc/latex/arabtex/chg311c.htm
+ texmf-dist/doc/latex/arabtex/chg311d.htm
+ texmf-dist/doc/latex/arabtex/guha.ps
+ texmf-dist/doc/latex/arabtex/hebrew.305
+ texmf-dist/doc/latex/arabtex/install.txt
+ texmf-dist/doc/latex/arabtex/lppl.txt
+ texmf-dist/doc/latex/arabtex/malay.ps
+ texmf-dist/doc/latex/arabtex/manifest.txt
+ texmf-dist/doc/latex/arabtex/miktex.htm
+ texmf-dist/doc/latex/arabtex/miktex.mai
+ texmf-dist/doc/latex/arabtex/new1.gif
+ texmf-dist/doc/latex/arabtex/new2.gif
+ texmf-dist/doc/latex/arabtex/readme.305
+ texmf-dist/doc/latex/arabtex/readme.txt details="Readme"
+ texmf-dist/doc/latex/arabtex/refer.htm
+ texmf-dist/doc/latex/arabtex/sindhi.ps
+ texmf-dist/doc/latex/arabtex/tetex.txt
+ texmf-dist/doc/latex/arabtex/uighur.ps
+ texmf-dist/doc/latex/arabtex/xarbsymb.dat
+runfiles size=931592
+ texmf-dist/fonts/map/dvips/arabtex/arabtex.map
+ texmf-dist/fonts/source/public/arabtex/arabsymb.mf
+ texmf-dist/fonts/source/public/arabtex/hcaption.mf
+ texmf-dist/fonts/source/public/arabtex/hcbase.mf
+ texmf-dist/fonts/source/public/arabtex/hclassic.mf
+ texmf-dist/fonts/source/public/arabtex/nash.mf
+ texmf-dist/fonts/source/public/arabtex/nash14.mf
+ texmf-dist/fonts/source/public/arabtex/nash14bf.mf
+ texmf-dist/fonts/source/public/arabtex/nashbase.mf
+ texmf-dist/fonts/source/public/arabtex/nashchar.mf
+ texmf-dist/fonts/source/public/arabtex/nashdia.mf
+ texmf-dist/fonts/source/public/arabtex/nashdig.mf
+ texmf-dist/fonts/source/public/arabtex/nashlig.mf
+ texmf-dist/fonts/source/public/arabtex/nashspec.mf
+ texmf-dist/fonts/source/public/arabtex/xarbsymb.mf
+ texmf-dist/fonts/source/public/arabtex/xnsh.mf
+ texmf-dist/fonts/source/public/arabtex/xnsh14.mf
+ texmf-dist/fonts/source/public/arabtex/xnsh14bf.mf
+ texmf-dist/fonts/source/public/arabtex/xnshbase.mf
+ texmf-dist/fonts/source/public/arabtex/xnshchar.mf
+ texmf-dist/fonts/source/public/arabtex/xnshdia.mf
+ texmf-dist/fonts/source/public/arabtex/xnshdig.mf
+ texmf-dist/fonts/source/public/arabtex/xnshlig.mf
+ texmf-dist/fonts/source/public/arabtex/xnshspec.mf
+ texmf-dist/fonts/tfm/public/arabtex/hcaption.tfm
+ texmf-dist/fonts/tfm/public/arabtex/hclassic.tfm
+ texmf-dist/fonts/tfm/public/arabtex/nash14.tfm
+ texmf-dist/fonts/tfm/public/arabtex/nash14bf.tfm
+ texmf-dist/fonts/tfm/public/arabtex/xnsh14.tfm
+ texmf-dist/fonts/tfm/public/arabtex/xnsh14bf.tfm
+ texmf-dist/fonts/tfm/public/arabtex/yarborn.tfm
+ texmf-dist/fonts/type1/public/arabtex/hcaption-4.pfb
+ texmf-dist/fonts/type1/public/arabtex/hclassic-4.pfb
+ texmf-dist/fonts/type1/public/arabtex/xnsh14.pfb
+ texmf-dist/fonts/type1/public/arabtex/xnsh14bf.pfb
+ texmf-dist/tex/latex/arabtex/Uxnsh.fd
+ texmf-dist/tex/latex/arabtex/abidir.sty
+ texmf-dist/tex/latex/arabtex/abjad.sty
+ texmf-dist/tex/latex/arabtex/aboxes.sty
+ texmf-dist/tex/latex/arabtex/acjk.sty
+ texmf-dist/tex/latex/arabtex/acmd.sty
+ texmf-dist/tex/latex/arabtex/aconfig.sty
+ texmf-dist/tex/latex/arabtex/aedpatch.sty
+ texmf-dist/tex/latex/arabtex/afonts.sty
+ texmf-dist/tex/latex/arabtex/afonts0.sty
+ texmf-dist/tex/latex/arabtex/afonts1.sty
+ texmf-dist/tex/latex/arabtex/afonts2.sty
+ texmf-dist/tex/latex/arabtex/afoot.sty
+ texmf-dist/tex/latex/arabtex/alatex.sty
+ texmf-dist/tex/latex/arabtex/aligs.sty
+ texmf-dist/tex/latex/arabtex/alists.sty
+ texmf-dist/tex/latex/arabtex/alocal.sty
+ texmf-dist/tex/latex/arabtex/altxext.sty
+ texmf-dist/tex/latex/arabtex/amac.sty
+ texmf-dist/tex/latex/arabtex/aoutput.sty
+ texmf-dist/tex/latex/arabtex/aparse.sty
+ texmf-dist/tex/latex/arabtex/apatch.sty
+ texmf-dist/tex/latex/arabtex/arababel.sty
+ texmf-dist/tex/latex/arabtex/arabart.cls
+ texmf-dist/tex/latex/arabtex/arabaux.sty
+ texmf-dist/tex/latex/arabtex/arabbook.cls
+ texmf-dist/tex/latex/arabtex/arabchrs.sty
+ texmf-dist/tex/latex/arabtex/arabext.sty
+ texmf-dist/tex/latex/arabtex/arabrep.cls
+ texmf-dist/tex/latex/arabtex/arabrep1.cls
+ texmf-dist/tex/latex/arabtex/arabskel.sty
+ texmf-dist/tex/latex/arabtex/arabsymb.sty
+ texmf-dist/tex/latex/arabtex/arabtex.sty
+ texmf-dist/tex/latex/arabtex/arabtex.tex
+ texmf-dist/tex/latex/arabtex/arabtoks.sty
+ texmf-dist/tex/latex/arabtex/arwindoc.tex
+ texmf-dist/tex/latex/arabtex/ascan.sty
+ texmf-dist/tex/latex/arabtex/asect.sty
+ texmf-dist/tex/latex/arabtex/asize10.clo
+ texmf-dist/tex/latex/arabtex/asize11.clo
+ texmf-dist/tex/latex/arabtex/asize12.clo
+ texmf-dist/tex/latex/arabtex/asmo449.sty
+ texmf-dist/tex/latex/arabtex/asmo449a.sty
+ texmf-dist/tex/latex/arabtex/atabg.sty
+ texmf-dist/tex/latex/arabtex/atrans.sty
+ texmf-dist/tex/latex/arabtex/awrite.sty
+ texmf-dist/tex/latex/arabtex/bhs.sty
+ texmf-dist/tex/latex/arabtex/bhslabel.sty
+ texmf-dist/tex/latex/arabtex/buck.sty
+ texmf-dist/tex/latex/arabtex/captions.def
+ texmf-dist/tex/latex/arabtex/cp1256.sty
+ texmf-dist/tex/latex/arabtex/etrans.sty
+ texmf-dist/tex/latex/arabtex/gedalin.sty
+ texmf-dist/tex/latex/arabtex/guha.tex
+ texmf-dist/tex/latex/arabtex/hebchrs.sty
+ texmf-dist/tex/latex/arabtex/hebsymb.sty
+ texmf-dist/tex/latex/arabtex/hebtex.sty
+ texmf-dist/tex/latex/arabtex/hebtex.tex
+ texmf-dist/tex/latex/arabtex/hecmd.sty
+ texmf-dist/tex/latex/arabtex/hefonts.sty
+ texmf-dist/tex/latex/arabtex/hefonts0.sty
+ texmf-dist/tex/latex/arabtex/hefonts1.sty
+ texmf-dist/tex/latex/arabtex/hefonts2.sty
+ texmf-dist/tex/latex/arabtex/heparse.sty
+ texmf-dist/tex/latex/arabtex/hepatch.sty
+ texmf-dist/tex/latex/arabtex/hescan.sty
+ texmf-dist/tex/latex/arabtex/hetrans.sty
+ texmf-dist/tex/latex/arabtex/hewrite.sty
+ texmf-dist/tex/latex/arabtex/hmac.sty
+ texmf-dist/tex/latex/arabtex/isiri.sty
+ texmf-dist/tex/latex/arabtex/iso88596.sty
+ texmf-dist/tex/latex/arabtex/kashmiri.tex
+ texmf-dist/tex/latex/arabtex/ligtable.tex
+ texmf-dist/tex/latex/arabtex/malay.tex
+ texmf-dist/tex/latex/arabtex/nashbf.sty
+ texmf-dist/tex/latex/arabtex/omar.tex
+ texmf-dist/tex/latex/arabtex/raw.sty
+ texmf-dist/tex/latex/arabtex/saw.sty
+ texmf-dist/tex/latex/arabtex/sindhi.tex
+ texmf-dist/tex/latex/arabtex/sotoku.sty
+ texmf-dist/tex/latex/arabtex/twoblks.sty
+ texmf-dist/tex/latex/arabtex/uheb.fd
+ texmf-dist/tex/latex/arabtex/uighur.tex
+ texmf-dist/tex/latex/arabtex/unash.fd
+ texmf-dist/tex/latex/arabtex/utf8.sty
+ texmf-dist/tex/latex/arabtex/utfcode.sty
+ texmf-dist/tex/latex/arabtex/verses.sty
+ texmf-dist/tex/latex/arabtex/witbhs.sty
+ texmf-dist/tex/latex/arabtex/xarbskel.sty
+ texmf-dist/tex/latex/arabtex/xarbsymb.sty
+ texmf-dist/tex/latex/arabtex/yiddish.sty
+catalogue-version 3.11s
+catalogue-date 2007-05-24 10:59:21 +0200
+catalogue-ctan /language/arabic/arabtex
+catalogue-license lppl
+
+name arabxetex
+category Package
+revision 4277
+shortdesc An ArabTeX-like interface for XeLaTeX.
+longdesc ArabXeTeX provides a convenient ArabTeX-like user-interface for
+longdesc typesetting languages using the Arabic script in XeLaTeX, with
+longdesc flexible access to font features. Input in ArabTeX notation can
+longdesc be set in three different vocalization modes or in roman
+longdesc transliteration. Direct UTF-8 input is also supported. The
+longdesc parsing and converting of ArabTeX input to Unicode is done by
+longdesc means of TECkit mappings. Version 1.0 provides support for
+longdesc Arabic, Maghribi Arabic, Farsi (Persian), Urdu, Sindhi,
+longdesc Kashmiri, Ottoman Turkish, Kurdish, Jawi (Malay) and Uighur.
+longdesc The documentation (not yet complete) covers topics such as
+longdesc typesetting the Holy Quran, typesetting bidirectional critical
+longdesc editions (with ednotes), and information on various recommended
+longdesc OpenType fonts for the Arabic script and for transliterating
+longdesc Oriental languages.
+docfiles size=591012
+ texmf-dist/doc/xelatex/arabxetex/README details="Readme"
+ texmf-dist/doc/xelatex/arabxetex/arabtex-kurdish.maps
+ texmf-dist/doc/xelatex/arabxetex/arabtex-uighur.maps
+ texmf-dist/doc/xelatex/arabxetex/arabtex.maps
+ texmf-dist/doc/xelatex/arabxetex/arabxetex.dtx
+ texmf-dist/doc/xelatex/arabxetex/arabxetex.pdf
+ texmf-dist/doc/xelatex/arabxetex/ednotes_example.pdf
+ texmf-dist/doc/xelatex/arabxetex/ednotes_example.tex
+ texmf-dist/doc/xelatex/arabxetex/makemaps.pl
+runfiles size=1178795
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-trans.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-farsi-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-farsi-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-farsi-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-farsi-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-farsi-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-farsi-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-kashmiri-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-kashmiri-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-kashmiri-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-kashmiri-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-kashmiri-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-kashmiri-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-kurdish.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-kurdish.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-maghribi-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-maghribi-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-maghribi-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-maghribi-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-maghribi-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-maghribi-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-malay-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-malay-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-malay-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-malay-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-malay-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-malay-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-pashto-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-pashto-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-pashto-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-pashto-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-pashto-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-pashto-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-sindhi-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-sindhi-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-sindhi-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-sindhi-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-sindhi-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-sindhi-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-turk-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-turk-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-turk-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-turk-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-turk-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-turk-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-uighur.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-uighur.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-urdu-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-urdu-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-urdu-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-urdu-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-urdu-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-urdu-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2alif-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-farsi-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-farsi-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-farsi-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-farsi-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-farsi-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-farsi-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-kashmiri-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-kashmiri-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-kashmiri-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-kashmiri-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-kashmiri-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-kashmiri-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-kurdish.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-kurdish.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-maghribi-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-maghribi-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-maghribi-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-maghribi-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-maghribi-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-maghribi-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-malay-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-malay-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-malay-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-malay-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-malay-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-malay-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-pashto-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-pashto-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-pashto-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-pashto-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-pashto-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-pashto-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-sindhi-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-sindhi-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-sindhi-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-sindhi-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-sindhi-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-sindhi-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-turk-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-turk-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-turk-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-turk-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-turk-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-turk-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-uighur.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-uighur.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-urdu-fullvoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-urdu-fullvoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-urdu-novoc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-urdu-novoc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-urdu-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-urdu-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-voc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fdf2noalif-voc.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-trans.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-trans-loc.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-trans.map
+ texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-trans.map
+ texmf-dist/tex/xelatex/arabxetex/arabxetex.sty
+catalogue-version v1.1.1
+catalogue-date 2007-11-10 20:00:31 +0100
+catalogue-ctan /macros/xetex/latex/arabxetex
+catalogue-license lppl
+
+name archaic
+category Package
+revision 2101
+shortdesc A collection of archaic fonts.
+longdesc The collection contains fonts to represent Aramaic, Cypriot,
+longdesc Etruscan, Greek of the 6th and 4th centuries BCE, Egyptian
+longdesc hieroglyphics, Linear A, Linear B, Nabatean old Persian, the
+longdesc Phaistos disc, Phoenician, proto-Semitic, runic, South Arabian
+longdesc Ugaritic and Viking scripts. The bundle also includes a small
+longdesc font for use in phonetic transcription of the archaic writings.
+longdesc The bundle's own directory includes a font installation map
+longdesc file for the whole collection.
+execute addMap archaicprw.map
+docfiles size=3763400
+ texmf-dist/doc/fonts/archaic/README.PRW details="A description of Peter Wilson's contribution"
+ texmf-dist/doc/fonts/archaic/aramaic-README
+ texmf-dist/doc/fonts/archaic/aramaic.pdf
+ texmf-dist/doc/fonts/archaic/asamples.pdf details="Collection of font samples"
+ texmf-dist/doc/fonts/archaic/asamples.tex
+ texmf-dist/doc/fonts/archaic/cypriot-README
+ texmf-dist/doc/fonts/archaic/cypriot.pdf
+ texmf-dist/doc/fonts/archaic/etruscan-README
+ texmf-dist/doc/fonts/archaic/etruscan.pdf
+ texmf-dist/doc/fonts/archaic/greek4cbc-README
+ texmf-dist/doc/fonts/archaic/greek4cbc-trygivbc.pdf
+ texmf-dist/doc/fonts/archaic/greek4cbc-trygivbc.tex
+ texmf-dist/doc/fonts/archaic/greek4cbc.pdf
+ texmf-dist/doc/fonts/archaic/greek4cbc/givbc10.mf
+ texmf-dist/doc/fonts/archaic/greek6cbc-README
+ texmf-dist/doc/fonts/archaic/greek6cbc-trygvibc.pdf
+ texmf-dist/doc/fonts/archaic/greek6cbc-trygvibc.tex
+ texmf-dist/doc/fonts/archaic/greek6cbc.pdf
+ texmf-dist/doc/fonts/archaic/greek6cbc/gvibc10.mf
+ texmf-dist/doc/fonts/archaic/hieroglf-README
+ texmf-dist/doc/fonts/archaic/hieroglf-trypmhg.pdf
+ texmf-dist/doc/fonts/archaic/hieroglf-trypmhg.tex
+ texmf-dist/doc/fonts/archaic/hieroglf.pdf
+ texmf-dist/doc/fonts/archaic/linearb-README
+ texmf-dist/doc/fonts/archaic/linearb.pdf
+ texmf-dist/doc/fonts/archaic/nabatean-README
+ texmf-dist/doc/fonts/archaic/nabatean.pdf
+ texmf-dist/doc/fonts/archaic/oands-README
+ texmf-dist/doc/fonts/archaic/oands.pdf
+ texmf-dist/doc/fonts/archaic/oldprsn-README
+ texmf-dist/doc/fonts/archaic/oldprsn.pdf
+ texmf-dist/doc/fonts/archaic/oldprsn/copsn10.mf
+ texmf-dist/doc/fonts/archaic/phoenician-README
+ texmf-dist/doc/fonts/archaic/phoenician-tryphnc.pdf
+ texmf-dist/doc/fonts/archaic/phoenician-tryphnc.tex
+ texmf-dist/doc/fonts/archaic/phoenician.pdf
+ texmf-dist/doc/fonts/archaic/protosem-README
+ texmf-dist/doc/fonts/archaic/protosem.pdf
+ texmf-dist/doc/fonts/archaic/runic-README
+ texmf-dist/doc/fonts/archaic/runic.pdf
+ texmf-dist/doc/fonts/archaic/sarabian-README
+ texmf-dist/doc/fonts/archaic/sarabian.pdf
+ texmf-dist/doc/fonts/archaic/sarabian/sarab10.mf
+ texmf-dist/doc/fonts/archaic/tryaramaic.pdf
+ texmf-dist/doc/fonts/archaic/tryaramaic.tex
+ texmf-dist/doc/fonts/archaic/trycypriot.pdf
+ texmf-dist/doc/fonts/archaic/trycypriot.tex
+ texmf-dist/doc/fonts/archaic/tryetruscan.pdf
+ texmf-dist/doc/fonts/archaic/tryetruscan.tex
+ texmf-dist/doc/fonts/archaic/trylinearb.pdf
+ texmf-dist/doc/fonts/archaic/trylinearb.tex
+ texmf-dist/doc/fonts/archaic/trynabatean.pdf
+ texmf-dist/doc/fonts/archaic/trynabatean.tex
+ texmf-dist/doc/fonts/archaic/tryoands.pdf
+ texmf-dist/doc/fonts/archaic/tryoands.tex
+ texmf-dist/doc/fonts/archaic/tryoldprsn.pdf
+ texmf-dist/doc/fonts/archaic/tryoldprsn.tex
+ texmf-dist/doc/fonts/archaic/tryprotosem.pdf
+ texmf-dist/doc/fonts/archaic/tryprotosem.tex
+ texmf-dist/doc/fonts/archaic/tryrunic.pdf
+ texmf-dist/doc/fonts/archaic/tryrunic.tex
+ texmf-dist/doc/fonts/archaic/trysarabian.pdf
+ texmf-dist/doc/fonts/archaic/trysarabian.tex
+ texmf-dist/doc/fonts/archaic/tryugarite.pdf
+ texmf-dist/doc/fonts/archaic/tryugarite.tex
+ texmf-dist/doc/fonts/archaic/ugarite-README
+ texmf-dist/doc/fonts/archaic/ugarite.pdf
+ texmf-dist/doc/fonts/archaic/viking-README
+ texmf-dist/doc/fonts/archaic/viking-try_vik.tex
+ texmf-dist/doc/fonts/archaic/viking/vik10.mf
+ texmf-dist/doc/fonts/archaic/viking/vikglyph.mf
+ texmf-dist/doc/fonts/archaic/viking/viktitle.mf
+srcfiles size=1013542
+ texmf-dist/source/fonts/archaic/aramaic.dtx
+ texmf-dist/source/fonts/archaic/aramaic.ins
+ texmf-dist/source/fonts/archaic/cypriot.dtx
+ texmf-dist/source/fonts/archaic/cypriot.ins
+ texmf-dist/source/fonts/archaic/etruscan.dtx
+ texmf-dist/source/fonts/archaic/etruscan.ins
+ texmf-dist/source/fonts/archaic/greek4cbc.dtx
+ texmf-dist/source/fonts/archaic/greek4cbc.ins
+ texmf-dist/source/fonts/archaic/greek6cbc.dtx
+ texmf-dist/source/fonts/archaic/greek6cbc.ins
+ texmf-dist/source/fonts/archaic/hieroglf.dtx
+ texmf-dist/source/fonts/archaic/hieroglf.ins
+ texmf-dist/source/fonts/archaic/linearb.dtx
+ texmf-dist/source/fonts/archaic/linearb.ins
+ texmf-dist/source/fonts/archaic/nabatean.dtx
+ texmf-dist/source/fonts/archaic/nabatean.ins
+ texmf-dist/source/fonts/archaic/oands.dtx
+ texmf-dist/source/fonts/archaic/oands.ins
+ texmf-dist/source/fonts/archaic/oldprsn.dtx
+ texmf-dist/source/fonts/archaic/oldprsn.ins
+ texmf-dist/source/fonts/archaic/phoenician.dtx
+ texmf-dist/source/fonts/archaic/phoenician.ins
+ texmf-dist/source/fonts/archaic/protosem.dtx
+ texmf-dist/source/fonts/archaic/protosem.ins
+ texmf-dist/source/fonts/archaic/runic.dtx
+ texmf-dist/source/fonts/archaic/runic.ins
+ texmf-dist/source/fonts/archaic/sarabian.dtx
+ texmf-dist/source/fonts/archaic/sarabian.ins
+ texmf-dist/source/fonts/archaic/ugarite.dtx
+ texmf-dist/source/fonts/archaic/ugarite.ins
+ texmf-dist/source/fonts/archaic/viking.dtx
+ texmf-dist/source/fonts/archaic/viking.ins
+runfiles size=728133
+ texmf-dist/fonts/afm/public/archaic/aram10.afm
+ texmf-dist/fonts/afm/public/archaic/copsn10.afm
+ texmf-dist/fonts/afm/public/archaic/cugar10.afm
+ texmf-dist/fonts/afm/public/archaic/cypr10.afm
+ texmf-dist/fonts/afm/public/archaic/etr10.afm
+ texmf-dist/fonts/afm/public/archaic/fut10.afm
+ texmf-dist/fonts/afm/public/archaic/givbc10.afm
+ texmf-dist/fonts/afm/public/archaic/gvibc10.afm
+ texmf-dist/fonts/afm/public/archaic/linb10.afm
+ texmf-dist/fonts/afm/public/archaic/nab10.afm
+ texmf-dist/fonts/afm/public/archaic/oandsi10.afm
+ texmf-dist/fonts/afm/public/archaic/oandsu10.afm
+ texmf-dist/fonts/afm/public/archaic/phnc10.afm
+ texmf-dist/fonts/afm/public/archaic/pmhg.afm
+ texmf-dist/fonts/afm/public/archaic/proto10.afm
+ texmf-dist/fonts/afm/public/archaic/sarab10.afm
+ texmf-dist/fonts/map/dvips/archaic/aramaic.map
+ texmf-dist/fonts/map/dvips/archaic/archaicprw.map
+ texmf-dist/fonts/map/dvips/archaic/cypriot.map
+ texmf-dist/fonts/map/dvips/archaic/etruscan.map
+ texmf-dist/fonts/map/dvips/archaic/fut10.map
+ texmf-dist/fonts/map/dvips/archaic/greek4cbc.map
+ texmf-dist/fonts/map/dvips/archaic/greek6cbc.map
+ texmf-dist/fonts/map/dvips/archaic/hieroglf.map
+ texmf-dist/fonts/map/dvips/archaic/linearb.map
+ texmf-dist/fonts/map/dvips/archaic/nabatean.map
+ texmf-dist/fonts/map/dvips/archaic/oands.map
+ texmf-dist/fonts/map/dvips/archaic/oldprsn.map
+ texmf-dist/fonts/map/dvips/archaic/phoenician.map
+ texmf-dist/fonts/map/dvips/archaic/protosem.map
+ texmf-dist/fonts/map/dvips/archaic/sarabian.map
+ texmf-dist/fonts/map/dvips/archaic/ugarite.map
+ texmf-dist/fonts/tfm/archaic/aram10.tfm
+ texmf-dist/fonts/tfm/archaic/copsn10.tfm
+ texmf-dist/fonts/tfm/archaic/cugar10.tfm
+ texmf-dist/fonts/tfm/archaic/cypr10.tfm
+ texmf-dist/fonts/tfm/archaic/etr10.tfm
+ texmf-dist/fonts/tfm/archaic/fut10.tfm
+ texmf-dist/fonts/tfm/archaic/givbc10.tfm
+ texmf-dist/fonts/tfm/archaic/gvibc10.tfm
+ texmf-dist/fonts/tfm/archaic/linb10.tfm
+ texmf-dist/fonts/tfm/archaic/nab10.tfm
+ texmf-dist/fonts/tfm/archaic/oandsi10.tfm
+ texmf-dist/fonts/tfm/archaic/oandsu10.tfm
+ texmf-dist/fonts/tfm/archaic/phnc10.tfm
+ texmf-dist/fonts/tfm/archaic/pmhg.tfm
+ texmf-dist/fonts/tfm/archaic/proto10.tfm
+ texmf-dist/fonts/tfm/archaic/sarab10.tfm
+ texmf-dist/fonts/type1/public/archaic/aram10.pfb
+ texmf-dist/fonts/type1/public/archaic/copsn10.pfb
+ texmf-dist/fonts/type1/public/archaic/cugar10.pfb
+ texmf-dist/fonts/type1/public/archaic/cypr10.pfb
+ texmf-dist/fonts/type1/public/archaic/etr10.pfb
+ texmf-dist/fonts/type1/public/archaic/fut10.pfb
+ texmf-dist/fonts/type1/public/archaic/givbc10.pfb
+ texmf-dist/fonts/type1/public/archaic/gvibc10.pfb
+ texmf-dist/fonts/type1/public/archaic/linb10.pfb
+ texmf-dist/fonts/type1/public/archaic/nab10.pfb
+ texmf-dist/fonts/type1/public/archaic/oandsi10.pfb
+ texmf-dist/fonts/type1/public/archaic/oandsu10.pfb
+ texmf-dist/fonts/type1/public/archaic/phnc10.pfb
+ texmf-dist/fonts/type1/public/archaic/pmhg.pfb
+ texmf-dist/fonts/type1/public/archaic/proto10.pfb
+ texmf-dist/fonts/type1/public/archaic/sarab10.pfb
+ texmf-dist/tex/latex/archaic/aramaic.sty
+ texmf-dist/tex/latex/archaic/cypriot.sty
+ texmf-dist/tex/latex/archaic/etruscan.sty
+ texmf-dist/tex/latex/archaic/greek4cbc.sty
+ texmf-dist/tex/latex/archaic/greek6cbc.sty
+ texmf-dist/tex/latex/archaic/hieroglf.sty
+ texmf-dist/tex/latex/archaic/linearb.sty
+ texmf-dist/tex/latex/archaic/nabatean.sty
+ texmf-dist/tex/latex/archaic/oands.sty
+ texmf-dist/tex/latex/archaic/oldprsn.sty
+ texmf-dist/tex/latex/archaic/ot1aram.fd
+ texmf-dist/tex/latex/archaic/ot1copsn.fd
+ texmf-dist/tex/latex/archaic/ot1cugar.fd
+ texmf-dist/tex/latex/archaic/ot1cypr.fd
+ texmf-dist/tex/latex/archaic/ot1etr.fd
+ texmf-dist/tex/latex/archaic/ot1fut.fd
+ texmf-dist/tex/latex/archaic/ot1givbc.fd
+ texmf-dist/tex/latex/archaic/ot1gvibc.fd
+ texmf-dist/tex/latex/archaic/ot1nab.fd
+ texmf-dist/tex/latex/archaic/ot1oands.fd
+ texmf-dist/tex/latex/archaic/ot1phnc.fd
+ texmf-dist/tex/latex/archaic/ot1pmhg.fd
+ texmf-dist/tex/latex/archaic/ot1proto.fd
+ texmf-dist/tex/latex/archaic/ot1sarab.fd
+ texmf-dist/tex/latex/archaic/ot1vik.fd
+ texmf-dist/tex/latex/archaic/phoenician.sty
+ texmf-dist/tex/latex/archaic/protosem.sty
+ texmf-dist/tex/latex/archaic/runic.sty
+ texmf-dist/tex/latex/archaic/sarabian.sty
+ texmf-dist/tex/latex/archaic/t1aram.fd
+ texmf-dist/tex/latex/archaic/t1copsn.fd
+ texmf-dist/tex/latex/archaic/t1cugar.fd
+ texmf-dist/tex/latex/archaic/t1cypr.fd
+ texmf-dist/tex/latex/archaic/t1etr.fd
+ texmf-dist/tex/latex/archaic/t1fut.fd
+ texmf-dist/tex/latex/archaic/t1givbc.fd
+ texmf-dist/tex/latex/archaic/t1gvibc.fd
+ texmf-dist/tex/latex/archaic/t1linb.fd
+ texmf-dist/tex/latex/archaic/t1nab.fd
+ texmf-dist/tex/latex/archaic/t1oands.fd
+ texmf-dist/tex/latex/archaic/t1phnc.fd
+ texmf-dist/tex/latex/archaic/t1pmhg.fd
+ texmf-dist/tex/latex/archaic/t1proto.fd
+ texmf-dist/tex/latex/archaic/t1sarab.fd
+ texmf-dist/tex/latex/archaic/t1vik.fd
+ texmf-dist/tex/latex/archaic/ugarite.sty
+ texmf-dist/tex/latex/archaic/viking.sty
+catalogue-version
+catalogue-date 2006-11-08 11:10:08 +0100
+catalogue-ctan /fonts/archaic
+catalogue-license lppl
+
+name arcs
+category Package
+revision 675
+shortdesc Draw arcs over and under text
+longdesc The package provides two commands for placing an arc over
+longdesc (\overarc) or under (\underarc) a piece of text. (The text may
+longdesc be up to three letters long.) The commands generate an \hbox,
+longdesc and may be used both in text and in maths formulae.
+docfiles size=82747
+ texmf-dist/doc/latex/arcs/README details="Package README"
+ texmf-dist/doc/latex/arcs/arcs.pdf details="Package documentation"
+ texmf-dist/doc/latex/arcs/arcstest.tex
+srcfiles size=5806
+ texmf-dist/source/latex/arcs/arcs.dtx
+ texmf-dist/source/latex/arcs/arcs.ins
+runfiles size=2686
+ texmf-dist/tex/latex/arcs/arcs.sty
+catalogue-version 1
+catalogue-date 2006-10-12 15:06:10 +0200
+catalogue-ctan /macros/latex/contrib/arcs
+catalogue-license lppl
+
+name arev
+category Package
+revision 1868
+shortdesc Fonts and LaTeX support files for Arev Sans.
+longdesc The package arev provides type 1 and virtual fonts, together
+longdesc with LaTeX packages for using Arev Sans in both text and
+longdesc mathematics. Arev Sans is a derivative of Bitstream Vera Sans
+longdesc created by Tavmjong Bah, adding support for Greek and Cyrillic
+longdesc characters. Bah also added a few variant letters that are more
+longdesc appropriate for mathematics. The primary purpose for using Arev
+longdesc Sans in LaTeX is presentations, particularly when using a
+longdesc computer projector. In such a context, Arev Sans is quite
+longdesc readable, with large x-height, "open letters", wide spacing,
+longdesc and thick stems. The style is very similar to the SliTeX font
+longdesc lcmss, but heavier. Arev is one of a very small number of sans-
+longdesc font mathematics support packages. Others are cmbright, hvmath
+longdesc and kerkis.
+execute addMap arev.map
+docfiles size=886277
+ texmf-dist/doc/fonts/arev/ArevSansLicense.txt
+ texmf-dist/doc/fonts/arev/BitstreamVeraLicense.txt
+ texmf-dist/doc/fonts/arev/ChangeLog
+ texmf-dist/doc/fonts/arev/GPLv2.txt
+ texmf-dist/doc/fonts/arev/LPPLv1-3a.txt
+ texmf-dist/doc/fonts/arev/Makefile
+ texmf-dist/doc/fonts/arev/README details="Readme"
+ texmf-dist/doc/fonts/arev/arevdoc.lyx
+ texmf-dist/doc/fonts/arev/arevdoc.pdf details="Package documentation"
+ texmf-dist/doc/fonts/arev/arevdoc.tex
+ texmf-dist/doc/fonts/arev/fontsample.tex
+ texmf-dist/doc/fonts/arev/mathtesty.pdf
+ texmf-dist/doc/fonts/arev/mathtesty.tex
+ texmf-dist/doc/fonts/arev/prosper-arev.tex
+ texmf-dist/doc/fonts/arev/prosper-cmbright.tex
+ texmf-dist/doc/fonts/arev/prosper-cmss.tex
+ texmf-dist/doc/fonts/arev/prosper-header.tex
+ texmf-dist/doc/fonts/arev/prosper-helvetica.tex
+ texmf-dist/doc/fonts/arev/prosper-kerkis.tex
+ texmf-dist/doc/fonts/arev/prosper-lcmss.tex
+ texmf-dist/doc/fonts/arev/prosper-text.tex
+srcfiles size=44959
+ texmf-dist/source/fonts/arev/TODO.txt
+ texmf-dist/source/fonts/arev/afmtoglyphlist
+ texmf-dist/source/fonts/arev/arevfontinst.tex
+ texmf-dist/source/fonts/arev/arevoml.etx
+ texmf-dist/source/fonts/arev/arevoms.etx
+ texmf-dist/source/fonts/arev/arevot1.etx
+ texmf-dist/source/fonts/arev/convert-ff
+ texmf-dist/source/fonts/arev/createkerndata
+ texmf-dist/source/fonts/arev/enctofontpos
+ texmf-dist/source/fonts/arev/fixkernaccents.tex
+ texmf-dist/source/fonts/arev/fixweierstrass.mtx
+ texmf-dist/source/fonts/arev/fonttokernsfd.ff
+ texmf-dist/source/fonts/arev/fonttopfb.ff
+ texmf-dist/source/fonts/arev/glyphlistoml.tex
+ texmf-dist/source/fonts/arev/glyphlistoms.tex
+ texmf-dist/source/fonts/arev/glyphlistot1.tex
+ texmf-dist/source/fonts/arev/makefontfiles
+ texmf-dist/source/fonts/arev/resetdotlessi.mtx
+ texmf-dist/source/fonts/arev/sfdtokernaccent
+ texmf-dist/source/fonts/arev/unsetomssymbols.mtx
+ texmf-dist/source/fonts/arev/unsetot1symbols.mtx
+runfiles size=1477671
+ texmf-dist/fonts/afm/public/arev/ArevSans-Bold.afm
+ texmf-dist/fonts/afm/public/arev/ArevSans-BoldOblique.afm
+ texmf-dist/fonts/afm/public/arev/ArevSans-Oblique.afm
+ texmf-dist/fonts/afm/public/arev/ArevSans-Roman.afm
+ texmf-dist/fonts/enc/dvips/arev/arevoml.enc
+ texmf-dist/fonts/enc/dvips/arev/arevoms.enc
+ texmf-dist/fonts/enc/dvips/arev/arevot1.enc
+ texmf-dist/fonts/map/dvips/arev/arev.map
+ texmf-dist/fonts/tfm/public/arev/ArevSans-Bold.tfm
+ texmf-dist/fonts/tfm/public/arev/ArevSans-BoldOblique.tfm
+ texmf-dist/fonts/tfm/public/arev/ArevSans-Oblique.tfm
+ texmf-dist/fonts/tfm/public/arev/ArevSans-Roman.tfm
+ texmf-dist/fonts/tfm/public/arev/favb8r.tfm
+ texmf-dist/fonts/tfm/public/arev/favb8t.tfm
+ texmf-dist/fonts/tfm/public/arev/favbi8r.tfm
+ texmf-dist/fonts/tfm/public/arev/favbi8t.tfm
+ texmf-dist/fonts/tfm/public/arev/favmb7t.tfm
+ texmf-dist/fonts/tfm/public/arev/favmbi7m.tfm
+ texmf-dist/fonts/tfm/public/arev/favmr7t.tfm
+ texmf-dist/fonts/tfm/public/arev/favmr7y.tfm
+ texmf-dist/fonts/tfm/public/arev/favmri7m.tfm
+ texmf-dist/fonts/tfm/public/arev/favr8r.tfm
+ texmf-dist/fonts/tfm/public/arev/favr8t.tfm
+ texmf-dist/fonts/tfm/public/arev/favri8r.tfm
+ texmf-dist/fonts/tfm/public/arev/favri8t.tfm
+ texmf-dist/fonts/tfm/public/arev/zavmb7t.tfm
+ texmf-dist/fonts/tfm/public/arev/zavmbi7m.tfm
+ texmf-dist/fonts/tfm/public/arev/zavmr7t.tfm
+ texmf-dist/fonts/tfm/public/arev/zavmr7y.tfm
+ texmf-dist/fonts/tfm/public/arev/zavmri7m.tfm
+ texmf-dist/fonts/type1/public/arev/ArevSans-Bold.pfb
+ texmf-dist/fonts/type1/public/arev/ArevSans-BoldOblique.pfb
+ texmf-dist/fonts/type1/public/arev/ArevSans-Oblique.pfb
+ texmf-dist/fonts/type1/public/arev/ArevSans-Roman.pfb
+ texmf-dist/fonts/vf/public/arev/favb8t.vf
+ texmf-dist/fonts/vf/public/arev/favbi8t.vf
+ texmf-dist/fonts/vf/public/arev/favr8t.vf
+ texmf-dist/fonts/vf/public/arev/favri8t.vf
+ texmf-dist/fonts/vf/public/arev/zavmb7t.vf
+ texmf-dist/fonts/vf/public/arev/zavmbi7m.vf
+ texmf-dist/fonts/vf/public/arev/zavmr7t.vf
+ texmf-dist/fonts/vf/public/arev/zavmr7y.vf
+ texmf-dist/fonts/vf/public/arev/zavmri7m.vf
+ texmf-dist/tex/latex/arev/ams-mdbch.sty
+ texmf-dist/tex/latex/arev/arev.sty
+ texmf-dist/tex/latex/arev/arevmath.sty
+ texmf-dist/tex/latex/arev/arevsymbols.tex
+ texmf-dist/tex/latex/arev/arevtext.sty
+ texmf-dist/tex/latex/arev/omlzavm.fd
+ texmf-dist/tex/latex/arev/omszavm.fd
+ texmf-dist/tex/latex/arev/ot1zavm.fd
+ texmf-dist/tex/latex/arev/t1fav.fd
+ texmf-dist/tex/latex/arev/uzavm.fd
+catalogue-version
+catalogue-date 2007-02-25 15:08:52 +0100
+catalogue-ctan /fonts/arev
+catalogue-license lppl
+
+name armenian
+category Package
+revision 677
+docfiles size=197129
+ texmf-dist/doc/fonts/armenian/examples/latex/manual.tex
+ texmf-dist/doc/fonts/armenian/examples/latex/raffi.tex
+ texmf-dist/doc/fonts/armenian/examples/plain/first.tex
+ texmf-dist/doc/fonts/armenian/examples/plain/table.tex
+ texmf-dist/doc/fonts/armenian/manual.ps.gz
+ texmf-dist/doc/fonts/armenian/readme.txt
+runfiles size=1279705
+ texmf-dist/fonts/source/public/armenian/arssb10.mf
+ texmf-dist/fonts/source/public/armenian/arssbs10.mf
+ texmf-dist/fonts/source/public/armenian/arssr10.mf
+ texmf-dist/fonts/source/public/armenian/arsssl10.mf
+ texmf-dist/fonts/source/public/armenian/artmb10.mf
+ texmf-dist/fonts/source/public/armenian/artmbi10.mf
+ texmf-dist/fonts/source/public/armenian/artmbs10.mf
+ texmf-dist/fonts/source/public/armenian/artmi10.mf
+ texmf-dist/fonts/source/public/armenian/artmr10.mf
+ texmf-dist/fonts/source/public/armenian/artmsl10.mf
+ texmf-dist/fonts/source/public/armenian/ps2mfbas.mf
+ texmf-dist/fonts/tfm/public/armenian/arssb10.tfm
+ texmf-dist/fonts/tfm/public/armenian/arssbs10.tfm
+ texmf-dist/fonts/tfm/public/armenian/arssr10.tfm
+ texmf-dist/fonts/tfm/public/armenian/arsssl10.tfm
+ texmf-dist/fonts/tfm/public/armenian/artmb10.tfm
+ texmf-dist/fonts/tfm/public/armenian/artmbi10.tfm
+ texmf-dist/fonts/tfm/public/armenian/artmbs10.tfm
+ texmf-dist/fonts/tfm/public/armenian/artmi10.tfm
+ texmf-dist/fonts/tfm/public/armenian/artmr10.tfm
+ texmf-dist/fonts/tfm/public/armenian/artmsl10.tfm
+ texmf-dist/tex/latex/armenian/armscii8.def
+ texmf-dist/tex/latex/armenian/armtex.sty
+ texmf-dist/tex/latex/armenian/ot6cmr.fd
+ texmf-dist/tex/latex/armenian/ot6cmss.fd
+ texmf-dist/tex/latex/armenian/ot6enc.def
+ texmf-dist/tex/plain/armenian/arm.tex
+ texmf-dist/tex/plain/armenian/kbdencod.tex
+
+name arphic
+category Package
+revision 98
+shortdesc Arphic (Chinese) font packages.
+longdesc These are font bundles for the Chinese Arphic fonts which work
+longdesc with the CJK package. Arphic is actually the name of the
+longdesc company that which created the fonts (and put them under a GPL-
+longdesc like licence).
+execute addMap bsmiu.map
+execute addMap gbsnu.map
+docfiles size=31588
+ texmf-dist/doc/fonts/arphic/bsmiu/README
+ texmf-dist/doc/fonts/arphic/gbsnu/README
+ texmf-dist/doc/fonts/arphic/license/BIG5/ARPHICPL.DOC
+ texmf-dist/doc/fonts/arphic/license/BIG5/ARPHICPL.TXT
+ texmf-dist/doc/fonts/arphic/license/ENGLISH/ARPHICPL.DOC
+ texmf-dist/doc/fonts/arphic/license/ENGLISH/ARPHICPL.TXT
+ texmf-dist/doc/fonts/arphic/license/GB/ARPHICPL.DOC
+ texmf-dist/doc/fonts/arphic/license/GB/ARPHICPL.TXT
+runfiles size=16770333
+ texmf-dist/dvips/arphic/config.arphic
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu00.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu02.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu03.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu20.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu21.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu22.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu25.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu26.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu30.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu31.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu32.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu33.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu4e.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu4f.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu50.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu51.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu52.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu53.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu54.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu55.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu56.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu57.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu58.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu59.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu5a.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu5b.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu5c.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu5d.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu5e.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu5f.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu60.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu61.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu62.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu63.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu64.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu65.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu66.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu67.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu68.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu69.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu6a.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu6b.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu6c.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu6d.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu6e.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu6f.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu70.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu71.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu72.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu73.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu74.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu75.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu76.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu77.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu78.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu79.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu7a.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu7b.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu7c.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu7d.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu7e.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu7f.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu80.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu81.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu82.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu83.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu84.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu85.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu86.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu87.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu88.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu89.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu8a.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu8b.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu8c.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu8d.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu8e.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu8f.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu90.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu91.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu92.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu93.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu94.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu95.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu96.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu97.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu98.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu99.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu9a.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu9b.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu9c.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu9d.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu9e.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiu9f.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiuee.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiuf6.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiuf7.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiuf8.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiufa.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiufe.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiuff.afm
+ texmf-dist/fonts/afm/arphic/bsmiu/bsmiuv.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu00.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu01.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu02.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu03.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu04.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu20.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu21.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu22.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu23.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu24.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu25.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu26.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu30.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu31.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu32.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu4e.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu4f.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu50.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu51.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu52.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu53.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu54.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu55.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu56.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu57.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu58.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu59.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu5a.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu5b.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu5c.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu5d.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu5e.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu5f.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu60.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu61.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu62.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu63.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu64.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu65.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu66.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu67.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu68.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu69.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu6a.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu6b.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu6c.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu6d.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu6e.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu6f.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu70.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu71.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu72.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu73.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu74.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu75.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu76.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu77.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu78.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu79.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu7a.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu7b.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu7c.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu7d.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu7e.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu7f.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu80.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu81.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu82.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu83.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu84.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu85.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu86.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu87.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu88.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu89.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu8a.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu8b.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu8c.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu8d.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu8e.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu8f.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu90.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu91.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu92.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu93.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu94.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu95.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu96.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu97.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu98.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu99.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu9a.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu9b.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu9c.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu9e.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnu9f.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnufe.afm
+ texmf-dist/fonts/afm/arphic/gbsnu/gbsnuff.afm
+ texmf-dist/fonts/map/dvips/arphic/bsmiu.map
+ texmf-dist/fonts/map/dvips/arphic/gbsnu.map
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp00.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp01.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp02.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp03.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp04.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp05.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp06.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp07.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp08.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp09.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp10.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp11.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp12.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp13.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp14.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp15.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp16.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp17.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp18.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp19.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp20.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp21.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp22.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp23.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp25.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp26.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp27.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp28.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp29.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp30.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp31.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp32.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp33.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp34.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp35.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp36.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp37.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp38.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp39.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp40.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp41.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp42.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp43.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp44.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp45.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp46.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp47.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp48.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp49.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp50.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp51.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp52.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp53.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp54.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilp55.tfm
+ texmf-dist/fonts/tfm/arphic/bsmilp/bsmilpv.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu00.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu02.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu03.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu20.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu21.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu22.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu25.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu26.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu30.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu31.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu32.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu33.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu4e.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu4f.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu50.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu51.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu52.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu53.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu54.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu55.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu56.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu57.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu58.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu59.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu5a.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu5b.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu5c.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu5d.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu5e.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu5f.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu60.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu61.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu62.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu63.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu64.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu65.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu66.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu67.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu68.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu69.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu6a.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu6b.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu6c.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu6d.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu6e.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu6f.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu70.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu71.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu72.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu73.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu74.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu75.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu76.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu77.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu78.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu79.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu7a.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu7b.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu7c.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu7d.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu7e.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu7f.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu80.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu81.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu82.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu83.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu84.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu85.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu86.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu87.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu88.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu89.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu8a.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu8b.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu8c.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu8d.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu8e.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu8f.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu90.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu91.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu92.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu93.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu94.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu95.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu96.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu97.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu98.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu99.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu9a.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu9b.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu9c.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu9d.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu9e.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiu9f.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiuee.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiuf6.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiuf7.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiuf8.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiufa.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiufe.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiuff.tfm
+ texmf-dist/fonts/tfm/arphic/bsmiu/bsmiuv.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp00.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp01.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp02.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp03.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp04.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp06.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp07.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp08.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp09.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp10.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp11.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp12.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp13.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp14.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp15.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp16.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp17.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp18.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp19.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp20.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp21.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp22.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp23.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp24.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp25.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp26.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp27.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp28.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp29.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp30.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp31.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnlp/gbsnlp32.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu00.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu01.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu02.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu03.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu04.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu20.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu21.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu22.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu23.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu24.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu25.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu26.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu30.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu31.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu32.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu4e.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu4f.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu50.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu51.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu52.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu53.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu54.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu55.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu56.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu57.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu58.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu59.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu5a.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu5b.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu5c.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu5d.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu5e.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu5f.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu60.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu61.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu62.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu63.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu64.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu65.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu66.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu67.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu68.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu69.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu6a.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu6b.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu6c.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu6d.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu6e.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu6f.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu70.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu71.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu72.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu73.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu74.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu75.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu76.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu77.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu78.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu79.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu7a.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu7b.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu7c.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu7d.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu7e.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu7f.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu80.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu81.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu82.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu83.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu84.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu85.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu86.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu87.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu88.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu89.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu8a.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu8b.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu8c.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu8d.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu8e.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu8f.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu90.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu91.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu92.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu93.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu94.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu95.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu96.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu97.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu98.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu99.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu9a.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu9b.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu9c.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu9e.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnu9f.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnufe.tfm
+ texmf-dist/fonts/tfm/arphic/gbsnu/gbsnuff.tfm
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu00.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu02.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu03.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu20.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu21.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu22.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu25.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu26.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu30.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu31.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu32.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu33.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu4e.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu4f.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu50.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu51.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu52.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu53.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu54.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu55.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu56.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu57.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu58.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu59.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu5a.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu5b.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu5c.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu5d.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu5e.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu5f.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu60.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu61.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu62.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu63.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu64.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu65.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu66.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu67.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu68.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu69.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu6a.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu6b.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu6c.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu6d.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu6e.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu6f.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu70.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu71.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu72.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu73.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu74.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu75.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu76.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu77.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu78.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu79.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu7a.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu7b.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu7c.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu7d.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu7e.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu7f.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu80.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu81.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu82.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu83.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu84.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu85.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu86.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu87.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu88.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu89.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu8a.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu8b.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu8c.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu8d.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu8e.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu8f.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu90.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu91.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu92.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu93.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu94.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu95.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu96.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu97.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu98.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu99.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu9a.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu9b.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu9c.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu9d.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu9e.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiu9f.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiuee.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiuf6.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiuf7.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiuf8.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiufa.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiufe.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiuff.pfb
+ texmf-dist/fonts/type1/arphic/bsmiu/bsmiuv.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu00.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu01.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu02.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu03.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu04.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu20.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu21.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu22.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu23.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu24.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu25.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu26.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu30.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu31.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu32.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu4e.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu4f.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu50.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu51.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu52.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu53.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu54.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu55.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu56.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu57.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu58.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu59.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu5a.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu5b.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu5c.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu5d.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu5e.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu5f.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu60.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu61.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu62.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu63.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu64.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu65.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu66.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu67.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu68.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu69.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu6a.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu6b.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu6c.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu6d.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu6e.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu6f.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu70.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu71.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu72.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu73.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu74.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu75.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu76.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu77.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu78.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu79.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu7a.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu7b.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu7c.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu7d.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu7e.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu7f.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu80.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu81.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu82.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu83.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu84.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu85.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu86.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu87.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu88.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu89.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu8a.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu8b.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu8c.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu8d.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu8e.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu8f.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu90.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu91.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu92.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu93.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu94.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu95.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu96.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu97.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu98.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu99.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu9a.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu9b.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu9c.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu9e.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnu9f.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnufe.pfb
+ texmf-dist/fonts/type1/arphic/gbsnu/gbsnuff.pfb
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp00.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp01.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp02.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp03.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp04.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp05.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp06.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp07.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp08.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp09.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp10.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp11.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp12.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp13.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp14.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp15.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp16.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp17.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp18.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp19.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp20.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp21.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp22.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp23.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp25.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp26.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp27.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp28.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp29.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp30.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp31.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp32.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp33.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp34.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp35.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp36.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp37.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp38.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp39.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp40.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp41.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp42.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp43.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp44.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp45.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp46.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp47.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp48.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp49.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp50.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp51.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp52.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp53.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp54.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilp55.vf
+ texmf-dist/fonts/vf/arphic/bsmilp/bsmilpv.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp00.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp01.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp02.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp03.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp04.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp06.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp07.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp08.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp09.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp10.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp11.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp12.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp13.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp14.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp15.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp16.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp17.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp18.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp19.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp20.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp21.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp22.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp23.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp24.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp25.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp26.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp27.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp28.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp29.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp30.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp31.vf
+ texmf-dist/fonts/vf/arphic/gbsnlp/gbsnlp32.vf
+catalogue-version
+catalogue-date 2007-05-25 18:39:01 +0200
+catalogue-ctan /fonts/arphic
+catalogue-license other-free
+
+name arrayjob
+category Package
+revision 613
+shortdesc Array data structures for (La)TeX.
+longdesc This package provides array data structures in (La)TeX, in the
+longdesc meaning of the classical procedural programming languages like
+longdesc Fortran, Ada or C, and macros to manipulate them. Arrays can be
+longdesc mono or bi-dimensional. This is useful for applications which
+longdesc require high level programming techniques, like algorithmic
+longdesc graphics programmed in the TeX language.
+docfiles size=535641
+ texmf-dist/doc/generic/arrayjob/README details="Package Readme"
+ texmf-dist/doc/generic/arrayjob/arrayjob.doc
+ texmf-dist/doc/generic/arrayjob/arrayjob.pdf details="Package documentation"
+runfiles size=7471
+ texmf-dist/tex/generic/arrayjob/arrayjob.sty
+catalogue-version 1.03
+catalogue-date 2006-11-28 22:38:04 +0100
+catalogue-ctan /macros/generic/arrayjob
+catalogue-license lppl
+
+name arydshln
+category Package
+revision 2315
+shortdesc Horizontal and vertical dashed lines in arrays and tabulars.
+longdesc Definitions of horizontal and vertical dashed lines for the
+longdesc array and tabular environment. Horizontal lines are drawn by
+longdesc \hdashline and \cdashline while vertical ones can be specified
+longdesc as a part of preamble using ‘:’. The shape of dashed lines
+longdesc may be controlled through style parameters or optional
+longdesc arguments. The package is compatible with array and colortab.
+docfiles size=638619
+ texmf-dist/doc/latex/arydshln/README
+ texmf-dist/doc/latex/arydshln/arydshln-man.pdf details="User manual:"
+ texmf-dist/doc/latex/arydshln/arydshln-man.tex
+ texmf-dist/doc/latex/arydshln/arydshln.pdf details="Manual, including code listing:"
+srcfiles size=236503
+ texmf-dist/source/latex/arydshln/arydshln.dtx
+ texmf-dist/source/latex/arydshln/arydshln.ins
+runfiles size=45108
+ texmf-dist/tex/latex/arydshln/arydshln.sty
+catalogue-version 1.71
+catalogue-date 2007-04-06 18:29:05 +0200
+catalogue-ctan /macros/latex/contrib/arydshln
+catalogue-license lppl
+
+name asaetr
+category Package
+revision 1487
+shortdesc Transactions of the ASAE.
+longdesc A class and BibTeX style for submissions to the Transactions of
+longdesc the American Society of Agricultural Engineers. Also included
+longdesc is the MetaFont source of a slanted Computer Modern Caps and
+longdesc Small Caps font.
+docfiles size=24593
+ texmf-dist/doc/latex/asaetr/asaetr.dvi
+ texmf-dist/doc/latex/asaetr/asaetr.tex
+srcfiles size=1089
+ texmf-dist/source/latex/asaetr/MANIFEST
+runfiles size=47512
+ texmf-dist/bibtex/bib/asaetr/asaetr.bib
+ texmf-dist/bibtex/bst/asaetr/asaetr.bst
+ texmf-dist/tex/latex/asaetr/asaesub.sty
+ texmf-dist/tex/latex/asaetr/asaetr.cls
+ texmf-dist/tex/latex/asaetr/asaetr.sty
+catalogue-version 1.0a
+catalogue-date 2006-12-07 15:13:33 +0100
+catalogue-ctan /macros/latex/contrib/asaetr
+catalogue-license pd
+
+name ascelike
+category Package
+revision 680
+shortdesc Bibliography style for the ASCE.
+longdesc A document class and bibliographic style that prepares
+longdesc documents in the style required by the American Society of
+longdesc Civil Engineers (ASCE). These are unofficial files, not
+longdesc sanctioned by that organization, and the files specifically
+longdesc give this caveat. Also included is a short
+longdesc documentation/example of how to use the class.
+docfiles size=301518
+ texmf-dist/doc/latex/ascelike/Readme
+ texmf-dist/doc/latex/ascelike/ascexmpl.pdf
+ texmf-dist/doc/latex/ascelike/ascexmpl.ps
+ texmf-dist/doc/latex/ascelike/ascexmpl.tex
+runfiles size=58698
+ texmf-dist/bibtex/bib/ascelike/ascexmpl.bib
+ texmf-dist/bibtex/bst/ascelike/ascelike.bst
+ texmf-dist/tex/latex/ascelike/ascelike.cls
+catalogue-version 1999-06-25
+catalogue-date 2006-09-12 13:43:23 +0200
+catalogue-ctan /macros/latex/contrib/ascelike
+catalogue-license lppl
+
+name ascii
+category Package
+revision 1630
+shortdesc Support for IBM "standard ASCII" font.
+longdesc This package makes available the graphical reprensentation of
+longdesc the ASCII characters as defined in the IBM PC Code Page 437 C0
+longdesc Graphics. A Type 1 font of the glyphs is included.
+execute addMap ascii.map
+docfiles size=499817
+ texmf-dist/doc/fonts/ascii/ascii2006.pdf
+ texmf-dist/doc/fonts/ascii/asciisty1994.pdf
+srcfiles size=14155
+ texmf-dist/source/latex/ascii/ascii.dtx
+ texmf-dist/source/latex/ascii/ascii.ins
+runfiles size=56831
+ texmf-dist/fonts/map/dvips/ascii/ascii.map
+ texmf-dist/fonts/tfm/public/ascii/ASCII.tfm
+ texmf-dist/fonts/type1/public/ascii/ASCII.pfb
+ texmf-dist/tex/latex/ascii/ascii.sty
+catalogue-version 2.0
+catalogue-date 2007-02-25 15:08:52 +0100
+catalogue-ctan /fonts/ascii
+catalogue-license lppl
+
+name assignment
+category Package
+revision 681
+shortdesc A class file for typesetting homework and lab assignments
+longdesc A class file for typesetting homework and lab assignments.
+docfiles size=111727
+ texmf-dist/doc/latex/assignment/Changelog
+ texmf-dist/doc/latex/assignment/LICENSE
+ texmf-dist/doc/latex/assignment/README details="Package README"
+ texmf-dist/doc/latex/assignment/assignment.pdf details="Package documentation, as an assignment"
+ texmf-dist/doc/latex/assignment/assignment.tex
+runfiles size=4503
+ texmf-dist/tex/latex/assignment/assignment.cls
+catalogue-version
+catalogue-date 2006-10-12 15:12:24 +0200
+catalogue-ctan /macros/latex/contrib/assignment
+catalogue-license lppl
+
+name astro
+category Package
+revision 5002
+shortdesc Astronomical (planetary) symbols.
+longdesc Astrosym is a font containing astronomical symbols, including
+longdesc those used for the planets, four planetoids, the phases of the
+longdesc moon, the signs of the zodiac, and some additional symbols. The
+longdesc font is distributed in MetaFont format.
+docfiles size=11110
+ texmf-dist/doc/fonts/astro/astrosym.tex
+ texmf-dist/doc/fonts/astro/astrosym.txt
+runfiles size=69292
+ texmf-dist/fonts/source/public/astro/astrosym.cal
+ texmf-dist/fonts/source/public/astro/astrosym.cmn
+ texmf-dist/fonts/source/public/astro/astrosym.mac
+ texmf-dist/fonts/source/public/astro/astrosym.mf
+ texmf-dist/fonts/source/public/astro/astrosym.uni
+ texmf-dist/fonts/source/public/astro/astrosym.xtr
+ texmf-dist/fonts/tfm/public/astro/astrosym.tfm
+catalogue-version
+catalogue-date 2006-12-17 11:41:28 +0100
+catalogue-ctan /fonts/astro
+catalogue-license unknown
+
+name atqolive
+category Package
+revision 90
+runfiles size=107516
+ texmf-dist/fonts/tfm/cg/atqolive/anb10u.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/anb6j.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/anb7j.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/anb8u.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/ani10u.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/ani6j.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/ani7j.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/ani8u.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/anr10u.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/anr6j.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/anr7j.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/anr8u.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/caob.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/caobq.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/caor.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/caori.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/caoriq.tfm
+ texmf-dist/fonts/tfm/cg/atqolive/caorq.tfm
+ texmf-dist/fonts/vf/cg/atqolive/caob.vf
+ texmf-dist/fonts/vf/cg/atqolive/caobq.vf
+ texmf-dist/fonts/vf/cg/atqolive/caor.vf
+ texmf-dist/fonts/vf/cg/atqolive/caori.vf
+ texmf-dist/fonts/vf/cg/atqolive/caoriq.vf
+ texmf-dist/fonts/vf/cg/atqolive/caorq.vf
+
+name attachfile
+category Package
+revision 3569
+shortdesc Attach arbitrary files to a PDF document
+longdesc Starting with PDF 1.3 (Adobe Acrobat 4.0), PDF files can
+longdesc contain file attachments — arbitrary files that a reader can
+longdesc extract, just like attachments to an e-mail message. The
+longdesc attachfile package brings this functionality to pdfLaTeX and
+longdesc provides some additional features not available in Acrobat,
+longdesc such as the ability to use arbitrary LaTeX code for the file
+longdesc icon — including things like \includegraphics, tabular, and
+longdesc mathematics. Settings can be made either globally or on a per-
+longdesc attachment basis. Attachfile makes it easy to attach files and
+longdesc customize their appearance in the enclosing document. The
+longdesc package supports the Created, Modified, and Size keys in the
+longdesc EmbeddedFile’s Params dictionary.
+docfiles size=294304
+ texmf-dist/doc/latex/attachfile/README details="Readme"
+ texmf-dist/doc/latex/attachfile/attachfile.pdf details="Package README"
+srcfiles size=68960
+ texmf-dist/source/latex/attachfile/attachfile.dtx
+ texmf-dist/source/latex/attachfile/attachfile.ins
+runfiles size=11996
+ texmf-dist/tex/latex/attachfile/attachfile.sty
+catalogue-version v1.3
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/attachfile
+catalogue-license lppl
+
+name augie
+category Package
+revision 683
+shortdesc Calligraphic font for typesetting handwriting.
+longdesc A calligraphic font for simulating American-style informal
+longdesc handwriting. The font is distributed in Adobe Type 1 format.
+execute addMap augie.map
+docfiles size=5971
+ texmf-dist/doc/latex/augie/README.augie
+ texmf-dist/doc/latex/augie/augie.txt
+srcfiles size=1333
+ texmf-dist/source/latex/augie/other/Augie___.pfm
+ texmf-dist/source/latex/augie/other/augie___.inf
+ texmf-dist/source/latex/augie/vtex/augie.ali
+runfiles size=85779
+ texmf-dist/fonts/afm/public/augie/augie___.afm
+ texmf-dist/fonts/map/dvips/augie/augie.map
+ texmf-dist/fonts/tfm/public/augie/augie7t.tfm
+ texmf-dist/fonts/tfm/public/augie/augie8c.tfm
+ texmf-dist/fonts/tfm/public/augie/augie8r.tfm
+ texmf-dist/fonts/tfm/public/augie/augie8t.tfm
+ texmf-dist/fonts/tfm/public/augie/augie___.tfm
+ texmf-dist/fonts/type1/public/augie/augie___.pfb
+ texmf-dist/fonts/vf/public/augie/augie7t.vf
+ texmf-dist/fonts/vf/public/augie/augie8c.vf
+ texmf-dist/fonts/vf/public/augie/augie8t.vf
+ texmf-dist/tex/latex/augie/ot1augie.fd
+ texmf-dist/tex/latex/augie/t1augie.fd
+ texmf-dist/tex/latex/augie/ts1augie.fd
+catalogue-version
+catalogue-date 2006-12-29 12:26:56 +0100
+catalogue-ctan /fonts/augie
+catalogue-license lppl
+
+name aurical
+category Package
+revision 2331
+shortdesc Calligraphic fonts for use with LaTeX in T1 encoding.
+longdesc The package that implements a set (AuriocusKalligraphicus) of
+longdesc three calligraphic fonts derived from the author's handwriting
+longdesc in Adobe Type 1 Format, T1 (Cork) encoding for use with LaTeX:
+longdesc – Auriocus Kalligraphicus; – Lukas Svatba; and – Jana
+longdesc Skrivana.
+execute addMap aurical.map
+docfiles size=116145
+ texmf-dist/doc/latex/aurical/aurical.pdf details="Package introduction and samples"
+ texmf-dist/doc/latex/aurical/aurical.tex
+runfiles size=3366446
+ texmf-dist/fonts/afm/public/aurical/AmiciLogo.afm
+ texmf-dist/fonts/afm/public/aurical/AmiciLogoBold.afm
+ texmf-dist/fonts/afm/public/aurical/AmiciLogoBoldRslant.afm
+ texmf-dist/fonts/afm/public/aurical/AmiciLogoBoldSlant.afm
+ texmf-dist/fonts/afm/public/aurical/AmiciLogoRslant.afm
+ texmf-dist/fonts/afm/public/aurical/AmiciLogoSlant.afm
+ texmf-dist/fonts/afm/public/aurical/AuriocusKalligraphicus.afm
+ texmf-dist/fonts/afm/public/aurical/AuriocusKalligraphicusBold.afm
+ texmf-dist/fonts/afm/public/aurical/AuriocusKalligraphicusBoldRslant.afm
+ texmf-dist/fonts/afm/public/aurical/AuriocusKalligraphicusBoldSlant.afm
+ texmf-dist/fonts/afm/public/aurical/AuriocusKalligraphicusRslant.afm
+ texmf-dist/fonts/afm/public/aurical/AuriocusKalligraphicusSlant.afm
+ texmf-dist/fonts/afm/public/aurical/JanaSkrivana.afm
+ texmf-dist/fonts/afm/public/aurical/JanaSkrivanaBold.afm
+ texmf-dist/fonts/afm/public/aurical/JanaSkrivanaBoldRslant.afm
+ texmf-dist/fonts/afm/public/aurical/JanaSkrivanaBoldSlant.afm
+ texmf-dist/fonts/afm/public/aurical/JanaSkrivanaRslant.afm
+ texmf-dist/fonts/afm/public/aurical/JanaSkrivanaSlant.afm
+ texmf-dist/fonts/afm/public/aurical/LukasSvatba.afm
+ texmf-dist/fonts/afm/public/aurical/LukasSvatbaBold.afm
+ texmf-dist/fonts/afm/public/aurical/LukasSvatbaBoldRslant.afm
+ texmf-dist/fonts/afm/public/aurical/LukasSvatbaBoldSlant.afm
+ texmf-dist/fonts/afm/public/aurical/LukasSvatbaRslant.afm
+ texmf-dist/fonts/afm/public/aurical/LukasSvatbaSlant.afm
+ texmf-dist/fonts/map/dvips/aurical/aurical.map
+ texmf-dist/fonts/source/public/aurical/aurical_source.zip
+ texmf-dist/fonts/tfm/public/aurical/AmiciLogo.tfm
+ texmf-dist/fonts/tfm/public/aurical/AmiciLogoBold.tfm
+ texmf-dist/fonts/tfm/public/aurical/AmiciLogoBoldRslant.tfm
+ texmf-dist/fonts/tfm/public/aurical/AmiciLogoBoldSlant.tfm
+ texmf-dist/fonts/tfm/public/aurical/AmiciLogoRslant.tfm
+ texmf-dist/fonts/tfm/public/aurical/AmiciLogoSlant.tfm
+ texmf-dist/fonts/tfm/public/aurical/AuriocusKalligraphicus.tfm
+ texmf-dist/fonts/tfm/public/aurical/AuriocusKalligraphicusBold.tfm
+ texmf-dist/fonts/tfm/public/aurical/AuriocusKalligraphicusBoldRslant.tfm
+ texmf-dist/fonts/tfm/public/aurical/AuriocusKalligraphicusBoldSlant.tfm
+ texmf-dist/fonts/tfm/public/aurical/AuriocusKalligraphicusRslant.tfm
+ texmf-dist/fonts/tfm/public/aurical/AuriocusKalligraphicusSlant.tfm
+ texmf-dist/fonts/tfm/public/aurical/JanaSkrivana.tfm
+ texmf-dist/fonts/tfm/public/aurical/JanaSkrivanaBold.tfm
+ texmf-dist/fonts/tfm/public/aurical/JanaSkrivanaBoldRslant.tfm
+ texmf-dist/fonts/tfm/public/aurical/JanaSkrivanaBoldSlant.tfm
+ texmf-dist/fonts/tfm/public/aurical/JanaSkrivanaRslant.tfm
+ texmf-dist/fonts/tfm/public/aurical/JanaSkrivanaSlant.tfm
+ texmf-dist/fonts/tfm/public/aurical/LukasSvatba.tfm
+ texmf-dist/fonts/tfm/public/aurical/LukasSvatbaBold.tfm
+ texmf-dist/fonts/tfm/public/aurical/LukasSvatbaBoldRslant.tfm
+ texmf-dist/fonts/tfm/public/aurical/LukasSvatbaBoldSlant.tfm
+ texmf-dist/fonts/tfm/public/aurical/LukasSvatbaRslant.tfm
+ texmf-dist/fonts/tfm/public/aurical/LukasSvatbaSlant.tfm
+ texmf-dist/fonts/type1/public/aurical/AmiciLogo.pfb
+ texmf-dist/fonts/type1/public/aurical/AmiciLogoBold.pfb
+ texmf-dist/fonts/type1/public/aurical/AmiciLogoBoldRslant.pfb
+ texmf-dist/fonts/type1/public/aurical/AmiciLogoBoldSlant.pfb
+ texmf-dist/fonts/type1/public/aurical/AmiciLogoRslant.pfb
+ texmf-dist/fonts/type1/public/aurical/AmiciLogoSlant.pfb
+ texmf-dist/fonts/type1/public/aurical/AuriocusKalligraphicus.pfb
+ texmf-dist/fonts/type1/public/aurical/AuriocusKalligraphicusBold.pfb
+ texmf-dist/fonts/type1/public/aurical/AuriocusKalligraphicusBoldRslant.pfb
+ texmf-dist/fonts/type1/public/aurical/AuriocusKalligraphicusBoldSlant.pfb
+ texmf-dist/fonts/type1/public/aurical/AuriocusKalligraphicusRslant.pfb
+ texmf-dist/fonts/type1/public/aurical/AuriocusKalligraphicusSlant.pfb
+ texmf-dist/fonts/type1/public/aurical/JanaSkrivana.pfb
+ texmf-dist/fonts/type1/public/aurical/JanaSkrivanaBold.pfb
+ texmf-dist/fonts/type1/public/aurical/JanaSkrivanaBoldRslant.pfb
+ texmf-dist/fonts/type1/public/aurical/JanaSkrivanaBoldSlant.pfb
+ texmf-dist/fonts/type1/public/aurical/JanaSkrivanaRslant.pfb
+ texmf-dist/fonts/type1/public/aurical/JanaSkrivanaSlant.pfb
+ texmf-dist/fonts/type1/public/aurical/LukasSvatba.pfb
+ texmf-dist/fonts/type1/public/aurical/LukasSvatbaBold.pfb
+ texmf-dist/fonts/type1/public/aurical/LukasSvatbaBoldRslant.pfb
+ texmf-dist/fonts/type1/public/aurical/LukasSvatbaBoldSlant.pfb
+ texmf-dist/fonts/type1/public/aurical/LukasSvatbaRslant.pfb
+ texmf-dist/fonts/type1/public/aurical/LukasSvatbaSlant.pfb
+ texmf-dist/tex/latex/aurical/T1AmiciLogo.fd
+ texmf-dist/tex/latex/aurical/T1AuriocusKalligraphicus.fd
+ texmf-dist/tex/latex/aurical/T1JanaSkrivana.fd
+ texmf-dist/tex/latex/aurical/T1LukasSvatba.fd
+ texmf-dist/tex/latex/aurical/aurical.sty
+catalogue-version 1.4
+catalogue-date 2007-02-25 15:08:52 +0100
+catalogue-ctan /fonts/aurical
+catalogue-license lppl
+
+name aurora
+category Package
+revision 110
+shortdesc Header files for dvips to make colour separations.
+longdesc Offset printers need separate camera-ready copies for each ink
+longdesc they will use in printing a document. Aurora is a PostScript
+longdesc program for producing colour separates from a colour PostScript
+longdesc document. Aurora can be run from any type of computer, as it
+longdesc depends only on a black-and-white PostScript printer for its
+longdesc execution. It is capable of handling colour images as well as
+longdesc ordinary graphics, though image handling is very slow.
+docfiles size=194081
+ texmf-dist/doc/dvips/aurora/aurora.ps.gz
+ texmf-dist/doc/dvips/aurora/readme
+srcfiles size=921
+ texmf-dist/source/dvips/aurora/60.lpi
+ texmf-dist/source/dvips/aurora/71.lpi
+ texmf-dist/source/dvips/aurora/85.lpi
+runfiles size=14087
+ texmf-dist/dvips/aurora/aurora.pro
+ texmf-dist/dvips/aurora/black.pro
+ texmf-dist/dvips/aurora/blue.pro
+ texmf-dist/dvips/aurora/cyan.pro
+ texmf-dist/dvips/aurora/green.pro
+ texmf-dist/dvips/aurora/magenta.pro
+ texmf-dist/dvips/aurora/red.pro
+ texmf-dist/dvips/aurora/yellow.pro
+catalogue-version
+catalogue-date 2006-12-29 12:26:56 +0100
+catalogue-ctan /support/aurora
+catalogue-license nocommercial
+
+name authoraftertitle
+category Package
+revision 5483
+shortdesc Make author, etc., available after \maketitle.
+longdesc This jiffy package makes the author, title and date of the
+longdesc package available to the user (as \MyAuthor, etc) after the
+longdesc \maketitle command has been executed.
+runfiles size=678
+ texmf-dist/tex/latex/authoraftertitle/authoraftertitle.sty
+catalogue-version 0.9
+catalogue-date 2007-10-17 23:16:59 +0200
+catalogue-ctan /macros/latex/contrib/misc/authoraftertitle.sty
+catalogue-license other
+
+name authorindex
+category Package
+revision 3317
+shortdesc Index citations by author names.
+longdesc This package allows the user to create an index of all authors
+longdesc cited in a LaTeX document. Each author entry in the index
+longdesc contains the pages where these citations occur. Alternatively,
+longdesc the package can list the labels of the citations that appear in
+longdesc the references rather than the text pages. The package relies
+longdesc on BibTeX being used to handle citations. Additionally, it
+longdesc requires Perl (version 5 or higher).
+docfiles size=243548
+ texmf-dist/doc/latex/authorindex/COPYING
+ texmf-dist/doc/latex/authorindex/NEWS
+ texmf-dist/doc/latex/authorindex/README
+ texmf-dist/doc/latex/authorindex/authorindex
+ texmf-dist/doc/latex/authorindex/authorindex.pdf details="Package documentation"
+ texmf-dist/doc/latex/authorindex/authorindex.tex
+runfiles size=6125
+ texmf-dist/tex/latex/authorindex/authorindex.sty
+catalogue-version
+catalogue-date 2006-11-28 22:22:18 +0100
+catalogue-ctan /indexing/authorindex
+catalogue-license lppl
+
+name auto-pst-pdf
+category Package
+revision 2854
+shortdesc Wrapper for pst-pdf (with some psfrag features).
+longdesc The package uses --shell-escape to execute pst-pdf when
+longdesc necessary. This makes it especially easy to integrate into the
+longdesc workflow of an editor with just "LaTeX" and "pdfLaTeX" buttons.
+longdesc Wrappers are provided for various psfrag-related features so
+longdesc that Matlab figures via laprint, Mathematica figures via
+longdesc MathPSfrag, and regular psfrag figures can all be input
+longdesc consistently and easily.
+docfiles size=1478
+ texmf-dist/doc/latex/auto-pst-pdf/README details="Package Readme"
+runfiles size=4684
+ texmf-dist/tex/latex/auto-pst-pdf/auto-pst-pdf.sty
+catalogue-version 0.0
+catalogue-date 2007-02-25 15:08:52 +0100
+catalogue-ctan /macros/latex/contrib/auto-pst-pdf
+catalogue-license lppl
+
+name automata
+category Package
+revision 4617
+shortdesc Finite state machines, graphs and trees in MetaPost.
+longdesc The package offers a collection of macros for MetaPost to make
+longdesc easier to draw finite-state machines, automata, labelled
+longdesc graphs, etc. The user defines nodes, which may be isolated or
+longdesc arranged into matrices or trees; edges connect pairs of nodes
+longdesc through arbitrary paths. Parameters, that specify the shapes of
+longdesc nodes and the styles of edges, may be adjusted.
+docfiles size=61843
+ texmf-dist/doc/metapost/automata/README details="Readme"
+ texmf-dist/doc/metapost/automata/example.mp
+ texmf-dist/doc/metapost/automata/example.pdf details="Example of use"
+ texmf-dist/doc/metapost/automata/example.tex
+runfiles size=22320
+ texmf-dist/metapost/automata/automata.mp
+catalogue-version 0.2
+catalogue-date 2007-07-08 10:58:45 +0200
+catalogue-ctan /graphics/metapost/contrib/macros/automata
+catalogue-license lppl
+
+name autotab
+category Package
+revision 686
+shortdesc Generating tabulars from input data.
+longdesc The package defines a command \readtabline which prompts the
+longdesc user for the name of a file of data. The command's one numeric
+longdesc argument <n> specifies the number of fields to appear in the
+longdesc table being generated; the package reads <n> lines at a time
+longdesc from the data file, and creates one tabular line from each such
+longdesc set.
+docfiles size=3550
+ texmf-dist/doc/latex/autotab/autotab.tex
+runfiles size=1276
+ texmf-dist/tex/latex/autotab/autotab.sty
+catalogue-version
+catalogue-date 2006-11-28 11:39:51 +0100
+catalogue-ctan /macros/latex209/contrib/autotab
+catalogue-license unknown
+
+name avantgar
+category Package
+revision 2488
+runfiles size=1304479
+ texmf-dist/dvips/avantgar/config.uag
+ texmf-dist/fonts/afm/adobe/avantgar/pagd8a.afm
+ texmf-dist/fonts/afm/adobe/avantgar/pagdo8a.afm
+ texmf-dist/fonts/afm/adobe/avantgar/pagk8a.afm
+ texmf-dist/fonts/afm/adobe/avantgar/pagko8a.afm
+ texmf-dist/fonts/afm/urw/avantgar/uagb8a.afm
+ texmf-dist/fonts/afm/urw/avantgar/uagbi8a.afm
+ texmf-dist/fonts/afm/urw/avantgar/uagd8a.afm
+ texmf-dist/fonts/afm/urw/avantgar/uagdo8a.afm
+ texmf-dist/fonts/afm/urw/avantgar/uagk8a.afm
+ texmf-dist/fonts/afm/urw/avantgar/uagko8a.afm
+ texmf-dist/fonts/afm/urw/avantgar/uagr8a.afm
+ texmf-dist/fonts/afm/urw/avantgar/uagri8a.afm
+ texmf-dist/fonts/map/dvips/avantgar/uag.map
+ texmf-dist/fonts/tfm/adobe/avantgar/pagd.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagd7t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagd8c.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagd8r.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagd8t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagdc.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagdc7t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagdc8t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagdo.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagdo7t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagdo8c.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagdo8r.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagdo8t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagk.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagk7t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagk8c.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagk8r.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagk8t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagkc.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagkc7t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagkc8t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagko.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagko7t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagko8c.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagko8r.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/pagko8t.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/rpagd.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/rpagdo.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/rpagk.tfm
+ texmf-dist/fonts/tfm/adobe/avantgar/rpagko.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/avantgar/pagd8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/avantgar/pagdc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/avantgar/pagdo8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/avantgar/pagk8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/avantgar/pagkc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/avantgar/pagko8z.tfm
+ texmf-dist/fonts/tfm/groff/avantgar/pagd8g.tfm
+ texmf-dist/fonts/tfm/groff/avantgar/pagdo8g.tfm
+ texmf-dist/fonts/tfm/groff/avantgar/pagk8g.tfm
+ texmf-dist/fonts/tfm/groff/avantgar/pagko8g.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagb7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagb8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagb8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagb8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbi7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbi8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbi8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbi8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagbo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagd7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagd8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagd8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagd8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagdc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagdc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagdo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagdo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagdo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagdo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagk7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagk8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagk8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagk8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagkc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagkc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagko7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagko8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagko8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagko8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagr7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagr8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagr8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagr8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagrc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagrc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagri7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagri8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagri8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagri8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagro7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagro8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagro8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/avantgar/uagro8t.tfm
+ texmf-dist/fonts/type1/urw/avantgar/uagd8a.pfb
+ texmf-dist/fonts/type1/urw/avantgar/uagd8a.pfm
+ texmf-dist/fonts/type1/urw/avantgar/uagdo8a.pfb
+ texmf-dist/fonts/type1/urw/avantgar/uagdo8a.pfm
+ texmf-dist/fonts/type1/urw/avantgar/uagk8a.pfb
+ texmf-dist/fonts/type1/urw/avantgar/uagk8a.pfm
+ texmf-dist/fonts/type1/urw/avantgar/uagko8a.pfb
+ texmf-dist/fonts/type1/urw/avantgar/uagko8a.pfm
+ texmf-dist/fonts/vf/adobe/avantgar/pagd.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagd7t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagd8c.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagd8t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagdc.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagdc7t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagdc8t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagdo.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagdo7t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagdo8c.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagdo8t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagk.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagk7t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagk8c.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagk8t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagkc.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagkc7t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagkc8t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagko.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagko7t.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagko8c.vf
+ texmf-dist/fonts/vf/adobe/avantgar/pagko8t.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/avantgar/pagd8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/avantgar/pagdc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/avantgar/pagdo8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/avantgar/pagk8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/avantgar/pagkc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/avantgar/pagko8z.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagb7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagb8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagb8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagbc7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagbc8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagbi7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagbi8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagbi8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagbo7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagbo8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagbo8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagd7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagd8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagd8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagdc7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagdc8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagdo7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagdo8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagdo8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagk7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagk8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagk8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagkc7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagkc8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagko7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagko8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagko8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagr7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagr8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagr8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagrc7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagrc8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagri7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagri8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagri8t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagro7t.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagro8c.vf
+ texmf-dist/fonts/vf/urw35vf/avantgar/uagro8t.vf
+ texmf-dist/tex/latex/avantgar/8ruag.fd
+ texmf-dist/tex/latex/avantgar/omluag.fd
+ texmf-dist/tex/latex/avantgar/omsuag.fd
+ texmf-dist/tex/latex/avantgar/ot1uag.fd
+ texmf-dist/tex/latex/avantgar/t1uag.fd
+ texmf-dist/tex/latex/avantgar/ts1uag.fd
+
+name babel
+category Package
+revision 5335
+shortdesc Multilingual support for Plain TeX or LaTeX.
+docfiles size=3454264
+ texmf-dist/doc/generic/babel/00readme.heb
+ texmf-dist/doc/generic/babel/00readme.txt
+ texmf-dist/doc/generic/babel/GreekFonts.txt
+ texmf-dist/doc/generic/babel/announce.txt
+ texmf-dist/doc/generic/babel/athnum.pdf
+ texmf-dist/doc/generic/babel/babel.pdf
+ texmf-dist/doc/generic/babel/bbcompat.pdf
+ texmf-dist/doc/generic/babel/bbidxglo.pdf
+ texmf-dist/doc/generic/babel/bugs.txt
+ texmf-dist/doc/generic/babel/changes.txt
+ texmf-dist/doc/generic/babel/fixes.txt
+ texmf-dist/doc/generic/babel/greek-fdd.pdf
+ texmf-dist/doc/generic/babel/greek-usage.pdf
+ texmf-dist/doc/generic/babel/grmath.pdf
+ texmf-dist/doc/generic/babel/grsymb.pdf
+ texmf-dist/doc/generic/babel/howtoget.txt
+ texmf-dist/doc/generic/babel/install.OzTeX-4
+ texmf-dist/doc/generic/babel/install.OzTeX-pre4
+ texmf-dist/doc/generic/babel/install.txt
+ texmf-dist/doc/generic/babel/language.dat
+ texmf-dist/doc/generic/babel/language.skeleton
+ texmf-dist/doc/generic/babel/legal.bbl
+ texmf-dist/doc/generic/babel/manifest.bbl
+ texmf-dist/doc/generic/babel/tb1202.pdf
+ texmf-dist/doc/generic/babel/tb1401.pdf
+ texmf-dist/doc/generic/babel/tb1604.pdf
+ texmf-dist/doc/generic/babel/todo.txt
+srcfiles size=1743075
+ texmf-dist/source/generic/babel/albanian.dtx
+ texmf-dist/source/generic/babel/albanian.ins
+ texmf-dist/source/generic/babel/athnum.dtx
+ texmf-dist/source/generic/babel/babel.dtx
+ texmf-dist/source/generic/babel/babel.ins
+ texmf-dist/source/generic/babel/bahasa.dtx
+ texmf-dist/source/generic/babel/bahasa.ins
+ texmf-dist/source/generic/babel/bahasam.dtx
+ texmf-dist/source/generic/babel/base.ins
+ texmf-dist/source/generic/babel/basque.dtx
+ texmf-dist/source/generic/babel/basque.ins
+ texmf-dist/source/generic/babel/bbcompat.dtx
+ texmf-dist/source/generic/babel/bbidxglo.dtx
+ texmf-dist/source/generic/babel/bbplain.dtx
+ texmf-dist/source/generic/babel/breton.dtx
+ texmf-dist/source/generic/babel/breton.ins
+ texmf-dist/source/generic/babel/bulgarian.dtx
+ texmf-dist/source/generic/babel/bulgarian.ins
+ texmf-dist/source/generic/babel/catalan.dtx
+ texmf-dist/source/generic/babel/catalan.ins
+ texmf-dist/source/generic/babel/catmik.tex
+ texmf-dist/source/generic/babel/croatian.dtx
+ texmf-dist/source/generic/babel/croatian.ins
+ texmf-dist/source/generic/babel/czech.dtx
+ texmf-dist/source/generic/babel/czech.ins
+ texmf-dist/source/generic/babel/danish.dtx
+ texmf-dist/source/generic/babel/danish.ins
+ texmf-dist/source/generic/babel/dutch.dtx
+ texmf-dist/source/generic/babel/dutch.ins
+ texmf-dist/source/generic/babel/english.dtx
+ texmf-dist/source/generic/babel/english.ins
+ texmf-dist/source/generic/babel/esperanto.dtx
+ texmf-dist/source/generic/babel/esperanto.ins
+ texmf-dist/source/generic/babel/estonian.dtx
+ texmf-dist/source/generic/babel/estonian.ins
+ texmf-dist/source/generic/babel/finnish.dtx
+ texmf-dist/source/generic/babel/finnish.ins
+ texmf-dist/source/generic/babel/frenchb.dtx
+ texmf-dist/source/generic/babel/frenchb.ins
+ texmf-dist/source/generic/babel/galician.dtx
+ texmf-dist/source/generic/babel/galician.ins
+ texmf-dist/source/generic/babel/german.ins
+ texmf-dist/source/generic/babel/germanb.dtx
+ texmf-dist/source/generic/babel/greek.dtx
+ texmf-dist/source/generic/babel/greek.fdd
+ texmf-dist/source/generic/babel/greek.ins
+ texmf-dist/source/generic/babel/grmath.dtx
+ texmf-dist/source/generic/babel/grsymb.dtx
+ texmf-dist/source/generic/babel/heb209.dtx
+ texmf-dist/source/generic/babel/hebinp.dtx
+ texmf-dist/source/generic/babel/hebrew.dtx
+ texmf-dist/source/generic/babel/hebrew.fdd
+ texmf-dist/source/generic/babel/hebrew.ins
+ texmf-dist/source/generic/babel/icelandic.dtx
+ texmf-dist/source/generic/babel/icelandic.ins
+ texmf-dist/source/generic/babel/interlingua.dtx
+ texmf-dist/source/generic/babel/interlingua.ins
+ texmf-dist/source/generic/babel/irish.dtx
+ texmf-dist/source/generic/babel/irish.ins
+ texmf-dist/source/generic/babel/italian.dtx
+ texmf-dist/source/generic/babel/italian.ins
+ texmf-dist/source/generic/babel/language.dat
+ texmf-dist/source/generic/babel/latin.dtx
+ texmf-dist/source/generic/babel/latin.ins
+ texmf-dist/source/generic/babel/lsorbian.dtx
+ texmf-dist/source/generic/babel/magyar.dtx
+ texmf-dist/source/generic/babel/magyar.ins
+ texmf-dist/source/generic/babel/mik2t2.tex
+ texmf-dist/source/generic/babel/ngermanb.dtx
+ texmf-dist/source/generic/babel/norsk.dtx
+ texmf-dist/source/generic/babel/norsk.ins
+ texmf-dist/source/generic/babel/polish.dtx
+ texmf-dist/source/generic/babel/polish.ins
+ texmf-dist/source/generic/babel/portuges.dtx
+ texmf-dist/source/generic/babel/portuges.ins
+ texmf-dist/source/generic/babel/romanian.dtx
+ texmf-dist/source/generic/babel/romanian.ins
+ texmf-dist/source/generic/babel/russianb.dtx
+ texmf-dist/source/generic/babel/russianb.ins
+ texmf-dist/source/generic/babel/samin.dtx
+ texmf-dist/source/generic/babel/samin.ins
+ texmf-dist/source/generic/babel/scottish.dtx
+ texmf-dist/source/generic/babel/scottish.ins
+ texmf-dist/source/generic/babel/serbian.dtx
+ texmf-dist/source/generic/babel/serbian.ins
+ texmf-dist/source/generic/babel/slovak.dtx
+ texmf-dist/source/generic/babel/slovak.ins
+ texmf-dist/source/generic/babel/slovene.dtx
+ texmf-dist/source/generic/babel/slovene.ins
+ texmf-dist/source/generic/babel/sorbian.ins
+ texmf-dist/source/generic/babel/spanish.dtx
+ texmf-dist/source/generic/babel/spanish.ins
+ texmf-dist/source/generic/babel/swedish.dtx
+ texmf-dist/source/generic/babel/swedish.ins
+ texmf-dist/source/generic/babel/tb1202.tex
+ texmf-dist/source/generic/babel/tb1401.tex
+ texmf-dist/source/generic/babel/tb1604.tex
+ texmf-dist/source/generic/babel/turkish.dtx
+ texmf-dist/source/generic/babel/turkish.ins
+ texmf-dist/source/generic/babel/ukraineb.dtx
+ texmf-dist/source/generic/babel/ukraineb.ins
+ texmf-dist/source/generic/babel/usage.tex
+ texmf-dist/source/generic/babel/usorbian.dtx
+ texmf-dist/source/generic/babel/welsh.dtx
+ texmf-dist/source/generic/babel/welsh.ins
+runfiles size=824650
+ texmf-dist/makeindex/babel/bbglo.ist
+ texmf-dist/makeindex/babel/bbind.ist
+ texmf-dist/tex/generic/babel/8859-8.def
+ texmf-dist/tex/generic/babel/UKenglish.sty
+ texmf-dist/tex/generic/babel/USenglish.sty
+ texmf-dist/tex/generic/babel/afrikaans.sty
+ texmf-dist/tex/generic/babel/albanian.ldf
+ texmf-dist/tex/generic/babel/albanian.sty
+ texmf-dist/tex/generic/babel/american.sty
+ texmf-dist/tex/generic/babel/athnum.sty
+ texmf-dist/tex/generic/babel/austrian.sty
+ texmf-dist/tex/generic/babel/babel.def
+ texmf-dist/tex/generic/babel/babel.sty
+ texmf-dist/tex/generic/babel/bahasa.sty
+ texmf-dist/tex/generic/babel/bahasai.ldf
+ texmf-dist/tex/generic/babel/bahasam.ldf
+ texmf-dist/tex/generic/babel/bahasam.sty
+ texmf-dist/tex/generic/babel/basque.ldf
+ texmf-dist/tex/generic/babel/basque.sty
+ texmf-dist/tex/generic/babel/blplain.tex
+ texmf-dist/tex/generic/babel/bplain.tex
+ texmf-dist/tex/generic/babel/breton.ldf
+ texmf-dist/tex/generic/babel/breton.sty
+ texmf-dist/tex/generic/babel/british.sty
+ texmf-dist/tex/generic/babel/bulgarian.ldf
+ texmf-dist/tex/generic/babel/bulgarian.sty
+ texmf-dist/tex/generic/babel/catalan.ldf
+ texmf-dist/tex/generic/babel/catalan.sty
+ texmf-dist/tex/generic/babel/cp1255.def
+ texmf-dist/tex/generic/babel/cp862.def
+ texmf-dist/tex/generic/babel/croatian.ldf
+ texmf-dist/tex/generic/babel/croatian.sty
+ texmf-dist/tex/generic/babel/czech.ldf
+ texmf-dist/tex/generic/babel/czech.sty
+ texmf-dist/tex/generic/babel/danish.ldf
+ texmf-dist/tex/generic/babel/danish.sty
+ texmf-dist/tex/generic/babel/dutch.ldf
+ texmf-dist/tex/generic/babel/dutch.sty
+ texmf-dist/tex/generic/babel/english.ldf
+ texmf-dist/tex/generic/babel/english.sty
+ texmf-dist/tex/generic/babel/esbst.tex
+ texmf-dist/tex/generic/babel/esperanto.ldf
+ texmf-dist/tex/generic/babel/esperanto.sty
+ texmf-dist/tex/generic/babel/estonian.ldf
+ texmf-dist/tex/generic/babel/estonian.sty
+ texmf-dist/tex/generic/babel/finnish.ldf
+ texmf-dist/tex/generic/babel/finnish.sty
+ texmf-dist/tex/generic/babel/francais.sty
+ texmf-dist/tex/generic/babel/frenchb.cfg
+ texmf-dist/tex/generic/babel/frenchb.ldf
+ texmf-dist/tex/generic/babel/galician.ldf
+ texmf-dist/tex/generic/babel/galician.sty
+ texmf-dist/tex/generic/babel/germanb.ldf
+ texmf-dist/tex/generic/babel/germanb.sty
+ texmf-dist/tex/generic/babel/greek.ldf
+ texmf-dist/tex/generic/babel/greek.sty
+ texmf-dist/tex/generic/babel/grmath.sty
+ texmf-dist/tex/generic/babel/grsymb.sty
+ texmf-dist/tex/generic/babel/he8OmegaHebrew.fd
+ texmf-dist/tex/generic/babel/he8aharoni.fd
+ texmf-dist/tex/generic/babel/he8cmr.fd
+ texmf-dist/tex/generic/babel/he8cmss.fd
+ texmf-dist/tex/generic/babel/he8cmtt.fd
+ texmf-dist/tex/generic/babel/he8david.fd
+ texmf-dist/tex/generic/babel/he8drugulin.fd
+ texmf-dist/tex/generic/babel/he8enc.def
+ texmf-dist/tex/generic/babel/he8frankruehl.fd
+ texmf-dist/tex/generic/babel/he8miriam.fd
+ texmf-dist/tex/generic/babel/he8nachlieli.fd
+ texmf-dist/tex/generic/babel/he8yad.fd
+ texmf-dist/tex/generic/babel/hebcal.sty
+ texmf-dist/tex/generic/babel/hebfont.sty
+ texmf-dist/tex/generic/babel/hebrew.ldf
+ texmf-dist/tex/generic/babel/hebrew.sty
+ texmf-dist/tex/generic/babel/hebrew_newcode.sty
+ texmf-dist/tex/generic/babel/hebrew_oldcode.sty
+ texmf-dist/tex/generic/babel/hebrew_p.sty
+ texmf-dist/tex/generic/babel/hyphen.cfg
+ texmf-dist/tex/generic/babel/icelandic.ldf
+ texmf-dist/tex/generic/babel/icelandic.sty
+ texmf-dist/tex/generic/babel/interlingua.ldf
+ texmf-dist/tex/generic/babel/interlingua.sty
+ texmf-dist/tex/generic/babel/irish.ldf
+ texmf-dist/tex/generic/babel/irish.sty
+ texmf-dist/tex/generic/babel/italian.ldf
+ texmf-dist/tex/generic/babel/italian.sty
+ texmf-dist/tex/generic/babel/latin.ldf
+ texmf-dist/tex/generic/babel/latin.sty
+ texmf-dist/tex/generic/babel/lgrcmr.fd
+ texmf-dist/tex/generic/babel/lgrcmro.fd
+ texmf-dist/tex/generic/babel/lgrcmss.fd
+ texmf-dist/tex/generic/babel/lgrcmtt.fd
+ texmf-dist/tex/generic/babel/lgrenc.def
+ texmf-dist/tex/generic/babel/lgrlcmss.fd
+ texmf-dist/tex/generic/babel/lgrlcmtt.fd
+ texmf-dist/tex/generic/babel/lheclas.fd
+ texmf-dist/tex/generic/babel/lhecmr.fd
+ texmf-dist/tex/generic/babel/lhecmss.fd
+ texmf-dist/tex/generic/babel/lhecmtt.fd
+ texmf-dist/tex/generic/babel/lhecrml.fd
+ texmf-dist/tex/generic/babel/lheenc.def
+ texmf-dist/tex/generic/babel/lhefr.fd
+ texmf-dist/tex/generic/babel/lheredis.fd
+ texmf-dist/tex/generic/babel/lheshold.fd
+ texmf-dist/tex/generic/babel/lheshscr.fd
+ texmf-dist/tex/generic/babel/lheshstk.fd
+ texmf-dist/tex/generic/babel/lsorbian.ldf
+ texmf-dist/tex/generic/babel/lsorbian.sty
+ texmf-dist/tex/generic/babel/magyar.ldf
+ texmf-dist/tex/generic/babel/magyar.sty
+ texmf-dist/tex/generic/babel/naustrian.sty
+ texmf-dist/tex/generic/babel/ngermanb.ldf
+ texmf-dist/tex/generic/babel/ngermanb.sty
+ texmf-dist/tex/generic/babel/norsk.ldf
+ texmf-dist/tex/generic/babel/norsk.sty
+ texmf-dist/tex/generic/babel/plain.def
+ texmf-dist/tex/generic/babel/polish.ldf
+ texmf-dist/tex/generic/babel/polish.sty
+ texmf-dist/tex/generic/babel/portuges.ldf
+ texmf-dist/tex/generic/babel/portuges.sty
+ texmf-dist/tex/generic/babel/rlbabel.def
+ texmf-dist/tex/generic/babel/romanian.ldf
+ texmf-dist/tex/generic/babel/romanian.sty
+ texmf-dist/tex/generic/babel/romanidx.tex
+ texmf-dist/tex/generic/babel/russianb.ldf
+ texmf-dist/tex/generic/babel/russianb.sty
+ texmf-dist/tex/generic/babel/samin.ldf
+ texmf-dist/tex/generic/babel/samin.sty
+ texmf-dist/tex/generic/babel/scottish.ldf
+ texmf-dist/tex/generic/babel/scottish.sty
+ texmf-dist/tex/generic/babel/serbian.ldf
+ texmf-dist/tex/generic/babel/serbian.sty
+ texmf-dist/tex/generic/babel/si960.def
+ texmf-dist/tex/generic/babel/slovak.ldf
+ texmf-dist/tex/generic/babel/slovak.sty
+ texmf-dist/tex/generic/babel/slovene.ldf
+ texmf-dist/tex/generic/babel/slovene.sty
+ texmf-dist/tex/generic/babel/spanish.ldf
+ texmf-dist/tex/generic/babel/spanish.sty
+ texmf-dist/tex/generic/babel/swedish.ldf
+ texmf-dist/tex/generic/babel/swedish.sty
+ texmf-dist/tex/generic/babel/switch.def
+ texmf-dist/tex/generic/babel/turkish.ldf
+ texmf-dist/tex/generic/babel/turkish.sty
+ texmf-dist/tex/generic/babel/ukraineb.ldf
+ texmf-dist/tex/generic/babel/ukraineb.sty
+ texmf-dist/tex/generic/babel/usorbian.ldf
+ texmf-dist/tex/generic/babel/usorbian.sty
+ texmf-dist/tex/generic/babel/welsh.ldf
+ texmf-dist/tex/generic/babel/welsh.sty
+catalogue-version 3.8h
+catalogue-date 2006-12-14 21:17:11 +0100
+catalogue-ctan /macros/latex/required/babel
+catalogue-license lppl
+
+name babelbib
+category Package
+revision 2240
+shortdesc Multilingual bibliographies.
+longdesc This package enables to generate multilingual bibliographies in
+longdesc cooperation with babel. Two approaches are possible: Each
+longdesc citation may be written in another language, or the whole
+longdesc bibliography can be typeset in a language chosen by the user.
+longdesc In addition, the package supports commands to change the
+longdesc typography of the bibliographies.
+docfiles size=1343127
+ texmf-dist/doc/latex/babelbib/ChangeLog
+ texmf-dist/doc/latex/babelbib/README details="Readme"
+ texmf-dist/doc/latex/babelbib/babelbib.pdf details="Package documentation"
+ texmf-dist/doc/latex/babelbib/babelbib.xml
+ texmf-dist/doc/latex/babelbib/babelbibtest.bib
+ texmf-dist/doc/latex/babelbib/babelbibtest.tex
+ texmf-dist/doc/latex/babelbib/getversion.tex
+ texmf-dist/doc/latex/babelbib/tugboat-babelbib.pdf
+srcfiles size=279763
+ texmf-dist/source/latex/babelbib/Makefile
+ texmf-dist/source/latex/babelbib/babelbib.dtx
+ texmf-dist/source/latex/babelbib/babelbib.ins
+runfiles size=675952
+ texmf-dist/bibtex/bst/babelbib/bababbr3-fl.bst
+ texmf-dist/bibtex/bst/babelbib/bababbr3-lf.bst
+ texmf-dist/bibtex/bst/babelbib/bababbr3.bst
+ texmf-dist/bibtex/bst/babelbib/bababbrv-fl.bst
+ texmf-dist/bibtex/bst/babelbib/bababbrv-lf.bst
+ texmf-dist/bibtex/bst/babelbib/bababbrv.bst
+ texmf-dist/bibtex/bst/babelbib/babalpha-fl.bst
+ texmf-dist/bibtex/bst/babelbib/babalpha-lf.bst
+ texmf-dist/bibtex/bst/babelbib/babalpha.bst
+ texmf-dist/bibtex/bst/babelbib/babamspl.bst
+ texmf-dist/bibtex/bst/babelbib/babplai3-fl.bst
+ texmf-dist/bibtex/bst/babelbib/babplai3-lf.bst
+ texmf-dist/bibtex/bst/babelbib/babplai3.bst
+ texmf-dist/bibtex/bst/babelbib/babplain-fl.bst
+ texmf-dist/bibtex/bst/babelbib/babplain-lf.bst
+ texmf-dist/bibtex/bst/babelbib/babplain.bst
+ texmf-dist/bibtex/bst/babelbib/babunsrt-fl.bst
+ texmf-dist/bibtex/bst/babelbib/babunsrt-lf.bst
+ texmf-dist/bibtex/bst/babelbib/babunsrt.bst
+ texmf-dist/tex/latex/babelbib/afrikaans.bdf
+ texmf-dist/tex/latex/babelbib/babelbib.sty
+ texmf-dist/tex/latex/babelbib/catalan.bdf
+ texmf-dist/tex/latex/babelbib/danish.bdf
+ texmf-dist/tex/latex/babelbib/dutch.bdf
+ texmf-dist/tex/latex/babelbib/english.bdf
+ texmf-dist/tex/latex/babelbib/esperanto.bdf
+ texmf-dist/tex/latex/babelbib/finnish.bdf
+ texmf-dist/tex/latex/babelbib/french.bdf
+ texmf-dist/tex/latex/babelbib/german.bdf
+ texmf-dist/tex/latex/babelbib/greek.bdf
+ texmf-dist/tex/latex/babelbib/italian.bdf
+ texmf-dist/tex/latex/babelbib/norsk.bdf
+ texmf-dist/tex/latex/babelbib/portuguese.bdf
+ texmf-dist/tex/latex/babelbib/spanish.bdf
+ texmf-dist/tex/latex/babelbib/swedish.bdf
+catalogue-version 1.20
+catalogue-date 2006-12-28 11:26:53 +0100
+catalogue-ctan /biblio/bibtex/contrib/babelbib
+catalogue-license lppl
+
+name backgammon
+category Package
+revision 1487
+shortdesc Package for typesetting backgammon.
+longdesc The package was designed to annotate backgammon matches and
+longdesc positions; it is accompanied by a font (distributed as MetaFont
+longdesc source).
+docfiles size=31754
+ texmf-dist/doc/latex/backgammon/description.ps.gz
+ texmf-dist/doc/latex/backgammon/sampletext.dvi
+ texmf-dist/doc/latex/backgammon/sampletext.tex
+srcfiles size=411
+ texmf-dist/source/latex/backgammon/README
+ texmf-dist/source/latex/backgammon/make_font
+runfiles size=40247
+ texmf-dist/fonts/source/public/backgammon/bg.mf
+ texmf-dist/fonts/tfm/public/backgammon/bg.tfm
+ texmf-dist/tex/latex/backgammon/bg.sty
+catalogue-version
+catalogue-date 2006-12-14 21:17:11 +0100
+catalogue-ctan /macros/latex/contrib/bg
+catalogue-license other-free
+
+name bangtex
+category Package
+revision 1487
+shortdesc Writing Bangla and Assamese with LaTeX.
+longdesc The bundle provides class files for writing Bangla and Assamese
+longdesc with LaTeX, and MetaFont sources for fonts.
+docfiles size=153836
+ texmf-dist/doc/latex/bangtex/README.bangtex
+ texmf-dist/doc/latex/bangtex/bangfont.tex
+ texmf-dist/doc/latex/bangtex/manual.dvi
+ texmf-dist/doc/latex/bangtex/manual.tex
+ texmf-dist/doc/latex/bangtex/samplett.tex
+ texmf-dist/doc/latex/bangtex/samptex.tex
+runfiles size=263057
+ texmf-dist/fonts/source/public/bangtex/bang10.mf
+ texmf-dist/fonts/source/public/bangtex/bangbase.mf
+ texmf-dist/fonts/source/public/bangtex/bangconso.mf
+ texmf-dist/fonts/source/public/bangtex/bangdefs.mf
+ texmf-dist/fonts/source/public/bangtex/bangfala.mf
+ texmf-dist/fonts/source/public/bangtex/banghalf.mf
+ texmf-dist/fonts/source/public/bangtex/bangjuk.mf
+ texmf-dist/fonts/source/public/bangtex/bangkaar.mf
+ texmf-dist/fonts/source/public/bangtex/banglig.mf
+ texmf-dist/fonts/source/public/bangtex/bangmac.mf
+ texmf-dist/fonts/source/public/bangtex/bangnum.mf
+ texmf-dist/fonts/source/public/bangtex/bangpunc.mf
+ texmf-dist/fonts/source/public/bangtex/bangsl10.mf
+ texmf-dist/fonts/source/public/bangtex/bangvow.mf
+ texmf-dist/fonts/source/public/bangtex/bangwd10.mf
+ texmf-dist/fonts/tfm/public/bangtex/bang10.tfm
+ texmf-dist/fonts/tfm/public/bangtex/bangsl10.tfm
+ texmf-dist/fonts/tfm/public/bangtex/bangwd10.tfm
+ texmf-dist/tex/latex/bangtex/barticle.cls
+ texmf-dist/tex/latex/bangtex/bbk10.clo
+ texmf-dist/tex/latex/bangtex/bbk11.clo
+ texmf-dist/tex/latex/bangtex/bbk12.clo
+ texmf-dist/tex/latex/bangtex/bbook.cls
+ texmf-dist/tex/latex/bangtex/bletter.cls
+ texmf-dist/tex/latex/bangtex/bsize10.clo
+ texmf-dist/tex/latex/bangtex/bsize11.clo
+ texmf-dist/tex/latex/bangtex/bsize12.clo
+catalogue-version
+catalogue-date 2006-12-14 21:17:11 +0100
+catalogue-ctan /language/bangtex
+catalogue-license lppl
+
+name barcodes
+category Package
+revision 4706
+shortdesc Fonts for making barcodes.
+longdesc The package deals with EAN barcodes; MetaFont fonts are
+longdesc provided, and a set of examples; for some codes, a small Perl
+longdesc script is needed.
+docfiles size=271330
+ texmf-dist/doc/latex/barcodes/README details="Package Readme"
+ texmf-dist/doc/latex/barcodes/bcfaq.tex
+ texmf-dist/doc/latex/barcodes/changes
+ texmf-dist/doc/latex/barcodes/code39.tex
+ texmf-dist/doc/latex/barcodes/codean.pl
+ texmf-dist/doc/latex/barcodes/eandoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/barcodes/eandoc.tex
+ texmf-dist/doc/latex/barcodes/examples.tex
+ texmf-dist/doc/latex/barcodes/install.bat
+ texmf-dist/doc/latex/barcodes/wlcdb.vpl
+ texmf-dist/doc/latex/barcodes/wlcf39.vpl
+ texmf-dist/doc/latex/barcodes/wlitf.vpl
+srcfiles size=83110
+ texmf-dist/source/latex/barcodes/barcodes.dtx
+ texmf-dist/source/latex/barcodes/barcodes.ins
+runfiles size=35357
+ texmf-dist/fonts/source/public/barcodes/wlc11.mf
+ texmf-dist/fonts/source/public/barcodes/wlc128.mf
+ texmf-dist/fonts/source/public/barcodes/wlc39.mf
+ texmf-dist/fonts/source/public/barcodes/wlc93.mf
+ texmf-dist/fonts/source/public/barcodes/wlcr39.mf
+ texmf-dist/fonts/source/public/barcodes/wlean.mf
+ texmf-dist/fonts/tfm/public/barcodes/wlc11.tfm
+ texmf-dist/fonts/tfm/public/barcodes/wlc128.tfm
+ texmf-dist/fonts/tfm/public/barcodes/wlc39.tfm
+ texmf-dist/fonts/tfm/public/barcodes/wlc93.tfm
+ texmf-dist/fonts/tfm/public/barcodes/wlcr39.tfm
+ texmf-dist/tex/latex/barcodes/barcodes.sty
+catalogue-version
+catalogue-date 2007-07-29 12:17:48 +0200
+catalogue-ctan /fonts/barcodes/willadt
+catalogue-license lppl
+
+name bardiag
+category Package
+revision 1487
+shortdesc LateX package for drawing bar diagrams.
+longdesc The main purpose of the package is to make the drawing of bar
+longdesc diagrams possible and easy in LaTeX. The BarDiag package is
+longdesc inspired by and based on PSTricks.
+docfiles size=2334706
+ texmf-dist/doc/latex/bardiag/README details="Readme"
+ texmf-dist/doc/latex/bardiag/bardiag.ps
+ texmf-dist/doc/latex/bardiag/bardiag.tex
+ texmf-dist/doc/latex/bardiag/bardiag1.ps
+ texmf-dist/doc/latex/bardiag/bardiag1.tex
+ texmf-dist/doc/latex/bardiag/bardiag2.ps
+ texmf-dist/doc/latex/bardiag/bardiag2.tex
+ texmf-dist/doc/latex/bardiag/example/altdiags.ps
+ texmf-dist/doc/latex/bardiag/example/altdiags.tex
+ texmf-dist/doc/latex/bardiag/example/barddoc.sty
+ texmf-dist/doc/latex/bardiag/example/bardiag.bar
+ texmf-dist/doc/latex/bardiag/example/bardiag.cfg
+ texmf-dist/doc/latex/bardiag/example/bardiag.sty
+ texmf-dist/doc/latex/bardiag/example/compile.all
+ texmf-dist/doc/latex/bardiag/example/diagrams.dvi
+ texmf-dist/doc/latex/bardiag/example/diagrams.ps
+ texmf-dist/doc/latex/bardiag/example/diagrams.tex
+ texmf-dist/doc/latex/bardiag/example/diagramsbw.ps
+ texmf-dist/doc/latex/bardiag/example/diagramsbw.tex
+ texmf-dist/doc/latex/bardiag/example/pstfp.sty
+ texmf-dist/doc/latex/bardiag/example/src/10.tex
+ texmf-dist/doc/latex/bardiag/example/src/1a.tex
+ texmf-dist/doc/latex/bardiag/example/src/1b.tex
+ texmf-dist/doc/latex/bardiag/example/src/2a.tex
+ texmf-dist/doc/latex/bardiag/example/src/2b.tex
+ texmf-dist/doc/latex/bardiag/example/src/3.tex
+ texmf-dist/doc/latex/bardiag/example/src/4.tex
+ texmf-dist/doc/latex/bardiag/example/src/5.tex
+ texmf-dist/doc/latex/bardiag/example/src/6.tex
+ texmf-dist/doc/latex/bardiag/example/src/7.tex
+ texmf-dist/doc/latex/bardiag/example/src/8.tex
+ texmf-dist/doc/latex/bardiag/example/src/9.tex
+ texmf-dist/doc/latex/bardiag/figs/diag.eps
+ texmf-dist/doc/latex/bardiag/figs/diagleg.eps
+ texmf-dist/doc/latex/bardiag/figs/examp1.tex
+ texmf-dist/doc/latex/bardiag/figs/examp1a.tex
+ texmf-dist/doc/latex/bardiag/figs/examp1b.tex
+ texmf-dist/doc/latex/bardiag/figs/examp2.tex
+ texmf-dist/doc/latex/bardiag/figs/examp2er.tex
+ texmf-dist/doc/latex/bardiag/figs/examp3.tex
+ texmf-dist/doc/latex/bardiag/figs/examp4.tex
+ texmf-dist/doc/latex/bardiag/figs/examp5.tex
+ texmf-dist/doc/latex/bardiag/figs/examp6.tex
+ texmf-dist/doc/latex/bardiag/figs/exampcr.tex
+ texmf-dist/doc/latex/bardiag/figs/tddiag.eps
+ texmf-dist/doc/latex/bardiag/src/10.tex
+ texmf-dist/doc/latex/bardiag/src/1a.tex
+ texmf-dist/doc/latex/bardiag/src/1b.tex
+ texmf-dist/doc/latex/bardiag/src/2a.tex
+ texmf-dist/doc/latex/bardiag/src/2b.tex
+ texmf-dist/doc/latex/bardiag/src/3.tex
+ texmf-dist/doc/latex/bardiag/src/4.tex
+ texmf-dist/doc/latex/bardiag/src/5.tex
+ texmf-dist/doc/latex/bardiag/src/6.tex
+ texmf-dist/doc/latex/bardiag/src/7.tex
+ texmf-dist/doc/latex/bardiag/src/8.tex
+ texmf-dist/doc/latex/bardiag/src/9.tex
+runfiles size=62936
+ texmf-dist/tex/latex/bardiag/barddoc.sty
+ texmf-dist/tex/latex/bardiag/bardiag.bar
+ texmf-dist/tex/latex/bardiag/bardiag.cfg
+ texmf-dist/tex/latex/bardiag/bardiag.sty
+ texmf-dist/tex/latex/bardiag/pstfp.sty
+catalogue-version 0.4a
+catalogue-date 2006-12-21 16:38:41 +0100
+catalogue-ctan /graphics/bardiag
+catalogue-license lppl
+
+name barr
+category Package
+revision 693
+docfiles size=69414
+ texmf-dist/doc/latex/barr/diagdoc.tex
+ texmf-dist/doc/latex/barr/diaxydoc.tex
+runfiles size=74884
+ texmf-dist/tex/latex/barr/diagram.tex
+ texmf-dist/tex/latex/barr/diagxy.tex
+
+name bayer
+category Package
+revision 695
+docfiles size=16313
+ texmf-dist/doc/latex/bayer/README
+ texmf-dist/doc/latex/bayer/forms.eps
+ texmf-dist/doc/latex/bayer/front.ps.gz
+srcfiles size=95814
+ texmf-dist/source/latex/bayer/universal.dtx
+ texmf-dist/source/latex/bayer/universal.ins
+runfiles size=75568
+ texmf-dist/fonts/source/public/bayer/universal-accents.mf
+ texmf-dist/fonts/source/public/bayer/universal-digits.mf
+ texmf-dist/fonts/source/public/bayer/universal-extras.mf
+ texmf-dist/fonts/source/public/bayer/universal-ligatures.mf
+ texmf-dist/fonts/source/public/bayer/universal-lowers.mf
+ texmf-dist/fonts/source/public/bayer/universal-punctuations.mf
+ texmf-dist/fonts/source/public/bayer/universal-specials.mf
+ texmf-dist/fonts/source/public/bayer/universal-uppers.mf
+ texmf-dist/fonts/source/public/bayer/universal.mf
+ texmf-dist/fonts/source/public/bayer/universal10.mf
+ texmf-dist/fonts/source/public/bayer/universal12.mf
+ texmf-dist/fonts/source/public/bayer/universal17.mf
+ texmf-dist/fonts/source/public/bayer/universal8.mf
+ texmf-dist/fonts/source/public/bayer/universal9.mf
+ texmf-dist/fonts/tfm/public/bayer/universal10.tfm
+ texmf-dist/fonts/tfm/public/bayer/universal12.tfm
+ texmf-dist/fonts/tfm/public/bayer/universal17.tfm
+ texmf-dist/fonts/tfm/public/bayer/universal8.tfm
+ texmf-dist/fonts/tfm/public/bayer/universal9.tfm
+ texmf-dist/tex/latex/bayer/ot1universal.fd
+ texmf-dist/tex/latex/bayer/universal.sty
+
+name bbding
+category Package
+revision 696
+shortdesc A symbol (dingbat) font and LaTeX macros for its use.
+longdesc A symbol font (distributed as MetaFont source) that contains
+longdesc many of the symbols of the Zapf dingbats set, together with an
+longdesc NFSS interface for using the font.
+srcfiles size=32556
+ texmf-dist/source/latex/bbding/bbding.dtx
+ texmf-dist/source/latex/bbding/bbding.ins
+runfiles size=89220
+ texmf-dist/fonts/source/public/bbding/bbding10.mf
+ texmf-dist/fonts/tfm/public/bbding/bbding10.tfm
+ texmf-dist/tex/latex/bbding/Uding.fd
+ texmf-dist/tex/latex/bbding/bbding.sty
+catalogue-version 1.01
+catalogue-date 2006-12-21 16:38:41 +0100
+catalogue-ctan /fonts/bbding
+catalogue-license lppl
+
+name bbm
+category Package
+revision 5091
+shortdesc "Blackboard-style" cm fonts.
+longdesc Blackboard variants of Computer Modern fonts. The fonts are
+longdesc distributed as MetaFont source (only); LaTeX support is
+longdesc available with the bbm-macros package. The Sauter font package
+longdesc has MetaFont parameter source files for building the fonts at
+longdesc more sizes than you could reasonably imagine. These fonts
+longdesc appear in the blackboard bold sampler.
+docfiles size=7312
+ texmf-dist/doc/fonts/bbm/bbm.readme
+ texmf-dist/doc/fonts/bbm/gfbatch.batch
+ texmf-dist/doc/fonts/bbm/mfbatch.batch
+ texmf-dist/doc/fonts/bbm/test.tex
+srcfiles size=12806
+ texmf-dist/source/latex/bbm/bbm.drv
+ texmf-dist/source/latex/bbm/bbm.dtx
+ texmf-dist/source/latex/bbm/bbm.ins
+ texmf-dist/source/latex/bbm/readme.bbm
+runfiles size=312376
+ texmf-dist/fonts/source/public/bbm/bbm10.mf
+ texmf-dist/fonts/source/public/bbm/bbm12.mf
+ texmf-dist/fonts/source/public/bbm/bbm17.mf
+ texmf-dist/fonts/source/public/bbm/bbm5.mf
+ texmf-dist/fonts/source/public/bbm/bbm6.mf
+ texmf-dist/fonts/source/public/bbm/bbm7.mf
+ texmf-dist/fonts/source/public/bbm/bbm8.mf
+ texmf-dist/fonts/source/public/bbm/bbm9.mf
+ texmf-dist/fonts/source/public/bbm/bbmb10.mf
+ texmf-dist/fonts/source/public/bbm/bbmbx10.mf
+ texmf-dist/fonts/source/public/bbm/bbmbx12.mf
+ texmf-dist/fonts/source/public/bbm/bbmbx5.mf
+ texmf-dist/fonts/source/public/bbm/bbmbx6.mf
+ texmf-dist/fonts/source/public/bbm/bbmbx7.mf
+ texmf-dist/fonts/source/public/bbm/bbmbx8.mf
+ texmf-dist/fonts/source/public/bbm/bbmbx9.mf
+ texmf-dist/fonts/source/public/bbm/bbmbxsl10.mf
+ texmf-dist/fonts/source/public/bbm/bbmdunh10.mf
+ texmf-dist/fonts/source/public/bbm/bbmfib8.mf
+ texmf-dist/fonts/source/public/bbm/bbminch.mf
+ texmf-dist/fonts/source/public/bbm/bbmsl10.mf
+ texmf-dist/fonts/source/public/bbm/bbmsl12.mf
+ texmf-dist/fonts/source/public/bbm/bbmsl8.mf
+ texmf-dist/fonts/source/public/bbm/bbmsl9.mf
+ texmf-dist/fonts/source/public/bbm/bbmsltt10.mf
+ texmf-dist/fonts/source/public/bbm/bbmss10.mf
+ texmf-dist/fonts/source/public/bbm/bbmss12.mf
+ texmf-dist/fonts/source/public/bbm/bbmss17.mf
+ texmf-dist/fonts/source/public/bbm/bbmss8.mf
+ texmf-dist/fonts/source/public/bbm/bbmss9.mf
+ texmf-dist/fonts/source/public/bbm/bbmssbx10.mf
+ texmf-dist/fonts/source/public/bbm/bbmssdc10.mf
+ texmf-dist/fonts/source/public/bbm/bbmssi10.mf
+ texmf-dist/fonts/source/public/bbm/bbmssi12.mf
+ texmf-dist/fonts/source/public/bbm/bbmssi17.mf
+ texmf-dist/fonts/source/public/bbm/bbmssi8.mf
+ texmf-dist/fonts/source/public/bbm/bbmssi9.mf
+ texmf-dist/fonts/source/public/bbm/bbmssq8.mf
+ texmf-dist/fonts/source/public/bbm/bbmssqi8.mf
+ texmf-dist/fonts/source/public/bbm/bbmtt10.mf
+ texmf-dist/fonts/source/public/bbm/bbmtt12.mf
+ texmf-dist/fonts/source/public/bbm/bbmtt8.mf
+ texmf-dist/fonts/source/public/bbm/bbmtt9.mf
+ texmf-dist/fonts/source/public/bbm/bbmvtt10.mf
+ texmf-dist/fonts/source/public/bbm/blbbase.mf
+ texmf-dist/fonts/source/public/bbm/blbord.mf
+ texmf-dist/fonts/source/public/bbm/blbordl.mf
+ texmf-dist/fonts/source/public/bbm/blbordsp.mf
+ texmf-dist/fonts/source/public/bbm/blbordu.mf
+ texmf-dist/fonts/tfm/public/bbm/bbm10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbm12.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbm17.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbm5.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbm6.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbm7.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbm8.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbm9.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmb10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmbx10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmbx12.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmbx5.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmbx6.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmbx7.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmbx8.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmbx9.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmbxsl10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmdunh10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmfib8.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmsl10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmsl12.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmsl8.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmsl9.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmss10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmss12.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmss17.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmss8.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmss9.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmssbx10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmssdc10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmssi10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmssi12.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmssi17.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmssi8.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmssi9.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmssq8.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmssqi8.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmtt10.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmtt12.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmtt8.tfm
+ texmf-dist/fonts/tfm/public/bbm/bbmtt9.tfm
+ texmf-dist/tex/latex/bbm/bbm.sty
+ texmf-dist/tex/latex/bbm/ubbm.fd
+ texmf-dist/tex/latex/bbm/ubbmss.fd
+ texmf-dist/tex/latex/bbm/ubbmtt.fd
+catalogue-version
+catalogue-date 2006-12-21 18:19:02 +0100
+catalogue-ctan /fonts/cm/bbm
+catalogue-license unknown
+
+name bbm-macros
+category Package
+revision 5092
+shortdesc LaTeX support for "blackboard-style" cm fonts.
+longdesc Provides LaTeX support for Blackboard variants of Computer
+longdesc Modern fonts. Declares a font family bbm so you can in
+longdesc principle write running text in blackboard bold, and lots of
+longdesc math alphabets for using the fonts within maths.
+docfiles size=971
+ texmf-dist/doc/latex/bbm-macros/bbm
+ texmf-dist/doc/latex/bbm-macros/readme.bbm
+srcfiles size=11859
+ texmf-dist/source/latex/bbm-macros/bbm.drv
+ texmf-dist/source/latex/bbm-macros/bbm.dtx
+ texmf-dist/source/latex/bbm-macros/bbm.ins
+runfiles size=7281
+ texmf-dist/tex/latex/bbm-macros/bbm.sty
+ texmf-dist/tex/latex/bbm-macros/ubbm.fd
+ texmf-dist/tex/latex/bbm-macros/ubbmss.fd
+ texmf-dist/tex/latex/bbm-macros/ubbmtt.fd
+catalogue-version
+catalogue-date 2006-12-21 18:19:02 +0100
+catalogue-ctan /macros/latex/contrib/bbm
+catalogue-license lppl
+
+name bbold
+category Package
+revision 698
+shortdesc Sans serif blackboard bold.
+longdesc A geometric sans serif blackboard bold font, for use in
+longdesc mathematics; MetaFont sources are provided, as well as macros
+longdesc for use with LaTeX. The Sauter font package has MetaFont
+longdesc parameter source files for building the fonts at more sizes
+longdesc than you could reasonably imagine. See the blackboard sampler
+longdesc for a feel for the font's appearance.
+docfiles size=1431
+ texmf-dist/doc/latex/bbold/INSTALL
+ texmf-dist/doc/latex/bbold/README
+srcfiles size=13406
+ texmf-dist/source/latex/bbold/bbold.dtx
+ texmf-dist/source/latex/bbold/bbold.ins
+ texmf-dist/source/latex/bbold/fonttabl.sty
+runfiles size=97965
+ texmf-dist/fonts/source/public/bbold/bbbase.mf
+ texmf-dist/fonts/source/public/bbold/bbgreekl.mf
+ texmf-dist/fonts/source/public/bbold/bbgreeku.mf
+ texmf-dist/fonts/source/public/bbold/bbligs.mf
+ texmf-dist/fonts/source/public/bbold/bblower.mf
+ texmf-dist/fonts/source/public/bbold/bbnum.mf
+ texmf-dist/fonts/source/public/bbold/bbold.mf
+ texmf-dist/fonts/source/public/bbold/bbold10.mf
+ texmf-dist/fonts/source/public/bbold/bbold12.mf
+ texmf-dist/fonts/source/public/bbold/bbold17.mf
+ texmf-dist/fonts/source/public/bbold/bbold5.mf
+ texmf-dist/fonts/source/public/bbold/bbold6.mf
+ texmf-dist/fonts/source/public/bbold/bbold7.mf
+ texmf-dist/fonts/source/public/bbold/bbold8.mf
+ texmf-dist/fonts/source/public/bbold/bbold9.mf
+ texmf-dist/fonts/source/public/bbold/bbparams.mf
+ texmf-dist/fonts/source/public/bbold/bbpunc.mf
+ texmf-dist/fonts/source/public/bbold/bbupper.mf
+ texmf-dist/fonts/tfm/public/bbold/bbold10.tfm
+ texmf-dist/fonts/tfm/public/bbold/bbold12.tfm
+ texmf-dist/fonts/tfm/public/bbold/bbold17.tfm
+ texmf-dist/fonts/tfm/public/bbold/bbold5.tfm
+ texmf-dist/fonts/tfm/public/bbold/bbold6.tfm
+ texmf-dist/fonts/tfm/public/bbold/bbold7.tfm
+ texmf-dist/fonts/tfm/public/bbold/bbold8.tfm
+ texmf-dist/fonts/tfm/public/bbold/bbold9.tfm
+ texmf-dist/tex/latex/bbold/Ubbold.fd
+ texmf-dist/tex/latex/bbold/bbold.sty
+catalogue-version 1.01
+catalogue-date 2006-12-21 18:19:02 +0100
+catalogue-ctan /fonts/bbold
+catalogue-license bsd
+
+name beamer
+category Package
+revision 4030
+shortdesc A LaTeX class for producing presentations and slides.
+longdesc The beamer LaTeX class can be used for producing slides. Its
+longdesc functionality is similar to Prosper but does not need any
+longdesc external programs and can directly produce a presentation using
+longdesc pdflatex. Beamer uses pgf for pdf/ps independent graphics.
+longdesc Frames are created using \frame{...}, and a frame can build
+longdesc multiple slides through a simple notation for specifying
+longdesc material for each slide within a frame. Beamer supports
+longdesc bibliographies, appendicies and transitions. Short versions of
+longdesc title, authors, institute can also be specified as optional
+longdesc parameters. A \plainframe{} allows a picture, for example, to
+longdesc fill the whole frame. Support figure and table environments,
+longdesc transparency effects, a \transduration command, animation
+longdesc commands, a pauses environment. Beamer also provides
+longdesc compatibility with other packages like prosper.
+depend pgf
+docfiles size=3945151
+ texmf-dist/doc/latex/beamer/AUTHORS
+ texmf-dist/doc/latex/beamer/ChangeLog
+ texmf-dist/doc/latex/beamer/FILES
+ texmf-dist/doc/latex/beamer/INSTALL
+ texmf-dist/doc/latex/beamer/README
+ texmf-dist/doc/latex/beamer/TODO
+ texmf-dist/doc/latex/beamer/doc/Makefile
+ texmf-dist/doc/latex/beamer/doc/beamercolorthemeexample.tex
+ texmf-dist/doc/latex/beamer/doc/beamerfontthemeexample.tex
+ texmf-dist/doc/latex/beamer/doc/beamerinnerthemeexample.tex
+ texmf-dist/doc/latex/beamer/doc/beamerouterthemeexample.tex
+ texmf-dist/doc/latex/beamer/doc/beamerthemeexample.tex
+ texmf-dist/doc/latex/beamer/doc/beamerthemeexamplebase.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-animations.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-color.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-compatibility.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-elements.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-emulation.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-fonts.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-frames.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-globalstructure.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-graphics.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-guidelines.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-installation.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-interaction.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-introduction.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-license.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-localstructure.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-macros.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-nonpresentation.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-notes.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-overlays.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-solutions.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-themes.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-transparancies.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-tricks.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-tutorial.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-twoscreens.tex
+ texmf-dist/doc/latex/beamer/doc/beamerug-workflow.tex
+ texmf-dist/doc/latex/beamer/doc/beameruserguide.pdf
+ texmf-dist/doc/latex/beamer/doc/beameruserguide.tex
+ texmf-dist/doc/latex/beamer/doc/licenses/LICENSE
+ texmf-dist/doc/latex/beamer/doc/licenses/gnu-free-documentation-license-1.2.txt
+ texmf-dist/doc/latex/beamer/doc/licenses/gnu-public-license-2.txt
+ texmf-dist/doc/latex/beamer/doc/licenses/latex-project-public-license-1.3c.txt
+ texmf-dist/doc/latex/beamer/doc/licenses/manifest-code.txt
+ texmf-dist/doc/latex/beamer/doc/licenses/manifest-documentation.txt
+ texmf-dist/doc/latex/beamer/examples/a-conference-talk/beamerexample-conference-talk.pdf
+ texmf-dist/doc/latex/beamer/examples/a-conference-talk/beamerexample-conference-talk.tex
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-beamer-version.pdf
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-beamer-version.tex
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-beamer-version.tex~
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-body.tex
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-logo.pdf
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic1.jpg
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic2.jpg
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic3.jpg
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic4.jpg
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic5.jpg
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic6.jpg
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-print-version.pdf
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-print-version.tex
+ texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-style.tex
+ texmf-dist/doc/latex/beamer/examples/lyx-based-presentation/beamerexample-lyx.lyx
+ texmf-dist/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.de.lyx
+ texmf-dist/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.de.tex
+ texmf-dist/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.en.lyx
+ texmf-dist/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.en.tex
+ texmf-dist/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.fr.tex
+ texmf-dist/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.de.lyx
+ texmf-dist/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.de.tex
+ texmf-dist/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.en.lyx
+ texmf-dist/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.en.tex
+ texmf-dist/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.fr.tex
+ texmf-dist/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.de.lyx
+ texmf-dist/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.de.tex
+ texmf-dist/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.en.lyx
+ texmf-dist/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.en.tex
+ texmf-dist/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.fr.tex
+runfiles size=556033
+ texmf-dist/tex/latex/beamer/art/beamericonarticle.20.eps
+ texmf-dist/tex/latex/beamer/art/beamericonarticle.20.pdf
+ texmf-dist/tex/latex/beamer/art/beamericonarticle.eps
+ texmf-dist/tex/latex/beamer/art/beamericonarticle.pdf
+ texmf-dist/tex/latex/beamer/art/beamericonarticle.tex
+ texmf-dist/tex/latex/beamer/art/beamericonbook.20.eps
+ texmf-dist/tex/latex/beamer/art/beamericonbook.20.pdf
+ texmf-dist/tex/latex/beamer/art/beamericonbook.eps
+ texmf-dist/tex/latex/beamer/art/beamericonbook.pdf
+ texmf-dist/tex/latex/beamer/art/beamericonbook.tex
+ texmf-dist/tex/latex/beamer/beamer.cls
+ texmf-dist/tex/latex/beamer/beamerarticle.sty
+ texmf-dist/tex/latex/beamer/beamerbasearticle.sty
+ texmf-dist/tex/latex/beamer/beamerbaseauxtemplates.sty
+ texmf-dist/tex/latex/beamer/beamerbaseboxes.sty
+ texmf-dist/tex/latex/beamer/beamerbasecolor.sty
+ texmf-dist/tex/latex/beamer/beamerbasecompatibility.sty
+ texmf-dist/tex/latex/beamer/beamerbasedecode.sty
+ texmf-dist/tex/latex/beamer/beamerbaseexercise.sty
+ texmf-dist/tex/latex/beamer/beamerbasefont.sty
+ texmf-dist/tex/latex/beamer/beamerbaseframe.sty
+ texmf-dist/tex/latex/beamer/beamerbaseframecomponents.sty
+ texmf-dist/tex/latex/beamer/beamerbaseframesize.sty
+ texmf-dist/tex/latex/beamer/beamerbaselocalstructure.sty
+ texmf-dist/tex/latex/beamer/beamerbasemisc.sty
+ texmf-dist/tex/latex/beamer/beamerbasemodes.sty
+ texmf-dist/tex/latex/beamer/beamerbasenavigation.sty
+ texmf-dist/tex/latex/beamer/beamerbasenotes.sty
+ texmf-dist/tex/latex/beamer/beamerbaseoptions.sty
+ texmf-dist/tex/latex/beamer/beamerbaseoverlay.sty
+ texmf-dist/tex/latex/beamer/beamerbasercs.sty
+ texmf-dist/tex/latex/beamer/beamerbasesection.sty
+ texmf-dist/tex/latex/beamer/beamerbasetemplates.sty
+ texmf-dist/tex/latex/beamer/beamerbasethemes.sty
+ texmf-dist/tex/latex/beamer/beamerbasetheorems.sty
+ texmf-dist/tex/latex/beamer/beamerbasetitle.sty
+ texmf-dist/tex/latex/beamer/beamerbasetoc.sty
+ texmf-dist/tex/latex/beamer/beamerbasetwoscreens.sty
+ texmf-dist/tex/latex/beamer/beamerbaseverbatim.sty
+ texmf-dist/tex/latex/beamer/emulation/beamerfoils.sty
+ texmf-dist/tex/latex/beamer/emulation/beamerprosper.sty
+ texmf-dist/tex/latex/beamer/emulation/beamerseminar.sty
+ texmf-dist/tex/latex/beamer/emulation/beamertexpower.sty
+ texmf-dist/tex/latex/beamer/emulation/examples/beamerexample-foils.tex
+ texmf-dist/tex/latex/beamer/emulation/examples/beamerexample-prosper.tex
+ texmf-dist/tex/latex/beamer/emulation/examples/beamerexample-seminar.tex
+ texmf-dist/tex/latex/beamer/emulation/examples/beamerexample-texpower.tex
+ texmf-dist/tex/latex/beamer/multimedia/multimedia.sty
+ texmf-dist/tex/latex/beamer/multimedia/multimediasymbols.sty
+ texmf-dist/tex/latex/beamer/multimedia/xmpmulti.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemealbatross.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemebeaver.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemebeetle.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemecrane.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemedefault.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemedolphin.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemedove.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemefly.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemelily.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemeorchid.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemerose.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemeseagull.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemeseahorse.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemesidebartab.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemestructure.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemewhale.sty
+ texmf-dist/tex/latex/beamer/themes/color/beamercolorthemewolverine.sty
+ texmf-dist/tex/latex/beamer/themes/font/beamerfontthemedefault.sty
+ texmf-dist/tex/latex/beamer/themes/font/beamerfontthemeprofessionalfonts.sty
+ texmf-dist/tex/latex/beamer/themes/font/beamerfontthemeserif.sty
+ texmf-dist/tex/latex/beamer/themes/font/beamerfontthemestructurebold.sty
+ texmf-dist/tex/latex/beamer/themes/font/beamerfontthemestructureitalicserif.sty
+ texmf-dist/tex/latex/beamer/themes/font/beamerfontthemestructuresmallcapsserif.sty
+ texmf-dist/tex/latex/beamer/themes/inner/beamerinnerthemecircles.sty
+ texmf-dist/tex/latex/beamer/themes/inner/beamerinnerthemedefault.sty
+ texmf-dist/tex/latex/beamer/themes/inner/beamerinnerthemeinmargin.sty
+ texmf-dist/tex/latex/beamer/themes/inner/beamerinnerthemerectangles.sty
+ texmf-dist/tex/latex/beamer/themes/inner/beamerinnerthemerounded.sty
+ texmf-dist/tex/latex/beamer/themes/outer/beamerouterthemedefault.sty
+ texmf-dist/tex/latex/beamer/themes/outer/beamerouterthemeinfolines.sty
+ texmf-dist/tex/latex/beamer/themes/outer/beamerouterthememiniframes.sty
+ texmf-dist/tex/latex/beamer/themes/outer/beamerouterthemeshadow.sty
+ texmf-dist/tex/latex/beamer/themes/outer/beamerouterthemesidebar.sty
+ texmf-dist/tex/latex/beamer/themes/outer/beamerouterthemesmoothbars.sty
+ texmf-dist/tex/latex/beamer/themes/outer/beamerouterthemesmoothtree.sty
+ texmf-dist/tex/latex/beamer/themes/outer/beamerouterthemesplit.sty
+ texmf-dist/tex/latex/beamer/themes/outer/beamerouterthemetree.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeAnnArbor.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeAntibes.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeBergen.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeBerkeley.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeBerlin.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeBoadilla.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeCambridgeUS.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeCopenhagen.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeDarmstadt.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeDresden.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeFrankfurt.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeGoettingen.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeHannover.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeIlmenau.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeJuanLesPins.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeLuebeck.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeMadrid.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeMalmoe.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeMarburg.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeMontpellier.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemePaloAlto.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemePittsburgh.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeRochester.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeSingapore.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeSzeged.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeWarsaw.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemeboxes.sty
+ texmf-dist/tex/latex/beamer/themes/theme/beamerthemedefault.sty
+ texmf-dist/tex/latex/beamer/themes/theme/compatibility/beamerthemebars.sty
+ texmf-dist/tex/latex/beamer/themes/theme/compatibility/beamerthemeclassic.sty
+ texmf-dist/tex/latex/beamer/themes/theme/compatibility/beamerthemecompatibility.sty
+ texmf-dist/tex/latex/beamer/themes/theme/compatibility/beamerthemelined.sty
+ texmf-dist/tex/latex/beamer/themes/theme/compatibility/beamerthemeplain.sty
+ texmf-dist/tex/latex/beamer/themes/theme/compatibility/beamerthemeshadow.sty
+ texmf-dist/tex/latex/beamer/themes/theme/compatibility/beamerthemesidebar.sty
+ texmf-dist/tex/latex/beamer/themes/theme/compatibility/beamerthemesplit.sty
+ texmf-dist/tex/latex/beamer/themes/theme/compatibility/beamerthemetree.sty
+catalogue-version 3.07
+catalogue-date 2007-03-12 10:00:13 +0100
+catalogue-ctan /macros/latex/contrib/beamer
+catalogue-license gpl
+
+name beamer-contrib
+category Package
+revision 4016
+docfiles size=148
+ texmf-dist/doc/latex/beamer-contrib/README.themes
+runfiles size=3862
+ texmf-dist/tex/latex/beamer-contrib/beamerthemeJLTree.sty
+
+name beamer-tut-pt
+category Documentation
+revision 1754
+shortdesc An introduction to the Beamer class, in Portuguese.
+docfiles size=4133008
+ texmf-doc/doc/portuguese/beamer-tut-pt/AnnArbor1.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/AnnArbor2.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/CambridgeUS1.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/CambridgeUS2.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/LEIAME
+ texmf-doc/doc/portuguese/beamer-tut-pt/README
+ texmf-doc/doc/portuguese/beamer-tut-pt/anim1.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/anim2.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/anim3.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/anim4.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/automato1.jpg
+ texmf-doc/doc/portuguese/beamer-tut-pt/automato2.jpg
+ texmf-doc/doc/portuguese/beamer-tut-pt/automato3.jpg
+ texmf-doc/doc/portuguese/beamer-tut-pt/automato4.jpg
+ texmf-doc/doc/portuguese/beamer-tut-pt/automato5.jpg
+ texmf-doc/doc/portuguese/beamer-tut-pt/berkeley1.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/berkeley2.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/blocos.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/boadilla1.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/boadilla2.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/exemplo.tex
+ texmf-doc/doc/portuguese/beamer-tut-pt/madrid1.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/madrid2.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/montpellier1.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/montpellier2.ps
+ texmf-doc/doc/portuguese/beamer-tut-pt/tutorialbeamer.pdf language="pt"
+ texmf-doc/doc/portuguese/beamer-tut-pt/tutorialbeamer.tex
+ texmf-doc/doc/portuguese/beamer-tut-pt/ufpellogo.jpg
+catalogue-version
+catalogue-date 2007-03-05 14:17:42 +0100
+catalogue-ctan /info/portuguese/beamer
+catalogue-license gpl
+
+name beebe
+category Package
+revision 1634
+runfiles size=4290563
+ texmf-dist/bibtex/bib/beebe/gut.bib
+ texmf-dist/bibtex/bib/beebe/komoedie.bib
+ texmf-dist/bibtex/bib/beebe/texbook1.bib
+ texmf-dist/bibtex/bib/beebe/texbook2.bib
+ texmf-dist/bibtex/bib/beebe/texbook3.bib
+ texmf-dist/bibtex/bib/beebe/texgraph.bib
+ texmf-dist/bibtex/bib/beebe/texjourn.bib
+ texmf-dist/bibtex/bib/beebe/texnique.bib
+ texmf-dist/bibtex/bib/beebe/tugboat.bib
+ texmf-dist/bibtex/bst/beebe/aaai-named.bst
+ texmf-dist/bibtex/bst/beebe/abstract.bst
+ texmf-dist/bibtex/bst/beebe/annotate.bst
+ texmf-dist/bibtex/bst/beebe/annotation.bst
+ texmf-dist/bibtex/bst/beebe/apa.bst
+ texmf-dist/bibtex/bst/beebe/apalike2.bst
+ texmf-dist/bibtex/bst/beebe/astron.bst
+ texmf-dist/bibtex/bst/beebe/authordate1.bst
+ texmf-dist/bibtex/bst/beebe/authordate2.bst
+ texmf-dist/bibtex/bst/beebe/authordate3.bst
+ texmf-dist/bibtex/bst/beebe/authordate4.bst
+ texmf-dist/bibtex/bst/beebe/bbs.bst
+ texmf-dist/bibtex/bst/beebe/bibtoref.bst
+ texmf-dist/bibtex/bst/beebe/cbe.bst
+ texmf-dist/bibtex/bst/beebe/cell.bst
+ texmf-dist/bibtex/bst/beebe/chicago.bst
+ texmf-dist/bibtex/bst/beebe/chicagoa.bst
+ texmf-dist/bibtex/bst/beebe/econometrica.bst
+ texmf-dist/bibtex/bst/beebe/humanbio.bst
+ texmf-dist/bibtex/bst/beebe/humannat.bst
+ texmf-dist/bibtex/bst/beebe/is-abbrv.bst
+ texmf-dist/bibtex/bst/beebe/is-alpha.bst
+ texmf-dist/bibtex/bst/beebe/is-plain.bst
+ texmf-dist/bibtex/bst/beebe/is-unsrt.bst
+ texmf-dist/bibtex/bst/beebe/jas99.bst
+ texmf-dist/bibtex/bst/beebe/jbact.bst
+ texmf-dist/bibtex/bst/beebe/jmb.bst
+ texmf-dist/bibtex/bst/beebe/jtb.bst
+ texmf-dist/bibtex/bst/beebe/jthcarsu.bst
+ texmf-dist/bibtex/bst/beebe/named.bst
+ texmf-dist/bibtex/bst/beebe/namunsrt.bst
+ texmf-dist/bibtex/bst/beebe/nar.bst
+ texmf-dist/bibtex/bst/beebe/newapa.bst
+ texmf-dist/bibtex/bst/beebe/phaip.bst
+ texmf-dist/bibtex/bst/beebe/phapalik.bst
+ texmf-dist/bibtex/bst/beebe/phcpc.bst
+ texmf-dist/bibtex/bst/beebe/phiaea.bst
+ texmf-dist/bibtex/bst/beebe/phjcp.bst
+ texmf-dist/bibtex/bst/beebe/phnf.bst
+ texmf-dist/bibtex/bst/beebe/phnflet.bst
+ texmf-dist/bibtex/bst/beebe/phpf.bst
+ texmf-dist/bibtex/bst/beebe/phppcf.bst
+ texmf-dist/bibtex/bst/beebe/phreport.bst
+ texmf-dist/bibtex/bst/beebe/phrmp.bst
+ texmf-dist/bibtex/bst/beebe/plainyr.bst
+ texmf-dist/bibtex/bst/beebe/refer.bst
+ texmf-dist/bibtex/bst/beebe/xbtxbst.doc
+
+name begriff
+category Package
+revision 2336
+shortdesc Typeset Begriffschrift.
+longdesc The package defines maths mode commands for typesetting Frege's
+longdesc Begriffschrift.
+docfiles size=73465
+ texmf-dist/doc/latex/begriff/COPYING
+ texmf-dist/doc/latex/begriff/README
+ texmf-dist/doc/latex/begriff/examples.pdf
+ texmf-dist/doc/latex/begriff/examples.tex
+runfiles size=6724
+ texmf-dist/tex/latex/begriff/begriff.sty
+catalogue-version 1.6
+catalogue-date 2007-01-29 23:57:18 +0100
+catalogue-ctan /macros/latex/contrib/begriff
+catalogue-license gpl
+
+name belleek
+category Package
+revision 155
+shortdesc Free replacement for basic MathTime fonts.
+longdesc This package replaces the original MathTime fonts, not
+longdesc MathTime-Plus or MathTime Professional (the last being the only
+longdesc currently available commercial bundle).
+execute addMap belleek.map
+docfiles size=597
+ texmf-dist/doc/fonts/belleek/README details="Readme"
+srcfiles size=827
+ texmf-dist/source/latex/belleek/my1mtt.fd
+ texmf-dist/source/latex/belleek/my2mtt.fd
+ texmf-dist/source/latex/belleek/my3mtt.fd
+runfiles size=123939
+ texmf-dist/fonts/map/dvips/belleek/belleek.map
+ texmf-dist/fonts/truetype/public/belleek/blex.ttf
+ texmf-dist/fonts/truetype/public/belleek/blsy.ttf
+ texmf-dist/fonts/truetype/public/belleek/rblmi.ttf
+ texmf-dist/fonts/type1/public/belleek/blex.pfb
+ texmf-dist/fonts/type1/public/belleek/blsy.pfb
+ texmf-dist/fonts/type1/public/belleek/rblmi.pfb
+catalogue-version
+catalogue-date 2006-12-21 16:38:41 +0100
+catalogue-ctan /fonts/belleek/belleek.zip
+catalogue-license pd
+
+name bengali
+category Package
+revision 701
+srcfiles size=58290
+ texmf-dist/source/latex/bengali/beng.c
+ texmf-dist/source/latex/bengali/bengdoc.bn
+ texmf-dist/source/latex/bengali/example.bn
+runfiles size=112389
+ texmf-dist/fonts/source/public/bengali/bn.mf
+ texmf-dist/fonts/source/public/bengali/bnbanjon.mf
+ texmf-dist/fonts/source/public/bengali/bndigit.mf
+ texmf-dist/fonts/source/public/bengali/bnjuk.mf
+ texmf-dist/fonts/source/public/bengali/bnkaar.mf
+ texmf-dist/fonts/source/public/bengali/bnlig.mf
+ texmf-dist/fonts/source/public/bengali/bnligtbl.mf
+ texmf-dist/fonts/source/public/bengali/bnmacro.mf
+ texmf-dist/fonts/source/public/bengali/bnmisc.mf
+ texmf-dist/fonts/source/public/bengali/bnpunct.mf
+ texmf-dist/fonts/source/public/bengali/bnr10.mf
+ texmf-dist/fonts/source/public/bengali/bnsl10.mf
+ texmf-dist/fonts/source/public/bengali/bnswar.mf
+ texmf-dist/fonts/source/public/bengali/xbnr10.mf
+ texmf-dist/fonts/source/public/bengali/xbnsl10.mf
+ texmf-dist/fonts/source/public/bengali/xbnsupp.mf
+ texmf-dist/fonts/tfm/public/bengali/bnr10.tfm
+ texmf-dist/fonts/tfm/public/bengali/bnsl10.tfm
+ texmf-dist/fonts/tfm/public/bengali/xbnr10.tfm
+ texmf-dist/fonts/tfm/public/bengali/xbnsl10.tfm
+ texmf-dist/tex/latex/bengali/beng.sty
+ texmf-dist/tex/latex/bengali/ubn.fd
+ texmf-dist/tex/latex/bengali/ubnx.fd
+
+name bera
+category Package
+revision 702
+shortdesc Bera fonts.
+longdesc The package contains the Bera Type 1 fonts, and a zip archive
+longdesc containing files to use the fonts with LaTeX. Bera is a set of
+longdesc three font families: Bera Serif (a slab-serif Roman), Bera Sans
+longdesc (a Frutiger descendant), and Bera Mono (monospaced/typewriter).
+longdesc Support for use in LaTeX is also provided. The Bera family is a
+longdesc repackaging, for use with TeX, of the Bitstream Vera family.
+execute addMap bera.map
+docfiles size=31570
+ texmf-dist/doc/fonts/bera/LICENSE
+ texmf-dist/doc/fonts/bera/README
+ texmf-dist/doc/fonts/bera/bera.pdf details="Font samples:"
+ texmf-dist/doc/fonts/bera/bera.txt
+runfiles size=791410
+ texmf-dist/fonts/afm/public/bera/fveb8a.afm
+ texmf-dist/fonts/afm/public/bera/fver8a.afm
+ texmf-dist/fonts/afm/public/bera/fvmb8a.afm
+ texmf-dist/fonts/afm/public/bera/fvmbo8a.afm
+ texmf-dist/fonts/afm/public/bera/fvmr8a.afm
+ texmf-dist/fonts/afm/public/bera/fvmro8a.afm
+ texmf-dist/fonts/afm/public/bera/fvsb8a.afm
+ texmf-dist/fonts/afm/public/bera/fvsbo8a.afm
+ texmf-dist/fonts/afm/public/bera/fvsr8a.afm
+ texmf-dist/fonts/afm/public/bera/fvsro8a.afm
+ texmf-dist/fonts/map/dvips/bera/bera.map
+ texmf-dist/fonts/tfm/public/bera/fveb8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fveb8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fveb8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fveb8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvebo8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvebo8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvebo8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fver8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fver8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fver8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fver8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvero8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvero8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvero8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmb8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmb8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmb8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmb8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmbo8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmbo8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmbo8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmbo8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmr8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmr8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmr8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmr8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmro8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmro8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmro8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvmro8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsb8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsb8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsb8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsb8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsbo8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsbo8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsbo8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsbo8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsr8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsr8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsr8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsr8t.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsro8a.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsro8c.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsro8r.tfm
+ texmf-dist/fonts/tfm/public/bera/fvsro8t.tfm
+ texmf-dist/fonts/type1/public/bera/fveb8a.pfb
+ texmf-dist/fonts/type1/public/bera/fver8a.pfb
+ texmf-dist/fonts/type1/public/bera/fvmb8a.pfb
+ texmf-dist/fonts/type1/public/bera/fvmbo8a.pfb
+ texmf-dist/fonts/type1/public/bera/fvmr8a.pfb
+ texmf-dist/fonts/type1/public/bera/fvmro8a.pfb
+ texmf-dist/fonts/type1/public/bera/fvsb8a.pfb
+ texmf-dist/fonts/type1/public/bera/fvsbo8a.pfb
+ texmf-dist/fonts/type1/public/bera/fvsr8a.pfb
+ texmf-dist/fonts/type1/public/bera/fvsro8a.pfb
+ texmf-dist/fonts/vf/public/bera/fveb8c.vf
+ texmf-dist/fonts/vf/public/bera/fveb8t.vf
+ texmf-dist/fonts/vf/public/bera/fvebo8c.vf
+ texmf-dist/fonts/vf/public/bera/fvebo8t.vf
+ texmf-dist/fonts/vf/public/bera/fver8c.vf
+ texmf-dist/fonts/vf/public/bera/fver8t.vf
+ texmf-dist/fonts/vf/public/bera/fvero8c.vf
+ texmf-dist/fonts/vf/public/bera/fvero8t.vf
+ texmf-dist/fonts/vf/public/bera/fvmb8c.vf
+ texmf-dist/fonts/vf/public/bera/fvmb8t.vf
+ texmf-dist/fonts/vf/public/bera/fvmbo8c.vf
+ texmf-dist/fonts/vf/public/bera/fvmbo8t.vf
+ texmf-dist/fonts/vf/public/bera/fvmr8c.vf
+ texmf-dist/fonts/vf/public/bera/fvmr8t.vf
+ texmf-dist/fonts/vf/public/bera/fvmro8c.vf
+ texmf-dist/fonts/vf/public/bera/fvmro8t.vf
+ texmf-dist/fonts/vf/public/bera/fvsb8c.vf
+ texmf-dist/fonts/vf/public/bera/fvsb8t.vf
+ texmf-dist/fonts/vf/public/bera/fvsbo8c.vf
+ texmf-dist/fonts/vf/public/bera/fvsbo8t.vf
+ texmf-dist/fonts/vf/public/bera/fvsr8c.vf
+ texmf-dist/fonts/vf/public/bera/fvsr8t.vf
+ texmf-dist/fonts/vf/public/bera/fvsro8c.vf
+ texmf-dist/fonts/vf/public/bera/fvsro8t.vf
+ texmf-dist/tex/latex/bera/bera.sty
+ texmf-dist/tex/latex/bera/beramono.sty
+ texmf-dist/tex/latex/bera/berasans.sty
+ texmf-dist/tex/latex/bera/beraserif.sty
+ texmf-dist/tex/latex/bera/t1fve.fd
+ texmf-dist/tex/latex/bera/t1fvm.fd
+ texmf-dist/tex/latex/bera/t1fvs.fd
+ texmf-dist/tex/latex/bera/ts1fve.fd
+ texmf-dist/tex/latex/bera/ts1fvm.fd
+ texmf-dist/tex/latex/bera/ts1fvs.fd
+catalogue-version
+catalogue-date 2006-12-21 18:19:02 +0100
+catalogue-ctan /fonts/bera
+catalogue-license nosell
+
+name betababel
+category Package
+revision 703
+shortdesc Insert ancient greek text coded in Beta Code.
+longdesc The betababel package extends the babel polutonikogreek option
+longdesc to provide a simple way to insert ancient Greek texts with
+longdesc diacritical characters into your document using the commonly
+longdesc used Beta Code transliteration. You can directly insert Beta
+longdesc Code texts — as they can be found at the Perseus project, for
+longdesc example — without modification.
+docfiles size=193455
+ texmf-dist/doc/latex/betababel/betatest.pdf
+ texmf-dist/doc/latex/betababel/betatest.tex
+runfiles size=10953
+ texmf-dist/tex/latex/betababel/betababel.sty
+catalogue-version 0.5
+catalogue-date 2006-12-21 16:38:41 +0100
+catalogue-ctan /macros/latex/contrib/betababel
+catalogue-license lppl
+
+name beton
+category Package
+revision 1487
+shortdesc Use Concrete fonts.
+longdesc Typeset a LaTeX2e document with the Concrete fonts designed by
+longdesc Don Knuth and used in his book “Concrete Mathematics”.
+docfiles size=16352
+ texmf-dist/doc/latex/beton/beton.dvi
+srcfiles size=16278
+ texmf-dist/source/latex/beton/beton.dtx
+ texmf-dist/source/latex/beton/beton.ins
+ texmf-dist/source/latex/beton/legal.txt
+runfiles size=2963
+ texmf-dist/tex/latex/beton/beton.sty
+catalogue-version
+catalogue-date 2006-12-29 12:26:56 +0100
+catalogue-ctan /macros/latex/contrib/beton
+catalogue-license lppl
+
+name bez123
+category Package
+revision 705
+shortdesc Support for Bezier curves.
+longdesc Provides additional facilities in a picture environment for
+longdesc drawing linear, cubic, and rational quadratic Bezier curves
+longdesc (standard LaTeX only offers non-rational quadratic splines).
+longdesc Provides a package multiply that provides a command for
+longdesc multiplication of a length without numerical overflow.
+srcfiles size=64946
+ texmf-dist/source/latex/bez123/README
+ texmf-dist/source/latex/bez123/bez123.dtx
+ texmf-dist/source/latex/bez123/bez123.ins
+runfiles size=12690
+ texmf-dist/tex/latex/bez123/bez123.sty
+ texmf-dist/tex/latex/bez123/multiply.sty
+catalogue-version
+catalogue-date 2006-12-29 12:26:56 +0100
+catalogue-ctan /macros/latex/contrib/bez123
+catalogue-license lppl1.3
+
+name bezos
+category Package
+revision 2098
+shortdesc Packages by Javier Bezos.
+longdesc A set of packages that provide: – tools for maths accents;
+longdesc – a tool that changes page-numbering in frontmatter to
+longdesc arabic; – a tool for making end-environment checking more
+longdesc meaningful; – tensorial indexes; – tools for easy entry of
+longdesc Spanish index entries; and – dotless i's and j's for maths
+longdesc fonts.
+docfiles size=105419
+ texmf-dist/doc/latex/bezos/README
+ texmf-dist/doc/latex/bezos/accents.tex
+ texmf-dist/doc/latex/bezos/bezos.pdf
+ texmf-dist/doc/latex/bezos/esindex.tex
+ texmf-dist/doc/latex/bezos/tensind.tex
+runfiles size=22608
+ texmf-dist/tex/latex/bezos/accents.sty
+ texmf-dist/tex/latex/bezos/arabicfront.sty
+ texmf-dist/tex/latex/bezos/checkend.sty
+ texmf-dist/tex/latex/bezos/dotlessi.sty
+ texmf-dist/tex/latex/bezos/esindex.sty
+ texmf-dist/tex/latex/bezos/tensind.sty
+catalogue-version
+catalogue-date 2006-12-29 12:26:56 +0100
+catalogue-ctan /macros/latex/contrib/bezos
+catalogue-license lppl
+
+name bghyphen
+category Package
+revision 1624
+shortdesc Hyphenation patterns for Bulgarian.
+longdesc These files provide support for hyphenation of text written in
+longdesc Bulgarian. The files have a structure similar to that developed
+longdesc for the Russian hyphenation files. To use with Babel, simply
+longdesc drop the .tex files in an appropriate place, tell babel that
+longdesc bghyphen.tex is the hyphenation file for Bulgarian (typically
+longdesc in the file language.dat), and produce new format files.
+docfiles size=164757
+ texmf-dist/doc/generic/bghyphen/README
+ texmf-dist/doc/generic/bghyphen/azbukaExtended.pdf
+runfiles size=13964
+ texmf-dist/tex/generic/bghyphen/bghyphen.tex
+ texmf-dist/tex/generic/bghyphen/bghyphsi.tex
+ texmf-dist/tex/generic/bghyphen/catmik.tex
+ texmf-dist/tex/generic/bghyphen/mik2t2.tex
+catalogue-version 1.5
+catalogue-date 2007-02-20 11:05:48 +0100
+catalogue-ctan /language/hyphenation/bghyphen
+catalogue-license lppl
+
+name bibarts
+category Package
+revision 1487
+shortdesc "Arts"-style bibliographical information.
+longdesc The bibarts package assists in making bibliographical lists in
+longdesc the way that is common in the arts; it requires an auxiliary
+longdesc program, for which source and a DOS executable are provided.
+longdesc (Documentation is in German, though bibarts.sty does contain a
+longdesc brief introduction in English, as a comment.)
+docfiles size=141888
+ texmf-dist/doc/latex/bibarts/bibarts.dvi
+ texmf-dist/doc/latex/bibarts/bibarts.tex
+srcfiles size=131663
+ texmf-dist/source/latex/bibarts/bibarts.bar
+ texmf-dist/source/latex/bibarts/gbib209.bat
+ texmf-dist/source/latex/bibarts/gbib2e.bat
+ texmf-dist/source/latex/bibarts/gbibsort.c
+ texmf-dist/source/latex/bibarts/gbibsort.exe
+runfiles size=21706
+ texmf-dist/makeindex/bibarts/gbibarts.ist
+ texmf-dist/tex/latex/bibarts/bibarts.sty
+catalogue-version
+catalogue-date 2006-12-29 13:11:21 +0100
+catalogue-ctan /macros/latex/contrib/bibarts
+catalogue-license gpl
+
+name bibhtml
+category Package
+revision 2942
+shortdesc BibTeX support for HTML files.
+longdesc Bibhtml consists of a Perl script and a set of BibTeX style
+longdesc files, which together allow you to compile a bibliography for a
+longdesc collection of HTML files. The references in the text are linked
+longdesc directly to the corresponding bibliography entry, and if a URL
+longdesc is defined in the entry within the BibTeX database file, then
+longdesc the generated bibliography entry is linked to this. The package
+longdesc provides three different style files derived from each of the
+longdesc standard plain.bst and alpha.bst (i.e., six in total).
+docfiles size=54305
+ texmf-dist/doc/latex/bibhtml/LICENCE
+ texmf-dist/doc/latex/bibhtml/bibhtml
+ texmf-dist/doc/latex/bibhtml/bibhtml.html
+ texmf-dist/doc/latex/bibhtml/bibhtml.xslt
+runfiles size=148255
+ texmf-dist/bibtex/bib/bibhtml/bibrefs.bib
+ texmf-dist/bibtex/bst/bibhtml/alphahtml.bst
+ texmf-dist/bibtex/bst/bibhtml/alphahtmldate.bst
+ texmf-dist/bibtex/bst/bibhtml/alphahtmldater.bst
+ texmf-dist/bibtex/bst/bibhtml/plainhtml.bst
+ texmf-dist/bibtex/bst/bibhtml/plainhtmldate.bst
+ texmf-dist/bibtex/bst/bibhtml/plainhtmldater.bst
+catalogue-version 1.3
+catalogue-date 2006-10-31 17:45:45 +0100
+catalogue-ctan /biblio/bibtex/contrib/bibhtml
+catalogue-license gpl
+
+name bibleref
+category Package
+revision 5436
+shortdesc Format bible citations.
+longdesc The bibleref package is designed to offer consistent formatting
+longdesc of references to parts of the Christian bible, in a number of
+longdesc well-defined formats.
+docfiles size=241083
+ texmf-dist/doc/latex/bibleref/README details="Readme"
+ texmf-dist/doc/latex/bibleref/bibleref-manual.html
+ texmf-dist/doc/latex/bibleref/bibleref.pdf
+ texmf-dist/doc/latex/bibleref/bibleref.perl
+ texmf-dist/doc/latex/bibleref/sample.pdf
+ texmf-dist/doc/latex/bibleref/sample.tex
+srcfiles size=96224
+ texmf-dist/source/latex/bibleref/bibleref.dtx
+ texmf-dist/source/latex/bibleref/bibleref.ins
+runfiles size=23773
+ texmf-dist/tex/latex/bibleref/bibleref.sty
+catalogue-version 1.07
+catalogue-date 2007-08-20 17:34:42 +0200
+catalogue-ctan /macros/latex/contrib/bibleref
+catalogue-license lppl
+
+name biblist
+category Package
+revision 709
+shortdesc Print a BibTeX database.
+longdesc The package provides the means of listing an entire BibTeX
+longdesc database, avoiding the potentially large (macro) impact
+longdesc associated with \nocite{*}.
+docfiles size=5044
+ texmf-dist/doc/latex/biblist/README
+ texmf-dist/doc/latex/biblist/biblist.gde
+srcfiles size=51598
+ texmf-dist/source/latex/biblist/biblist.bst-dist
+runfiles size=23691
+ texmf-dist/tex/latex/biblist/biblist.sty
+catalogue-version
+catalogue-date 2006-12-29 23:44:34 +0100
+catalogue-ctan /macros/latex209/contrib/biblist
+catalogue-license unknown
+
+name bibtex
+category Package
+revision 78
+shortdesc Process bibliographies for LaTeX, etc.
+longdesc BibTeX allows the user to store his citation data in generic
+longdesc form, while printing citations in a document in the form
+longdesc specified by a BibTeX style, to be specified in the document
+longdesc itself. BibTeX itself is an ASCII-only program; there is,
+longdesc however, a version that copes with 8-bit character sets.
+docfiles size=391686
+ texmf-dist/doc/bibtex/base/bibshare
+ texmf-dist/doc/bibtex/base/btxbst.doc
+ texmf-dist/doc/bibtex/base/btxdoc.bib
+ texmf-dist/doc/bibtex/base/btxdoc.pdf
+ texmf-dist/doc/bibtex/base/btxdoc.tex
+ texmf-dist/doc/bibtex/base/btxhak.pdf
+ texmf-dist/doc/bibtex/base/btxhak.tex
+catalogue-version 0.99c
+catalogue-date 2007-01-12 13:11:06 +0100
+catalogue-ctan /biblio/bibtex/distribs
+catalogue-license dfsg
+
+name bibtopic
+category Package
+revision 2337
+shortdesc Include multiple bibliographies in a document.
+longdesc The package allows the user to include several bibliographies
+longdesc covering different ‘topics’ or bibliographic material into
+longdesc a document (e.g., one bibliography for primary literature and
+longdesc one for secondary literature). The package provides commands to
+longdesc include either all references from a .bib file, only the
+longdesc references actually cited or those not cited in your document.
+longdesc The user has to construct a separate .bib file for each
+longdesc bibliographic ‘topic’, each of which will be processed
+longdesc separately by BibTeX. If you want to have bibliographies
+longdesc specific to one part of a document, see the packages bibunits
+longdesc or chapterbib.
+docfiles size=252927
+ texmf-dist/doc/latex/bibtopic/README
+ texmf-dist/doc/latex/bibtopic/bibtopic.pdf
+ texmf-dist/doc/latex/bibtopic/sample.tex
+srcfiles size=169816
+ texmf-dist/source/latex/bibtopic/bibtopic.dtx
+ texmf-dist/source/latex/bibtopic/bibtopic.ins
+runfiles size=39014
+ texmf-dist/bibtex/bib/bibtopic/articles.bib
+ texmf-dist/bibtex/bib/bibtopic/books.bib
+ texmf-dist/tex/latex/bibtopic/bibtopic.sty
+catalogue-version 1.1a
+catalogue-date 2006-10-17 00:49:54 +0200
+catalogue-ctan /macros/latex/contrib/bibtopic
+catalogue-license gpl
+
+name bibtopicprefix
+category Package
+revision 5493
+shortdesc Prefix references to bibliographies produced by bibtopic.
+longdesc The package permits users to apply prefixes (fixed strings) to
+longdesc references to entries in bibliographies produced by the
+longdesc bibtopic package.
+docfiles size=390410
+ texmf-dist/doc/latex/bibtopicprefix/README
+ texmf-dist/doc/latex/bibtopicprefix/bibtopicprefix.pdf details="Package documentation"
+ texmf-dist/doc/latex/bibtopicprefix/bibtopicprefix.xml
+srcfiles size=16420
+ texmf-dist/source/latex/bibtopicprefix/bibtopicprefix.drv
+ texmf-dist/source/latex/bibtopicprefix/bibtopicprefix.dtx
+ texmf-dist/source/latex/bibtopicprefix/bibtopicprefix.ins
+runfiles size=4054
+ texmf-dist/tex/latex/bibtopicprefix/bibtopicprefix.sty
+catalogue-version 1.10
+catalogue-date 2006-11-29 14:22:26 +0100
+catalogue-ctan /macros/latex/contrib/bibtopicprefix
+catalogue-license lppl
+
+name bibunits
+category Package
+revision 711
+shortdesc Multiple bibliographies in one document.
+longdesc The package provide a mechanism to generate separate
+longdesc bibliographies for different units (chapters, sections or
+longdesc bibunit-environments) of a text. The package separates the
+longdesc citations of each unit of text into a separate file to be
+longdesc processed by BibTeX. The global bibliography section produced
+longdesc by LaTeX may also appear in the document and citations can be
+longdesc placed in both the local unit and the global bibliographies at
+longdesc the same time. The package is compatible with koma-script and
+longdesc with the babel French option frenchb.
+docfiles size=272334
+ texmf-dist/doc/latex/bibunits/README details="Readme"
+ texmf-dist/doc/latex/bibunits/bibtexall
+ texmf-dist/doc/latex/bibunits/bibunits.pdf details="Package documentation"
+srcfiles size=68655
+ texmf-dist/source/latex/bibunits/bibunits.dtx
+ texmf-dist/source/latex/bibunits/bibunits.ins
+runfiles size=10533
+ texmf-dist/tex/latex/bibunits/bibunits.sty
+catalogue-version 2.2
+catalogue-date 2006-12-29 23:44:34 +0100
+catalogue-ctan /macros/latex/contrib/bibunits
+catalogue-license lppl
+
+name bidi
+category Package
+revision 4276
+shortdesc Support for bidirectional typesetting with XeLaTeX.
+longdesc A convenient interface for typesetting bidirectional texts with
+longdesc XeLaTeX. (Also works with pdfLaTeX, though in this case its
+longdesc usefulness is doubtful).
+docfiles size=154158
+ texmf-dist/doc/xelatex/bidi/README.txt details="Readme"
+ texmf-dist/doc/xelatex/bidi/bidi.pdf details="Package documentation"
+srcfiles size=27562
+ texmf-dist/source/xelatex/bidi/bidi.dtx
+runfiles size=10616
+ texmf-dist/tex/xelatex/bidi/bidi.sty
+catalogue-version v0.2.2
+catalogue-date 2007-08-22 21:37:03 +0200
+catalogue-ctan /macros/xetex/latex/bidi
+catalogue-license lppl
+
+name bigfoot
+category Package
+revision 4733
+shortdesc Footnotes for critical editions.
+longdesc The package aims to provide a ‘one-stop’ solution to
+longdesc requirements for footnotes. It offers: – Multiple footnote
+longdesc apparatus superior to that of the manyfoot; – Footnotes can
+longdesc be formatted in separate paragraphs, or be run into a single
+longdesc paragraph (this choice may be selected per footnote series);
+longdesc – Things you might have expected (like \verb-like material in
+longdesc footnotes, and colour selections over page breaks) now work.
+longdesc Note that the majority of the bigfoot package's interface is
+longdesc identical to that of manyfoot; users should seek information
+longdesc from that package's documentation. The bigfoot bundle also
+longdesc provides the perpage and suffix packages.
+docfiles size=255396
+ texmf-dist/doc/latex/bigfoot/README details="Readme"
+ texmf-dist/doc/latex/bigfoot/bigfoot.pdf details="Package documentation"
+ texmf-dist/doc/latex/bigfoot/perpage.pdf
+ texmf-dist/doc/latex/bigfoot/suffix.pdf
+srcfiles size=163312
+ texmf-dist/source/latex/bigfoot/bigfoot.drv
+ texmf-dist/source/latex/bigfoot/bigfoot.dtx
+ texmf-dist/source/latex/bigfoot/bigfoot.ins
+ texmf-dist/source/latex/bigfoot/perpage.drv
+ texmf-dist/source/latex/bigfoot/perpage.dtx
+ texmf-dist/source/latex/bigfoot/suffix.drv
+ texmf-dist/source/latex/bigfoot/suffix.dtx
+runfiles size=48694
+ texmf-dist/tex/latex/bigfoot/bigfoot.sty
+ texmf-dist/tex/latex/bigfoot/perpage.sty
+ texmf-dist/tex/latex/bigfoot/suffix.sty
+catalogue-version
+catalogue-date 2007-08-13 15:44:25 +0200
+catalogue-ctan /macros/latex/contrib/bigfoot
+catalogue-license gpl2
+
+name bin-afm2pl
+category TLCore
+revision 5403
+docfiles size=13225
+ texmf/doc/man/man1/afm2pl.1
+runfiles size=55728
+ texmf/fonts/enc/dvips/afm2pl/ot1.enc
+ texmf/fonts/enc/dvips/afm2pl/ot1csc.enc
+ texmf/fonts/enc/dvips/afm2pl/ot1ital.enc
+ texmf/fonts/enc/dvips/afm2pl/ot1tt.enc
+ texmf/fonts/enc/dvips/afm2pl/texnanlc.enc
+ texmf/fonts/enc/dvips/afm2pl/texnanuc.enc
+ texmf/fonts/lig/afm2pl/accents.lig
+ texmf/fonts/lig/afm2pl/bound.lig
+ texmf/fonts/lig/afm2pl/default.lig
+ texmf/fonts/lig/afm2pl/defpost.lig
+ texmf/fonts/lig/afm2pl/defpre.lig
+ texmf/fonts/lig/afm2pl/forge.lig
+ texmf/fonts/lig/afm2pl/ligtex.lig
+ texmf/tex/fontinst/afm2pl/README
+ texmf/tex/fontinst/afm2pl/ly1.etx
+ texmf/tex/fontinst/afm2pl/ly1c.etx
+ texmf/tex/fontinst/afm2pl/makesc8y.tex
+ texmf/tex/latex/afm2pl/uclcptm.sty
+binfiles arch=i386-openbsd size=68228
+ bin/i386-openbsd/afm2pl
+binfiles arch=i386-solaris size=76684
+ bin/i386-solaris/afm2pl
+binfiles arch=i386-linux size=68072
+ bin/i386-linux/afm2pl
+binfiles arch=hppa-hpux size=115185
+ bin/hppa-hpux/afm2pl
+binfiles arch=mips-irix size=135444
+ bin/mips-irix/afm2pl
+binfiles arch=alpha-linux size=112592
+ bin/alpha-linux/afm2pl
+binfiles arch=sparc-linux size=80272
+ bin/sparc-linux/afm2pl
+binfiles arch=sparc-solaris size=147736
+ bin/sparc-solaris/afm2pl
+binfiles arch=i386-freebsd size=70308
+ bin/i386-freebsd/afm2pl
+binfiles arch=win32 size=23040
+ bin/win32/afm2pl.exe
+binfiles arch=i386-darwin size=88644
+ bin/i386-darwin/afm2pl
+binfiles arch=powerpc-linux size=85524
+ bin/powerpc-linux/afm2pl
+binfiles arch=powerpc-aix size=104590
+ bin/powerpc-aix/afm2pl
+binfiles arch=powerpc-darwin size=85236
+ bin/powerpc-darwin/afm2pl
+binfiles arch=x86_64-linux size=86296
+ bin/x86_64-linux/afm2pl
+
+name bin-aleph
+category TLCore
+revision 5403
+depend bin-omega
+execute BuildFormat aleph
+runfiles size=30925
+ texmf/fmtutil/format.aleph.cnf
+ texmf/web2c/aleph.pool
+binfiles arch=i386-openbsd size=432777
+ bin/i386-openbsd/aleph
+ bin/i386-openbsd/lamed
+binfiles arch=i386-solaris size=477705
+ bin/i386-solaris/aleph
+ bin/i386-solaris/lamed
+binfiles arch=i386-linux size=408357
+ bin/i386-linux/aleph
+ bin/i386-linux/lamed
+binfiles arch=hppa-hpux size=566593
+ bin/hppa-hpux/aleph
+ bin/hppa-hpux/lamed
+binfiles arch=mips-irix size=811141
+ bin/mips-irix/aleph
+ bin/mips-irix/lamed
+binfiles arch=alpha-linux size=666685
+ bin/alpha-linux/aleph
+ bin/alpha-linux/lamed
+binfiles arch=sparc-linux size=507541
+ bin/sparc-linux/aleph
+ bin/sparc-linux/lamed
+binfiles arch=sparc-solaris size=704509
+ bin/sparc-solaris/aleph
+ bin/sparc-solaris/lamed
+binfiles arch=i386-freebsd size=455609
+ bin/i386-freebsd/aleph
+ bin/i386-freebsd/lamed
+binfiles arch=win32 size=389632
+ bin/win32/aleph.dll
+ bin/win32/aleph.exe
+ bin/win32/lamed.exe
+binfiles arch=i386-darwin size=520901
+ bin/i386-darwin/aleph
+ bin/i386-darwin/lamed
+binfiles arch=powerpc-linux size=512769
+ bin/powerpc-linux/aleph
+ bin/powerpc-linux/lamed
+binfiles arch=powerpc-aix size=545754
+ bin/powerpc-aix/aleph
+ bin/powerpc-aix/lamed
+binfiles arch=powerpc-darwin size=529833
+ bin/powerpc-darwin/aleph
+ bin/powerpc-darwin/lamed
+binfiles arch=x86_64-linux size=474413
+ bin/x86_64-linux/aleph
+ bin/x86_64-linux/lamed
+
+name bin-amstex
+category TLCore
+revision 5403
+depend bin-tex
+execute BuildFormat amstex
+docfiles size=2625
+ texmf/doc/man/man1/amstex.1
+runfiles size=374
+ texmf/fmtutil/format.amstex.cnf
+binfiles arch=i386-openbsd size=6
+ bin/i386-openbsd/amstex
+binfiles arch=i386-solaris size=6
+ bin/i386-solaris/amstex
+binfiles arch=i386-linux size=6
+ bin/i386-linux/amstex
+binfiles arch=hppa-hpux size=6
+ bin/hppa-hpux/amstex
+binfiles arch=mips-irix size=6
+ bin/mips-irix/amstex
+binfiles arch=alpha-linux size=6
+ bin/alpha-linux/amstex
+binfiles arch=sparc-linux size=6
+ bin/sparc-linux/amstex
+binfiles arch=sparc-solaris size=6
+ bin/sparc-solaris/amstex
+binfiles arch=i386-freebsd size=6
+ bin/i386-freebsd/amstex
+binfiles arch=win32 size=2560
+ bin/win32/amstex.exe
+binfiles arch=i386-darwin size=6
+ bin/i386-darwin/amstex
+binfiles arch=powerpc-linux size=6
+ bin/powerpc-linux/amstex
+binfiles arch=powerpc-aix size=6
+ bin/powerpc-aix/amstex
+binfiles arch=powerpc-darwin size=6
+ bin/powerpc-darwin/amstex
+binfiles arch=x86_64-linux size=6
+ bin/x86_64-linux/amstex
+
+name bin-bibtex
+category TLCore
+revision 5403
+depend bin-kpathsea
+docfiles size=4465
+ texmf/doc/man/man1/bibtex.1
+binfiles arch=i386-openbsd size=128740
+ bin/i386-openbsd/bibtex
+binfiles arch=i386-solaris size=146236
+ bin/i386-solaris/bibtex
+binfiles arch=i386-linux size=119444
+ bin/i386-linux/bibtex
+binfiles arch=hppa-hpux size=180845
+ bin/hppa-hpux/bibtex
+binfiles arch=mips-irix size=256800
+ bin/mips-irix/bibtex
+binfiles arch=alpha-linux size=203216
+ bin/alpha-linux/bibtex
+binfiles arch=sparc-linux size=141228
+ bin/sparc-linux/bibtex
+binfiles arch=sparc-solaris size=256572
+ bin/sparc-solaris/bibtex
+binfiles arch=i386-freebsd size=128496
+ bin/i386-freebsd/bibtex
+binfiles arch=win32 size=72192
+ bin/win32/bibtex.exe
+binfiles arch=i386-darwin size=163260
+ bin/i386-darwin/bibtex
+binfiles arch=powerpc-linux size=155284
+ bin/powerpc-linux/bibtex
+binfiles arch=powerpc-aix size=170769
+ bin/powerpc-aix/bibtex
+binfiles arch=powerpc-darwin size=163944
+ bin/powerpc-darwin/bibtex
+binfiles arch=x86_64-linux size=148736
+ bin/x86_64-linux/bibtex
+
+name bin-bibtex8
+category TLCore
+revision 5403
+docfiles size=51124
+ texmf/doc/bibtex8/00readme.txt
+ texmf/doc/bibtex8/HISTORY
+ texmf/doc/bibtex8/csfile.txt
+ texmf/doc/bibtex8/file_id.diz
+runfiles size=69144
+ texmf/bibtex/csf/base/88591lat.csf
+ texmf/bibtex/csf/base/88591sca.csf
+ texmf/bibtex/csf/base/ascii.csf
+ texmf/bibtex/csf/base/cp437lat.csf
+ texmf/bibtex/csf/base/cp850lat.csf
+ texmf/bibtex/csf/base/cp850sca.csf
+ texmf/bibtex/csf/base/cp866rus.csf
+binfiles arch=i386-openbsd size=152900
+ bin/i386-openbsd/bibtex8
+binfiles arch=i386-solaris size=173536
+ bin/i386-solaris/bibtex8
+binfiles arch=i386-linux size=144376
+ bin/i386-linux/bibtex8
+binfiles arch=hppa-hpux size=205441
+ bin/hppa-hpux/bibtex8
+binfiles arch=mips-irix size=300888
+ bin/mips-irix/bibtex8
+binfiles arch=alpha-linux size=251088
+ bin/alpha-linux/bibtex8
+binfiles arch=sparc-linux size=170460
+ bin/sparc-linux/bibtex8
+binfiles arch=sparc-solaris size=289824
+ bin/sparc-solaris/bibtex8
+binfiles arch=i386-freebsd size=153668
+ bin/i386-freebsd/bibtex8
+binfiles arch=win32 size=98816
+ bin/win32/bibtex8.exe
+binfiles arch=i386-darwin size=200224
+ bin/i386-darwin/bibtex8
+binfiles arch=powerpc-linux size=184068
+ bin/powerpc-linux/bibtex8
+binfiles arch=powerpc-aix size=203265
+ bin/powerpc-aix/bibtex8
+binfiles arch=powerpc-darwin size=192720
+ bin/powerpc-darwin/bibtex8
+binfiles arch=x86_64-linux size=181712
+ bin/x86_64-linux/bibtex8
+
+name bin-bzip2
+category TLCore
+revision 5403
+docfiles size=319837
+ texmf/doc/bzip2/bzip2.html
+ texmf/doc/bzip2/bzip2.pdf
+ texmf/doc/bzip2/manual.html
+binfiles arch=win32 size=132608
+ bin/win32/bzip2.exe
+ bin/win32/bzip2recover.exe
+ bin/win32/tl90bzip2.dll
+
+name bin-chktex
+category TLCore
+revision 5403
+docfiles size=594126
+ texmf/doc/chktex/ChkTeX.html
+ texmf/doc/chktex/ChkTeX.pdf
+ texmf/doc/chktex/chktex.dvi
+runfiles size=18864
+ texmf/chktex/.chktexrc
+binfiles arch=win32 size=40960
+ bin/win32/chktex.exe
+
+name bin-cjkutils
+category TLCore
+revision 5403
+docfiles size=554557
+ texmf/doc/bg5conv/bg5conv.pdf
+ texmf/doc/bg5conv/man/pdf/bg5conv.pdf
+ texmf/doc/cef5conv/cef5conv.pdf
+ texmf/doc/cef5conv/man/pdf/cef5conv.pdf
+ texmf/doc/cefconv/cefconv.pdf
+ texmf/doc/cefconv/man/pdf/cefconv.pdf
+ texmf/doc/cefsconv/cefsconv.pdf
+ texmf/doc/cefsconv/man/pdf/cefsconv.pdf
+ texmf/doc/extconv/extconv.pdf
+ texmf/doc/extconv/man/pdf/extconv.pdf
+ texmf/doc/hbf2gf/hbf2gf.pdf
+ texmf/doc/hbf2gf/hbf2gf.txt
+ texmf/doc/hbf2gf/man/pdf/hbf2gf.pdf
+ texmf/doc/man/man1/bg5conv.1
+ texmf/doc/man/man1/cef5conv.1
+ texmf/doc/man/man1/cefconv.1
+ texmf/doc/man/man1/cefsconv.1
+ texmf/doc/man/man1/extconv.1
+ texmf/doc/man/man1/hbf2gf.1
+ texmf/doc/man/man1/sjisconv.1
+ texmf/doc/sjisconv/man/pdf/sjisconv.pdf
+ texmf/doc/sjisconv/sjisconv.pdf
+runfiles size=8021
+ texmf/hbf2gf/README
+ texmf/hbf2gf/b5ka12.cfg
+ texmf/hbf2gf/b5kr12.cfg
+ texmf/hbf2gf/b5so12.cfg
+ texmf/hbf2gf/c1so12.cfg
+ texmf/hbf2gf/c2so12.cfg
+ texmf/hbf2gf/c3so12.cfg
+ texmf/hbf2gf/c4so12.cfg
+ texmf/hbf2gf/c5so12.cfg
+ texmf/hbf2gf/c6so12.cfg
+ texmf/hbf2gf/c7so12.cfg
+ texmf/hbf2gf/csso12.cfg
+ texmf/hbf2gf/gsfs14.cfg
+ texmf/hbf2gf/j2so12.cfg
+ texmf/hbf2gf/jsso12.cfg
+ texmf/hbf2gf/ksso17.cfg
+binfiles arch=i386-openbsd size=124819
+ bin/i386-openbsd/bg5+latex
+ bin/i386-openbsd/bg5+pdflatex
+ bin/i386-openbsd/bg5conv
+ bin/i386-openbsd/bg5latex
+ bin/i386-openbsd/bg5pdflatex
+ bin/i386-openbsd/cef5conv
+ bin/i386-openbsd/cef5latex
+ bin/i386-openbsd/cef5pdflatex
+ bin/i386-openbsd/cefconv
+ bin/i386-openbsd/ceflatex
+ bin/i386-openbsd/cefpdflatex
+ bin/i386-openbsd/cefsconv
+ bin/i386-openbsd/cefslatex
+ bin/i386-openbsd/cefspdflatex
+ bin/i386-openbsd/extconv
+ bin/i386-openbsd/gbklatex
+ bin/i386-openbsd/gbkpdflatex
+ bin/i386-openbsd/hbf2gf
+ bin/i386-openbsd/sjisconv
+ bin/i386-openbsd/sjislatex
+ bin/i386-openbsd/sjispdflatex
+binfiles arch=i386-solaris size=126611
+ bin/i386-solaris/bg5+latex
+ bin/i386-solaris/bg5+pdflatex
+ bin/i386-solaris/bg5conv
+ bin/i386-solaris/bg5latex
+ bin/i386-solaris/bg5pdflatex
+ bin/i386-solaris/cef5conv
+ bin/i386-solaris/cef5latex
+ bin/i386-solaris/cef5pdflatex
+ bin/i386-solaris/cefconv
+ bin/i386-solaris/ceflatex
+ bin/i386-solaris/cefpdflatex
+ bin/i386-solaris/cefsconv
+ bin/i386-solaris/cefslatex
+ bin/i386-solaris/cefspdflatex
+ bin/i386-solaris/extconv
+ bin/i386-solaris/gbklatex
+ bin/i386-solaris/gbkpdflatex
+ bin/i386-solaris/hbf2gf
+ bin/i386-solaris/sjisconv
+ bin/i386-solaris/sjislatex
+ bin/i386-solaris/sjispdflatex
+binfiles arch=i386-linux size=112947
+ bin/i386-linux/bg5+latex
+ bin/i386-linux/bg5+pdflatex
+ bin/i386-linux/bg5conv
+ bin/i386-linux/bg5latex
+ bin/i386-linux/bg5pdflatex
+ bin/i386-linux/cef5conv
+ bin/i386-linux/cef5latex
+ bin/i386-linux/cef5pdflatex
+ bin/i386-linux/cefconv
+ bin/i386-linux/ceflatex
+ bin/i386-linux/cefpdflatex
+ bin/i386-linux/cefsconv
+ bin/i386-linux/cefslatex
+ bin/i386-linux/cefspdflatex
+ bin/i386-linux/extconv
+ bin/i386-linux/gbklatex
+ bin/i386-linux/gbkpdflatex
+ bin/i386-linux/hbf2gf
+ bin/i386-linux/sjisconv
+ bin/i386-linux/sjislatex
+ bin/i386-linux/sjispdflatex
+binfiles arch=hppa-hpux size=244809
+ bin/hppa-hpux/bg5+latex
+ bin/hppa-hpux/bg5+pdflatex
+ bin/hppa-hpux/bg5conv
+ bin/hppa-hpux/bg5latex
+ bin/hppa-hpux/bg5pdflatex
+ bin/hppa-hpux/cef5conv
+ bin/hppa-hpux/cef5latex
+ bin/hppa-hpux/cef5pdflatex
+ bin/hppa-hpux/cefconv
+ bin/hppa-hpux/ceflatex
+ bin/hppa-hpux/cefpdflatex
+ bin/hppa-hpux/cefsconv
+ bin/hppa-hpux/cefslatex
+ bin/hppa-hpux/cefspdflatex
+ bin/hppa-hpux/extconv
+ bin/hppa-hpux/gbklatex
+ bin/hppa-hpux/gbkpdflatex
+ bin/hppa-hpux/hbf2gf
+ bin/hppa-hpux/sjisconv
+ bin/hppa-hpux/sjislatex
+ bin/hppa-hpux/sjispdflatex
+binfiles arch=mips-irix size=261231
+ bin/mips-irix/bg5+latex
+ bin/mips-irix/bg5+pdflatex
+ bin/mips-irix/bg5conv
+ bin/mips-irix/bg5latex
+ bin/mips-irix/bg5pdflatex
+ bin/mips-irix/cef5conv
+ bin/mips-irix/cef5latex
+ bin/mips-irix/cef5pdflatex
+ bin/mips-irix/cefconv
+ bin/mips-irix/ceflatex
+ bin/mips-irix/cefpdflatex
+ bin/mips-irix/cefsconv
+ bin/mips-irix/cefslatex
+ bin/mips-irix/cefspdflatex
+ bin/mips-irix/extconv
+ bin/mips-irix/gbklatex
+ bin/mips-irix/gbkpdflatex
+ bin/mips-irix/hbf2gf
+ bin/mips-irix/sjisconv
+ bin/mips-irix/sjislatex
+ bin/mips-irix/sjispdflatex
+binfiles arch=alpha-linux size=186351
+ bin/alpha-linux/bg5+latex
+ bin/alpha-linux/bg5+pdflatex
+ bin/alpha-linux/bg5conv
+ bin/alpha-linux/bg5latex
+ bin/alpha-linux/bg5pdflatex
+ bin/alpha-linux/cef5conv
+ bin/alpha-linux/cef5latex
+ bin/alpha-linux/cef5pdflatex
+ bin/alpha-linux/cefconv
+ bin/alpha-linux/ceflatex
+ bin/alpha-linux/cefpdflatex
+ bin/alpha-linux/cefsconv
+ bin/alpha-linux/cefslatex
+ bin/alpha-linux/cefspdflatex
+ bin/alpha-linux/extconv
+ bin/alpha-linux/gbklatex
+ bin/alpha-linux/gbkpdflatex
+ bin/alpha-linux/hbf2gf
+ bin/alpha-linux/sjisconv
+ bin/alpha-linux/sjislatex
+ bin/alpha-linux/sjispdflatex
+binfiles arch=sparc-linux size=130143
+ bin/sparc-linux/bg5+latex
+ bin/sparc-linux/bg5+pdflatex
+ bin/sparc-linux/bg5conv
+ bin/sparc-linux/bg5latex
+ bin/sparc-linux/bg5pdflatex
+ bin/sparc-linux/cef5conv
+ bin/sparc-linux/cef5latex
+ bin/sparc-linux/cef5pdflatex
+ bin/sparc-linux/cefconv
+ bin/sparc-linux/ceflatex
+ bin/sparc-linux/cefpdflatex
+ bin/sparc-linux/cefsconv
+ bin/sparc-linux/cefslatex
+ bin/sparc-linux/cefspdflatex
+ bin/sparc-linux/extconv
+ bin/sparc-linux/gbklatex
+ bin/sparc-linux/gbkpdflatex
+ bin/sparc-linux/hbf2gf
+ bin/sparc-linux/sjisconv
+ bin/sparc-linux/sjislatex
+ bin/sparc-linux/sjispdflatex
+binfiles arch=sparc-solaris size=208211
+ bin/sparc-solaris/bg5+latex
+ bin/sparc-solaris/bg5+pdflatex
+ bin/sparc-solaris/bg5conv
+ bin/sparc-solaris/bg5latex
+ bin/sparc-solaris/bg5pdflatex
+ bin/sparc-solaris/cef5conv
+ bin/sparc-solaris/cef5latex
+ bin/sparc-solaris/cef5pdflatex
+ bin/sparc-solaris/cefconv
+ bin/sparc-solaris/ceflatex
+ bin/sparc-solaris/cefpdflatex
+ bin/sparc-solaris/cefsconv
+ bin/sparc-solaris/cefslatex
+ bin/sparc-solaris/cefspdflatex
+ bin/sparc-solaris/extconv
+ bin/sparc-solaris/gbklatex
+ bin/sparc-solaris/gbkpdflatex
+ bin/sparc-solaris/hbf2gf
+ bin/sparc-solaris/sjisconv
+ bin/sparc-solaris/sjislatex
+ bin/sparc-solaris/sjispdflatex
+binfiles arch=i386-freebsd size=120171
+ bin/i386-freebsd/bg5+latex
+ bin/i386-freebsd/bg5+pdflatex
+ bin/i386-freebsd/bg5conv
+ bin/i386-freebsd/bg5latex
+ bin/i386-freebsd/bg5pdflatex
+ bin/i386-freebsd/cef5conv
+ bin/i386-freebsd/cef5latex
+ bin/i386-freebsd/cef5pdflatex
+ bin/i386-freebsd/cefconv
+ bin/i386-freebsd/ceflatex
+ bin/i386-freebsd/cefpdflatex
+ bin/i386-freebsd/cefsconv
+ bin/i386-freebsd/cefslatex
+ bin/i386-freebsd/cefspdflatex
+ bin/i386-freebsd/extconv
+ bin/i386-freebsd/gbklatex
+ bin/i386-freebsd/gbkpdflatex
+ bin/i386-freebsd/hbf2gf
+ bin/i386-freebsd/sjisconv
+ bin/i386-freebsd/sjislatex
+ bin/i386-freebsd/sjispdflatex
+binfiles arch=win32 size=136192
+ bin/win32/bg5conv.exe
+ bin/win32/bg5latex.exe
+ bin/win32/bg5pdflatex.exe
+ bin/win32/cef5conv.exe
+ bin/win32/cef5latex.exe
+ bin/win32/cef5pdflatex.exe
+ bin/win32/cefconv.exe
+ bin/win32/ceflatex.exe
+ bin/win32/cefpdflatex.exe
+ bin/win32/cefsconv.exe
+ bin/win32/cefslatex.exe
+ bin/win32/cefspdflatex.exe
+ bin/win32/extconv.exe
+ bin/win32/gbklatex.exe
+ bin/win32/gbkpdflatex.exe
+ bin/win32/hbf2gf.exe
+ bin/win32/sjisconv.exe
+ bin/win32/sjislatex.exe
+ bin/win32/sjispdflatex.exe
+binfiles arch=i386-darwin size=191991
+ bin/i386-darwin/bg5+latex
+ bin/i386-darwin/bg5+pdflatex
+ bin/i386-darwin/bg5conv
+ bin/i386-darwin/bg5latex
+ bin/i386-darwin/bg5pdflatex
+ bin/i386-darwin/cef5conv
+ bin/i386-darwin/cef5latex
+ bin/i386-darwin/cef5pdflatex
+ bin/i386-darwin/cefconv
+ bin/i386-darwin/ceflatex
+ bin/i386-darwin/cefpdflatex
+ bin/i386-darwin/cefsconv
+ bin/i386-darwin/cefslatex
+ bin/i386-darwin/cefspdflatex
+ bin/i386-darwin/extconv
+ bin/i386-darwin/gbklatex
+ bin/i386-darwin/gbkpdflatex
+ bin/i386-darwin/hbf2gf
+ bin/i386-darwin/sjisconv
+ bin/i386-darwin/sjislatex
+ bin/i386-darwin/sjispdflatex
+binfiles arch=powerpc-linux size=135151
+ bin/powerpc-linux/bg5+latex
+ bin/powerpc-linux/bg5+pdflatex
+ bin/powerpc-linux/bg5conv
+ bin/powerpc-linux/bg5latex
+ bin/powerpc-linux/bg5pdflatex
+ bin/powerpc-linux/cef5conv
+ bin/powerpc-linux/cef5latex
+ bin/powerpc-linux/cef5pdflatex
+ bin/powerpc-linux/cefconv
+ bin/powerpc-linux/ceflatex
+ bin/powerpc-linux/cefpdflatex
+ bin/powerpc-linux/cefsconv
+ bin/powerpc-linux/cefslatex
+ bin/powerpc-linux/cefspdflatex
+ bin/powerpc-linux/extconv
+ bin/powerpc-linux/gbklatex
+ bin/powerpc-linux/gbkpdflatex
+ bin/powerpc-linux/hbf2gf
+ bin/powerpc-linux/sjisconv
+ bin/powerpc-linux/sjislatex
+ bin/powerpc-linux/sjispdflatex
+binfiles arch=powerpc-aix size=125571
+ bin/powerpc-aix/bg5+latex
+ bin/powerpc-aix/bg5+pdflatex
+ bin/powerpc-aix/bg5conv
+ bin/powerpc-aix/bg5latex
+ bin/powerpc-aix/bg5pdflatex
+ bin/powerpc-aix/cef5conv
+ bin/powerpc-aix/cef5latex
+ bin/powerpc-aix/cef5pdflatex
+ bin/powerpc-aix/cefconv
+ bin/powerpc-aix/ceflatex
+ bin/powerpc-aix/cefpdflatex
+ bin/powerpc-aix/cefsconv
+ bin/powerpc-aix/cefslatex
+ bin/powerpc-aix/cefspdflatex
+ bin/powerpc-aix/extconv
+ bin/powerpc-aix/gbklatex
+ bin/powerpc-aix/gbkpdflatex
+ bin/powerpc-aix/hbf2gf
+ bin/powerpc-aix/sjisconv
+ bin/powerpc-aix/sjislatex
+ bin/powerpc-aix/sjispdflatex
+binfiles arch=powerpc-darwin size=183243
+ bin/powerpc-darwin/bg5+latex
+ bin/powerpc-darwin/bg5+pdflatex
+ bin/powerpc-darwin/bg5conv
+ bin/powerpc-darwin/bg5latex
+ bin/powerpc-darwin/bg5pdflatex
+ bin/powerpc-darwin/cef5conv
+ bin/powerpc-darwin/cef5latex
+ bin/powerpc-darwin/cef5pdflatex
+ bin/powerpc-darwin/cefconv
+ bin/powerpc-darwin/ceflatex
+ bin/powerpc-darwin/cefpdflatex
+ bin/powerpc-darwin/cefsconv
+ bin/powerpc-darwin/cefslatex
+ bin/powerpc-darwin/cefspdflatex
+ bin/powerpc-darwin/extconv
+ bin/powerpc-darwin/gbklatex
+ bin/powerpc-darwin/gbkpdflatex
+ bin/powerpc-darwin/hbf2gf
+ bin/powerpc-darwin/sjisconv
+ bin/powerpc-darwin/sjislatex
+ bin/powerpc-darwin/sjispdflatex
+binfiles arch=x86_64-linux size=143399
+ bin/x86_64-linux/bg5+latex
+ bin/x86_64-linux/bg5+pdflatex
+ bin/x86_64-linux/bg5conv
+ bin/x86_64-linux/bg5latex
+ bin/x86_64-linux/bg5pdflatex
+ bin/x86_64-linux/cef5conv
+ bin/x86_64-linux/cef5latex
+ bin/x86_64-linux/cef5pdflatex
+ bin/x86_64-linux/cefconv
+ bin/x86_64-linux/ceflatex
+ bin/x86_64-linux/cefpdflatex
+ bin/x86_64-linux/cefsconv
+ bin/x86_64-linux/cefslatex
+ bin/x86_64-linux/cefspdflatex
+ bin/x86_64-linux/extconv
+ bin/x86_64-linux/gbklatex
+ bin/x86_64-linux/gbkpdflatex
+ bin/x86_64-linux/hbf2gf
+ bin/x86_64-linux/sjisconv
+ bin/x86_64-linux/sjislatex
+ bin/x86_64-linux/sjispdflatex
+
+name bin-context
+category TLCore
+revision 5403
+depend bin-pdftex
+execute BuildFormat context
+docfiles size=47706
+ texmf/doc/man/man1/ctxtools.1
+ texmf/doc/man/man1/fdf2tex.1
+ texmf/doc/man/man1/makempy.1
+ texmf/doc/man/man1/mptopdf.1
+ texmf/doc/man/man1/pdftools.1
+ texmf/doc/man/man1/pstopdf.1
+ texmf/doc/man/man1/texexec.1
+ texmf/doc/man/man1/texfind.1
+ texmf/doc/man/man1/texfont.1
+ texmf/doc/man/man1/texmfstart.1
+ texmf/doc/man/man1/textools.1
+ texmf/doc/man/man1/texutil.1
+runfiles size=579
+ texmf/fmtutil/format.context.cnf
+binfiles arch=i386-openbsd size=87267
+ bin/i386-openbsd/ctxtools
+ bin/i386-openbsd/exatools
+ bin/i386-openbsd/luatools
+ bin/i386-openbsd/makempy
+ bin/i386-openbsd/mpstools
+ bin/i386-openbsd/mptopdf
+ bin/i386-openbsd/mtxtools
+ bin/i386-openbsd/pdftools
+ bin/i386-openbsd/pstopdf
+ bin/i386-openbsd/rlxtools
+ bin/i386-openbsd/runtools
+ bin/i386-openbsd/texexec
+ bin/i386-openbsd/texfont
+ bin/i386-openbsd/texmfstart
+ bin/i386-openbsd/textools
+ bin/i386-openbsd/texutil
+ bin/i386-openbsd/tmftools
+ bin/i386-openbsd/xmltools
+binfiles arch=i386-solaris size=87267
+ bin/i386-solaris/ctxtools
+ bin/i386-solaris/exatools
+ bin/i386-solaris/luatools
+ bin/i386-solaris/makempy
+ bin/i386-solaris/mpstools
+ bin/i386-solaris/mptopdf
+ bin/i386-solaris/mtxtools
+ bin/i386-solaris/pdftools
+ bin/i386-solaris/pstopdf
+ bin/i386-solaris/rlxtools
+ bin/i386-solaris/runtools
+ bin/i386-solaris/texexec
+ bin/i386-solaris/texfont
+ bin/i386-solaris/texmfstart
+ bin/i386-solaris/textools
+ bin/i386-solaris/texutil
+ bin/i386-solaris/tmftools
+ bin/i386-solaris/xmltools
+binfiles arch=i386-linux size=87267
+ bin/i386-linux/ctxtools
+ bin/i386-linux/exatools
+ bin/i386-linux/luatools
+ bin/i386-linux/makempy
+ bin/i386-linux/mpstools
+ bin/i386-linux/mptopdf
+ bin/i386-linux/mtxtools
+ bin/i386-linux/pdftools
+ bin/i386-linux/pstopdf
+ bin/i386-linux/rlxtools
+ bin/i386-linux/runtools
+ bin/i386-linux/texexec
+ bin/i386-linux/texfont
+ bin/i386-linux/texmfstart
+ bin/i386-linux/textools
+ bin/i386-linux/texutil
+ bin/i386-linux/tmftools
+ bin/i386-linux/xmltools
+binfiles arch=hppa-hpux size=87267
+ bin/hppa-hpux/ctxtools
+ bin/hppa-hpux/exatools
+ bin/hppa-hpux/luatools
+ bin/hppa-hpux/makempy
+ bin/hppa-hpux/mpstools
+ bin/hppa-hpux/mptopdf
+ bin/hppa-hpux/mtxtools
+ bin/hppa-hpux/pdftools
+ bin/hppa-hpux/pstopdf
+ bin/hppa-hpux/rlxtools
+ bin/hppa-hpux/runtools
+ bin/hppa-hpux/texexec
+ bin/hppa-hpux/texfont
+ bin/hppa-hpux/texmfstart
+ bin/hppa-hpux/textools
+ bin/hppa-hpux/texutil
+ bin/hppa-hpux/tmftools
+ bin/hppa-hpux/xmltools
+binfiles arch=mips-irix size=87267
+ bin/mips-irix/ctxtools
+ bin/mips-irix/exatools
+ bin/mips-irix/luatools
+ bin/mips-irix/makempy
+ bin/mips-irix/mpstools
+ bin/mips-irix/mptopdf
+ bin/mips-irix/mtxtools
+ bin/mips-irix/pdftools
+ bin/mips-irix/pstopdf
+ bin/mips-irix/rlxtools
+ bin/mips-irix/runtools
+ bin/mips-irix/texexec
+ bin/mips-irix/texfont
+ bin/mips-irix/texmfstart
+ bin/mips-irix/textools
+ bin/mips-irix/texutil
+ bin/mips-irix/tmftools
+ bin/mips-irix/xmltools
+binfiles arch=alpha-linux size=87267
+ bin/alpha-linux/ctxtools
+ bin/alpha-linux/exatools
+ bin/alpha-linux/luatools
+ bin/alpha-linux/makempy
+ bin/alpha-linux/mpstools
+ bin/alpha-linux/mptopdf
+ bin/alpha-linux/mtxtools
+ bin/alpha-linux/pdftools
+ bin/alpha-linux/pstopdf
+ bin/alpha-linux/rlxtools
+ bin/alpha-linux/runtools
+ bin/alpha-linux/texexec
+ bin/alpha-linux/texfont
+ bin/alpha-linux/texmfstart
+ bin/alpha-linux/textools
+ bin/alpha-linux/texutil
+ bin/alpha-linux/tmftools
+ bin/alpha-linux/xmltools
+binfiles arch=sparc-linux size=87267
+ bin/sparc-linux/ctxtools
+ bin/sparc-linux/exatools
+ bin/sparc-linux/luatools
+ bin/sparc-linux/makempy
+ bin/sparc-linux/mpstools
+ bin/sparc-linux/mptopdf
+ bin/sparc-linux/mtxtools
+ bin/sparc-linux/pdftools
+ bin/sparc-linux/pstopdf
+ bin/sparc-linux/rlxtools
+ bin/sparc-linux/runtools
+ bin/sparc-linux/texexec
+ bin/sparc-linux/texfont
+ bin/sparc-linux/texmfstart
+ bin/sparc-linux/textools
+ bin/sparc-linux/texutil
+ bin/sparc-linux/tmftools
+ bin/sparc-linux/xmltools
+binfiles arch=sparc-solaris size=87267
+ bin/sparc-solaris/ctxtools
+ bin/sparc-solaris/exatools
+ bin/sparc-solaris/luatools
+ bin/sparc-solaris/makempy
+ bin/sparc-solaris/mpstools
+ bin/sparc-solaris/mptopdf
+ bin/sparc-solaris/mtxtools
+ bin/sparc-solaris/pdftools
+ bin/sparc-solaris/pstopdf
+ bin/sparc-solaris/rlxtools
+ bin/sparc-solaris/runtools
+ bin/sparc-solaris/texexec
+ bin/sparc-solaris/texfont
+ bin/sparc-solaris/texmfstart
+ bin/sparc-solaris/textools
+ bin/sparc-solaris/texutil
+ bin/sparc-solaris/tmftools
+ bin/sparc-solaris/xmltools
+binfiles arch=i386-freebsd size=87267
+ bin/i386-freebsd/ctxtools
+ bin/i386-freebsd/exatools
+ bin/i386-freebsd/luatools
+ bin/i386-freebsd/makempy
+ bin/i386-freebsd/mpstools
+ bin/i386-freebsd/mptopdf
+ bin/i386-freebsd/mtxtools
+ bin/i386-freebsd/pdftools
+ bin/i386-freebsd/pstopdf
+ bin/i386-freebsd/rlxtools
+ bin/i386-freebsd/runtools
+ bin/i386-freebsd/texexec
+ bin/i386-freebsd/texfont
+ bin/i386-freebsd/texmfstart
+ bin/i386-freebsd/textools
+ bin/i386-freebsd/texutil
+ bin/i386-freebsd/tmftools
+ bin/i386-freebsd/xmltools
+binfiles arch=win32 size=909953
+ bin/win32/ctxtools.bat
+ bin/win32/exatools.bat
+ bin/win32/luatools.bat
+ bin/win32/makempy.bat
+ bin/win32/mpstools.bat
+ bin/win32/mptopdf.bat
+ bin/win32/mtxtools.bat
+ bin/win32/pdftools.bat
+ bin/win32/pstopdf.bat
+ bin/win32/rlxtools.bat
+ bin/win32/runtools.bat
+ bin/win32/texexec.bat
+ bin/win32/texfont.bat
+ bin/win32/texmfstart.exe
+ bin/win32/textools.bat
+ bin/win32/texutil.bat
+ bin/win32/tmftools.bat
+ bin/win32/xmltools.bat
+binfiles arch=i386-darwin size=87267
+ bin/i386-darwin/ctxtools
+ bin/i386-darwin/exatools
+ bin/i386-darwin/luatools
+ bin/i386-darwin/makempy
+ bin/i386-darwin/mpstools
+ bin/i386-darwin/mptopdf
+ bin/i386-darwin/mtxtools
+ bin/i386-darwin/pdftools
+ bin/i386-darwin/pstopdf
+ bin/i386-darwin/rlxtools
+ bin/i386-darwin/runtools
+ bin/i386-darwin/texexec
+ bin/i386-darwin/texfont
+ bin/i386-darwin/texmfstart
+ bin/i386-darwin/textools
+ bin/i386-darwin/texutil
+ bin/i386-darwin/tmftools
+ bin/i386-darwin/xmltools
+binfiles arch=powerpc-linux size=87267
+ bin/powerpc-linux/ctxtools
+ bin/powerpc-linux/exatools
+ bin/powerpc-linux/luatools
+ bin/powerpc-linux/makempy
+ bin/powerpc-linux/mpstools
+ bin/powerpc-linux/mptopdf
+ bin/powerpc-linux/mtxtools
+ bin/powerpc-linux/pdftools
+ bin/powerpc-linux/pstopdf
+ bin/powerpc-linux/rlxtools
+ bin/powerpc-linux/runtools
+ bin/powerpc-linux/texexec
+ bin/powerpc-linux/texfont
+ bin/powerpc-linux/texmfstart
+ bin/powerpc-linux/textools
+ bin/powerpc-linux/texutil
+ bin/powerpc-linux/tmftools
+ bin/powerpc-linux/xmltools
+binfiles arch=powerpc-aix size=87267
+ bin/powerpc-aix/ctxtools
+ bin/powerpc-aix/exatools
+ bin/powerpc-aix/luatools
+ bin/powerpc-aix/makempy
+ bin/powerpc-aix/mpstools
+ bin/powerpc-aix/mptopdf
+ bin/powerpc-aix/mtxtools
+ bin/powerpc-aix/pdftools
+ bin/powerpc-aix/pstopdf
+ bin/powerpc-aix/rlxtools
+ bin/powerpc-aix/runtools
+ bin/powerpc-aix/texexec
+ bin/powerpc-aix/texfont
+ bin/powerpc-aix/texmfstart
+ bin/powerpc-aix/textools
+ bin/powerpc-aix/texutil
+ bin/powerpc-aix/tmftools
+ bin/powerpc-aix/xmltools
+binfiles arch=powerpc-darwin size=87267
+ bin/powerpc-darwin/ctxtools
+ bin/powerpc-darwin/exatools
+ bin/powerpc-darwin/luatools
+ bin/powerpc-darwin/makempy
+ bin/powerpc-darwin/mpstools
+ bin/powerpc-darwin/mptopdf
+ bin/powerpc-darwin/mtxtools
+ bin/powerpc-darwin/pdftools
+ bin/powerpc-darwin/pstopdf
+ bin/powerpc-darwin/rlxtools
+ bin/powerpc-darwin/runtools
+ bin/powerpc-darwin/texexec
+ bin/powerpc-darwin/texfont
+ bin/powerpc-darwin/texmfstart
+ bin/powerpc-darwin/textools
+ bin/powerpc-darwin/texutil
+ bin/powerpc-darwin/tmftools
+ bin/powerpc-darwin/xmltools
+binfiles arch=x86_64-linux size=87267
+ bin/x86_64-linux/ctxtools
+ bin/x86_64-linux/exatools
+ bin/x86_64-linux/luatools
+ bin/x86_64-linux/makempy
+ bin/x86_64-linux/mpstools
+ bin/x86_64-linux/mptopdf
+ bin/x86_64-linux/mtxtools
+ bin/x86_64-linux/pdftools
+ bin/x86_64-linux/pstopdf
+ bin/x86_64-linux/rlxtools
+ bin/x86_64-linux/runtools
+ bin/x86_64-linux/texexec
+ bin/x86_64-linux/texfont
+ bin/x86_64-linux/texmfstart
+ bin/x86_64-linux/textools
+ bin/x86_64-linux/texutil
+ bin/x86_64-linux/tmftools
+ bin/x86_64-linux/xmltools
+
+name bin-cslatex
+category TLCore
+revision 5403
+depend bin-latex
+execute BuildFormat cslatex
+runfiles size=166
+ texmf/fmtutil/format.cslatex.cnf
+binfiles arch=i386-openbsd size=12
+ bin/i386-openbsd/cslatex
+ bin/i386-openbsd/pdfcslatex
+binfiles arch=i386-solaris size=12
+ bin/i386-solaris/cslatex
+ bin/i386-solaris/pdfcslatex
+binfiles arch=i386-linux size=12
+ bin/i386-linux/cslatex
+ bin/i386-linux/pdfcslatex
+binfiles arch=hppa-hpux size=12
+ bin/hppa-hpux/cslatex
+ bin/hppa-hpux/pdfcslatex
+binfiles arch=mips-irix size=12
+ bin/mips-irix/cslatex
+ bin/mips-irix/pdfcslatex
+binfiles arch=alpha-linux size=12
+ bin/alpha-linux/cslatex
+ bin/alpha-linux/pdfcslatex
+binfiles arch=sparc-linux size=12
+ bin/sparc-linux/cslatex
+ bin/sparc-linux/pdfcslatex
+binfiles arch=sparc-solaris size=12
+ bin/sparc-solaris/cslatex
+ bin/sparc-solaris/pdfcslatex
+binfiles arch=i386-freebsd size=12
+ bin/i386-freebsd/cslatex
+ bin/i386-freebsd/pdfcslatex
+binfiles arch=win32 size=5120
+ bin/win32/cslatex.exe
+ bin/win32/pdfcslatex.exe
+binfiles arch=i386-darwin size=12
+ bin/i386-darwin/cslatex
+ bin/i386-darwin/pdfcslatex
+binfiles arch=powerpc-linux size=12
+ bin/powerpc-linux/cslatex
+ bin/powerpc-linux/pdfcslatex
+binfiles arch=powerpc-aix size=12
+ bin/powerpc-aix/cslatex
+ bin/powerpc-aix/pdfcslatex
+binfiles arch=powerpc-darwin size=12
+ bin/powerpc-darwin/cslatex
+ bin/powerpc-darwin/pdfcslatex
+binfiles arch=x86_64-linux size=12
+ bin/x86_64-linux/cslatex
+ bin/x86_64-linux/pdfcslatex
+
+name bin-csplain
+category TLCore
+revision 5403
+depend bin-tex
+execute BuildFormat csplain
+runfiles size=162
+ texmf/fmtutil/format.csplain.cnf
+binfiles arch=i386-openbsd size=12
+ bin/i386-openbsd/csplain
+ bin/i386-openbsd/pdfcsplain
+binfiles arch=i386-solaris size=12
+ bin/i386-solaris/csplain
+ bin/i386-solaris/pdfcsplain
+binfiles arch=i386-linux size=12
+ bin/i386-linux/csplain
+ bin/i386-linux/pdfcsplain
+binfiles arch=hppa-hpux size=12
+ bin/hppa-hpux/csplain
+ bin/hppa-hpux/pdfcsplain
+binfiles arch=mips-irix size=12
+ bin/mips-irix/csplain
+ bin/mips-irix/pdfcsplain
+binfiles arch=alpha-linux size=12
+ bin/alpha-linux/csplain
+ bin/alpha-linux/pdfcsplain
+binfiles arch=sparc-linux size=12
+ bin/sparc-linux/csplain
+ bin/sparc-linux/pdfcsplain
+binfiles arch=sparc-solaris size=12
+ bin/sparc-solaris/csplain
+ bin/sparc-solaris/pdfcsplain
+binfiles arch=i386-freebsd size=12
+ bin/i386-freebsd/csplain
+ bin/i386-freebsd/pdfcsplain
+binfiles arch=win32 size=5120
+ bin/win32/csplain.exe
+ bin/win32/pdfcsplain.exe
+binfiles arch=i386-darwin size=12
+ bin/i386-darwin/csplain
+ bin/i386-darwin/pdfcsplain
+binfiles arch=powerpc-linux size=12
+ bin/powerpc-linux/csplain
+ bin/powerpc-linux/pdfcsplain
+binfiles arch=powerpc-aix size=12
+ bin/powerpc-aix/csplain
+ bin/powerpc-aix/pdfcsplain
+binfiles arch=powerpc-darwin size=12
+ bin/powerpc-darwin/csplain
+ bin/powerpc-darwin/pdfcsplain
+binfiles arch=x86_64-linux size=12
+ bin/x86_64-linux/csplain
+ bin/x86_64-linux/pdfcsplain
+
+name bin-ctie
+category TLCore
+revision 5403
+depend bin-kpathsea
+docfiles size=1527
+ texmf/doc/man/man1/ctie.1
+binfiles arch=i386-openbsd size=59076
+ bin/i386-openbsd/ctie
+binfiles arch=i386-solaris size=63580
+ bin/i386-solaris/ctie
+binfiles arch=i386-linux size=57608
+ bin/i386-linux/ctie
+binfiles arch=hppa-hpux size=86337
+ bin/hppa-hpux/ctie
+binfiles arch=mips-irix size=113316
+ bin/mips-irix/ctie
+binfiles arch=alpha-linux size=95344
+ bin/alpha-linux/ctie
+binfiles arch=sparc-linux size=66524
+ bin/sparc-linux/ctie
+binfiles arch=sparc-solaris size=131616
+ bin/sparc-solaris/ctie
+binfiles arch=i386-freebsd size=60804
+ bin/i386-freebsd/ctie
+binfiles arch=win32 size=10240
+ bin/win32/ctie.exe
+binfiles arch=i386-darwin size=76244
+ bin/i386-darwin/ctie
+binfiles arch=powerpc-linux size=69020
+ bin/powerpc-linux/ctie
+binfiles arch=powerpc-aix size=73726
+ bin/powerpc-aix/ctie
+binfiles arch=powerpc-darwin size=72832
+ bin/powerpc-darwin/ctie
+binfiles arch=x86_64-linux size=72408
+ bin/x86_64-linux/ctie
+
+name bin-cweb
+category TLCore
+revision 5403
+docfiles size=3790
+ texmf/doc/man/man1/ctangle.1
+ texmf/doc/man/man1/cweave.1
+ texmf/doc/man/man1/cweb.1
+binfiles arch=i386-openbsd size=189704
+ bin/i386-openbsd/ctangle
+ bin/i386-openbsd/cweave
+binfiles arch=i386-solaris size=206808
+ bin/i386-solaris/ctangle
+ bin/i386-solaris/cweave
+binfiles arch=i386-linux size=179448
+ bin/i386-linux/ctangle
+ bin/i386-linux/cweave
+binfiles arch=hppa-hpux size=262944
+ bin/hppa-hpux/ctangle
+ bin/hppa-hpux/cweave
+binfiles arch=mips-irix size=353344
+ bin/mips-irix/ctangle
+ bin/mips-irix/cweave
+binfiles arch=alpha-linux size=307016
+ bin/alpha-linux/ctangle
+ bin/alpha-linux/cweave
+binfiles arch=sparc-linux size=214172
+ bin/sparc-linux/ctangle
+ bin/sparc-linux/cweave
+binfiles arch=sparc-solaris size=376508
+ bin/sparc-solaris/ctangle
+ bin/sparc-solaris/cweave
+binfiles arch=i386-freebsd size=196536
+ bin/i386-freebsd/ctangle
+ bin/i386-freebsd/cweave
+binfiles arch=win32 size=86016
+ bin/win32/ctangle.exe
+ bin/win32/cweave.exe
+binfiles arch=i386-darwin size=239124
+ bin/i386-darwin/ctangle
+ bin/i386-darwin/cweave
+binfiles arch=powerpc-linux size=222340
+ bin/powerpc-linux/ctangle
+ bin/powerpc-linux/cweave
+binfiles arch=powerpc-aix size=235908
+ bin/powerpc-aix/ctangle
+ bin/powerpc-aix/cweave
+binfiles arch=powerpc-darwin size=228284
+ bin/powerpc-darwin/ctangle
+ bin/powerpc-darwin/cweave
+binfiles arch=x86_64-linux size=225808
+ bin/x86_64-linux/ctangle
+ bin/x86_64-linux/cweave
+
+name bin-cyrillic
+category TLCore
+revision 3920
+docfiles size=3666
+ texmf/doc/man/man1/rubibtex.1
+ texmf/doc/man/man1/rumakeindex.1
+runfiles size=259
+ texmf/fmtutil/format.cyramstex.cnf
+ texmf/fmtutil/format.cyrtex.cnf
+ texmf/fmtutil/format.cyrtexinfo.cnf
+binfiles arch=i386-openbsd size=4374
+ bin/i386-openbsd/rubibtex
+ bin/i386-openbsd/rumakeindex
+binfiles arch=i386-solaris size=4374
+ bin/i386-solaris/rubibtex
+ bin/i386-solaris/rumakeindex
+binfiles arch=i386-linux size=4374
+ bin/i386-linux/rubibtex
+ bin/i386-linux/rumakeindex
+binfiles arch=hppa-hpux size=4374
+ bin/hppa-hpux/rubibtex
+ bin/hppa-hpux/rumakeindex
+binfiles arch=mips-irix size=4374
+ bin/mips-irix/rubibtex
+ bin/mips-irix/rumakeindex
+binfiles arch=alpha-linux size=4374
+ bin/alpha-linux/rubibtex
+ bin/alpha-linux/rumakeindex
+binfiles arch=sparc-linux size=4374
+ bin/sparc-linux/rubibtex
+ bin/sparc-linux/rumakeindex
+binfiles arch=sparc-solaris size=4374
+ bin/sparc-solaris/rubibtex
+ bin/sparc-solaris/rumakeindex
+binfiles arch=i386-freebsd size=4374
+ bin/i386-freebsd/rubibtex
+ bin/i386-freebsd/rumakeindex
+binfiles arch=i386-darwin size=4374
+ bin/i386-darwin/rubibtex
+ bin/i386-darwin/rumakeindex
+binfiles arch=powerpc-linux size=4374
+ bin/powerpc-linux/rubibtex
+ bin/powerpc-linux/rumakeindex
+binfiles arch=powerpc-aix size=4374
+ bin/powerpc-aix/rubibtex
+ bin/powerpc-aix/rumakeindex
+binfiles arch=powerpc-darwin size=4374
+ bin/powerpc-darwin/rubibtex
+ bin/powerpc-darwin/rumakeindex
+binfiles arch=x86_64-linux size=4374
+ bin/x86_64-linux/rubibtex
+ bin/x86_64-linux/rumakeindex
+
+name bin-detex
+category TLCore
+revision 5403
+docfiles size=4006
+ texmf/doc/man/man1/detex.1
+binfiles arch=i386-openbsd size=71876
+ bin/i386-openbsd/detex
+binfiles arch=i386-solaris size=75624
+ bin/i386-solaris/detex
+binfiles arch=i386-linux size=65844
+ bin/i386-linux/detex
+binfiles arch=hppa-hpux size=98653
+ bin/hppa-hpux/detex
+binfiles arch=mips-irix size=120436
+ bin/mips-irix/detex
+binfiles arch=alpha-linux size=110552
+ bin/alpha-linux/detex
+binfiles arch=sparc-linux size=78804
+ bin/sparc-linux/detex
+binfiles arch=sparc-solaris size=143696
+ bin/sparc-solaris/detex
+binfiles arch=i386-freebsd size=77088
+ bin/i386-freebsd/detex
+binfiles arch=win32 size=19456
+ bin/win32/detex.exe
+binfiles arch=i386-darwin size=88564
+ bin/i386-darwin/detex
+binfiles arch=powerpc-linux size=80808
+ bin/powerpc-linux/detex
+binfiles arch=powerpc-aix size=82818
+ bin/powerpc-aix/detex
+binfiles arch=powerpc-darwin size=85156
+ bin/powerpc-darwin/detex
+binfiles arch=x86_64-linux size=85744
+ bin/x86_64-linux/detex
+
+name bin-devnag
+category TLCore
+revision 5403
+binfiles arch=i386-openbsd size=25508
+ bin/i386-openbsd/devnag
+binfiles arch=i386-solaris size=27196
+ bin/i386-solaris/devnag
+binfiles arch=i386-linux size=23040
+ bin/i386-linux/devnag
+binfiles arch=hppa-hpux size=45169
+ bin/hppa-hpux/devnag
+binfiles arch=mips-irix size=47732
+ bin/mips-irix/devnag
+binfiles arch=alpha-linux size=43624
+ bin/alpha-linux/devnag
+binfiles arch=sparc-linux size=31488
+ bin/sparc-linux/devnag
+binfiles arch=sparc-solaris size=33908
+ bin/sparc-solaris/devnag
+binfiles arch=i386-freebsd size=23764
+ bin/i386-freebsd/devnag
+binfiles arch=win32 size=23040
+ bin/win32/devnag.exe
+binfiles arch=i386-darwin size=34420
+ bin/i386-darwin/devnag
+binfiles arch=powerpc-linux size=31120
+ bin/powerpc-linux/devnag
+binfiles arch=powerpc-aix size=31828
+ bin/powerpc-aix/devnag
+binfiles arch=powerpc-darwin size=34960
+ bin/powerpc-darwin/devnag
+binfiles arch=x86_64-linux size=30616
+ bin/x86_64-linux/devnag
+
+name bin-dialog
+category TLCore
+revision 5391
+docfiles size=6120
+ texmf/doc/man/man1/tcdialog.1
+binfiles arch=i386-openbsd size=118468
+ bin/i386-openbsd/tcdialog
+binfiles arch=i386-solaris size=132372
+ bin/i386-solaris/tcdialog
+binfiles arch=i386-linux size=118904
+ bin/i386-linux/tcdialog
+binfiles arch=hppa-hpux size=143926
+ bin/hppa-hpux/tcdialog
+binfiles arch=mips-irix size=213632
+ bin/mips-irix/tcdialog
+binfiles arch=alpha-linux size=188272
+ bin/alpha-linux/tcdialog
+binfiles arch=sparc-linux size=143976
+ bin/sparc-linux/tcdialog
+binfiles arch=sparc-solaris size=271540
+ bin/sparc-solaris/tcdialog
+binfiles arch=i386-freebsd size=125688
+ bin/i386-freebsd/tcdialog
+binfiles arch=i386-darwin size=142268
+ bin/i386-darwin/tcdialog
+binfiles arch=powerpc-linux size=139964
+ bin/powerpc-linux/tcdialog
+binfiles arch=powerpc-aix size=158208
+ bin/powerpc-aix/tcdialog
+binfiles arch=powerpc-darwin size=130568
+ bin/powerpc-darwin/tcdialog
+binfiles arch=x86_64-linux size=141648
+ bin/x86_64-linux/tcdialog
+
+name bin-dtl
+category TLCore
+revision 5403
+runfiles size=17887
+ texmf/doc/man/man1/dt2dv.1
+ texmf/doc/man/man1/dv2dt.1
+binfiles arch=i386-openbsd size=41832
+ bin/i386-openbsd/dt2dv
+ bin/i386-openbsd/dv2dt
+binfiles arch=i386-solaris size=42104
+ bin/i386-solaris/dt2dv
+ bin/i386-solaris/dv2dt
+binfiles arch=i386-linux size=36672
+ bin/i386-linux/dt2dv
+ bin/i386-linux/dv2dt
+binfiles arch=hppa-hpux size=78082
+ bin/hppa-hpux/dt2dv
+ bin/hppa-hpux/dv2dt
+binfiles arch=mips-irix size=73376
+ bin/mips-irix/dt2dv
+ bin/mips-irix/dv2dt
+binfiles arch=alpha-linux size=59888
+ bin/alpha-linux/dt2dv
+ bin/alpha-linux/dv2dt
+binfiles arch=sparc-linux size=41932
+ bin/sparc-linux/dt2dv
+ bin/sparc-linux/dv2dt
+binfiles arch=sparc-solaris size=50256
+ bin/sparc-solaris/dt2dv
+ bin/sparc-solaris/dv2dt
+binfiles arch=i386-freebsd size=41032
+ bin/i386-freebsd/dt2dv
+ bin/i386-freebsd/dv2dt
+binfiles arch=win32 size=32256
+ bin/win32/dt2dv.exe
+ bin/win32/dv2dt.exe
+binfiles arch=i386-darwin size=60144
+ bin/i386-darwin/dt2dv
+ bin/i386-darwin/dv2dt
+binfiles arch=powerpc-linux size=46472
+ bin/powerpc-linux/dt2dv
+ bin/powerpc-linux/dv2dt
+binfiles arch=powerpc-aix size=44150
+ bin/powerpc-aix/dt2dv
+ bin/powerpc-aix/dv2dt
+binfiles arch=powerpc-darwin size=57072
+ bin/powerpc-darwin/dt2dv
+ bin/powerpc-darwin/dv2dt
+binfiles arch=x86_64-linux size=52656
+ bin/x86_64-linux/dt2dv
+ bin/x86_64-linux/dv2dt
+
+name bin-dvi2tty
+category TLCore
+revision 5403
+runfiles size=4292
+ texmf/doc/man/man1/dvi2tty.1
+binfiles arch=i386-openbsd size=30792
+ bin/i386-openbsd/disdvi
+ bin/i386-openbsd/dvi2tty
+binfiles arch=i386-solaris size=31884
+ bin/i386-solaris/disdvi
+ bin/i386-solaris/dvi2tty
+binfiles arch=i386-linux size=26332
+ bin/i386-linux/disdvi
+ bin/i386-linux/dvi2tty
+binfiles arch=hppa-hpux size=69852
+ bin/hppa-hpux/disdvi
+ bin/hppa-hpux/dvi2tty
+binfiles arch=mips-irix size=67212
+ bin/mips-irix/disdvi
+ bin/mips-irix/dvi2tty
+binfiles arch=alpha-linux size=44968
+ bin/alpha-linux/disdvi
+ bin/alpha-linux/dvi2tty
+binfiles arch=sparc-linux size=31364
+ bin/sparc-linux/disdvi
+ bin/sparc-linux/dvi2tty
+binfiles arch=sparc-solaris size=41632
+ bin/sparc-solaris/disdvi
+ bin/sparc-solaris/dvi2tty
+binfiles arch=i386-freebsd size=28560
+ bin/i386-freebsd/disdvi
+ bin/i386-freebsd/dvi2tty
+binfiles arch=win32 size=25600
+ bin/win32/disdvi.exe
+ bin/win32/dvi2tty.exe
+binfiles arch=i386-darwin size=52056
+ bin/i386-darwin/disdvi
+ bin/i386-darwin/dvi2tty
+binfiles arch=powerpc-linux size=32824
+ bin/powerpc-linux/disdvi
+ bin/powerpc-linux/dvi2tty
+binfiles arch=powerpc-aix size=30502
+ bin/powerpc-aix/disdvi
+ bin/powerpc-aix/dvi2tty
+binfiles arch=powerpc-darwin size=44948
+ bin/powerpc-darwin/disdvi
+ bin/powerpc-darwin/dvi2tty
+binfiles arch=x86_64-linux size=37928
+ bin/x86_64-linux/disdvi
+ bin/x86_64-linux/dvi2tty
+
+name bin-dvicopy
+category TLCore
+revision 5403
+docfiles size=650
+ texmf/doc/man/man1/dvicopy.1
+binfiles arch=i386-openbsd size=97060
+ bin/i386-openbsd/dvicopy
+binfiles arch=i386-solaris size=111540
+ bin/i386-solaris/dvicopy
+binfiles arch=i386-linux size=88272
+ bin/i386-linux/dvicopy
+binfiles arch=hppa-hpux size=139749
+ bin/hppa-hpux/dvicopy
+binfiles arch=mips-irix size=193668
+ bin/mips-irix/dvicopy
+binfiles arch=alpha-linux size=155712
+ bin/alpha-linux/dvicopy
+binfiles arch=sparc-linux size=106392
+ bin/sparc-linux/dvicopy
+binfiles arch=sparc-solaris size=208836
+ bin/sparc-solaris/dvicopy
+binfiles arch=i386-freebsd size=106336
+ bin/i386-freebsd/dvicopy
+binfiles arch=win32 size=40960
+ bin/win32/dvicopy.exe
+binfiles arch=i386-darwin size=121852
+ bin/i386-darwin/dvicopy
+binfiles arch=powerpc-linux size=110432
+ bin/powerpc-linux/dvicopy
+binfiles arch=powerpc-aix size=128494
+ bin/powerpc-aix/dvicopy
+binfiles arch=powerpc-darwin size=118440
+ bin/powerpc-darwin/dvicopy
+binfiles arch=x86_64-linux size=109520
+ bin/x86_64-linux/dvicopy
+
+name bin-dvidvi
+category TLCore
+revision 5403
+runfiles size=4880
+ texmf/doc/man/man1/dvidvi.1
+binfiles arch=i386-openbsd size=16388
+ bin/i386-openbsd/dvidvi
+binfiles arch=i386-solaris size=18308
+ bin/i386-solaris/dvidvi
+binfiles arch=i386-linux size=14816
+ bin/i386-linux/dvidvi
+binfiles arch=hppa-hpux size=32898
+ bin/hppa-hpux/dvidvi
+binfiles arch=mips-irix size=40768
+ bin/mips-irix/dvidvi
+binfiles arch=alpha-linux size=29936
+ bin/alpha-linux/dvidvi
+binfiles arch=sparc-linux size=19200
+ bin/sparc-linux/dvidvi
+binfiles arch=sparc-solaris size=23152
+ bin/sparc-solaris/dvidvi
+binfiles arch=i386-freebsd size=18740
+ bin/i386-freebsd/dvidvi
+binfiles arch=win32 size=15680
+ bin/win32/a5bookle.bat
+ bin/win32/doubside.bat
+ bin/win32/dvidvi.exe
+binfiles arch=i386-darwin size=26044
+ bin/i386-darwin/dvidvi
+binfiles arch=powerpc-linux size=18912
+ bin/powerpc-linux/dvidvi
+binfiles arch=powerpc-aix size=17215
+ bin/powerpc-aix/dvidvi
+binfiles arch=powerpc-darwin size=26504
+ bin/powerpc-darwin/dvidvi
+binfiles arch=x86_64-linux size=21304
+ bin/x86_64-linux/dvidvi
+
+name bin-dviljk
+category TLCore
+revision 5403
+docfiles size=10633
+ texmf/doc/man/man1/dvihp.1
+ texmf/doc/man/man1/dvilj.1
+ texmf/doc/man/man1/dvilj2p.1
+ texmf/doc/man/man1/dvilj4.1
+ texmf/doc/man/man1/dvilj4l.1
+ texmf/doc/man/man1/dvilj6.1
+binfiles arch=i386-openbsd size=368229
+ bin/i386-openbsd/dvihp
+ bin/i386-openbsd/dvilj
+ bin/i386-openbsd/dvilj2p
+ bin/i386-openbsd/dvilj4
+ bin/i386-openbsd/dvilj4l
+ bin/i386-openbsd/dvilj6
+binfiles arch=i386-solaris size=390829
+ bin/i386-solaris/dvihp
+ bin/i386-solaris/dvilj
+ bin/i386-solaris/dvilj2p
+ bin/i386-solaris/dvilj4
+ bin/i386-solaris/dvilj4l
+ bin/i386-solaris/dvilj6
+binfiles arch=i386-linux size=355589
+ bin/i386-linux/dvihp
+ bin/i386-linux/dvilj
+ bin/i386-linux/dvilj2p
+ bin/i386-linux/dvilj4
+ bin/i386-linux/dvilj4l
+ bin/i386-linux/dvilj6
+binfiles arch=hppa-hpux size=489461
+ bin/hppa-hpux/dvihp
+ bin/hppa-hpux/dvilj
+ bin/hppa-hpux/dvilj2p
+ bin/hppa-hpux/dvilj4
+ bin/hppa-hpux/dvilj4l
+ bin/hppa-hpux/dvilj6
+binfiles arch=mips-irix size=670109
+ bin/mips-irix/dvihp
+ bin/mips-irix/dvilj
+ bin/mips-irix/dvilj2p
+ bin/mips-irix/dvilj4
+ bin/mips-irix/dvilj4l
+ bin/mips-irix/dvilj6
+binfiles arch=alpha-linux size=576141
+ bin/alpha-linux/dvihp
+ bin/alpha-linux/dvilj
+ bin/alpha-linux/dvilj2p
+ bin/alpha-linux/dvilj4
+ bin/alpha-linux/dvilj4l
+ bin/alpha-linux/dvilj6
+binfiles arch=sparc-linux size=407453
+ bin/sparc-linux/dvihp
+ bin/sparc-linux/dvilj
+ bin/sparc-linux/dvilj2p
+ bin/sparc-linux/dvilj4
+ bin/sparc-linux/dvilj4l
+ bin/sparc-linux/dvilj6
+binfiles arch=sparc-solaris size=707453
+ bin/sparc-solaris/dvihp
+ bin/sparc-solaris/dvilj
+ bin/sparc-solaris/dvilj2p
+ bin/sparc-solaris/dvilj4
+ bin/sparc-solaris/dvilj4l
+ bin/sparc-solaris/dvilj6
+binfiles arch=i386-freebsd size=361669
+ bin/i386-freebsd/dvihp
+ bin/i386-freebsd/dvilj
+ bin/i386-freebsd/dvilj2p
+ bin/i386-freebsd/dvilj4
+ bin/i386-freebsd/dvilj4l
+ bin/i386-freebsd/dvilj6
+binfiles arch=win32 size=190976
+ bin/win32/dvihp.exe
+ bin/win32/dvilj.exe
+ bin/win32/dvilj2p.exe
+ bin/win32/dvilj4.exe
+ bin/win32/dvilj4l.exe
+ bin/win32/dvilj6.exe
+binfiles arch=i386-darwin size=458253
+ bin/i386-darwin/dvihp
+ bin/i386-darwin/dvilj
+ bin/i386-darwin/dvilj2p
+ bin/i386-darwin/dvilj4
+ bin/i386-darwin/dvilj4l
+ bin/i386-darwin/dvilj6
+binfiles arch=powerpc-linux size=423477
+ bin/powerpc-linux/dvihp
+ bin/powerpc-linux/dvilj
+ bin/powerpc-linux/dvilj2p
+ bin/powerpc-linux/dvilj4
+ bin/powerpc-linux/dvilj4l
+ bin/powerpc-linux/dvilj6
+binfiles arch=powerpc-aix size=440805
+ bin/powerpc-aix/dvihp
+ bin/powerpc-aix/dvilj
+ bin/powerpc-aix/dvilj2p
+ bin/powerpc-aix/dvilj4
+ bin/powerpc-aix/dvilj4l
+ bin/powerpc-aix/dvilj6
+binfiles arch=powerpc-darwin size=436525
+ bin/powerpc-darwin/dvihp
+ bin/powerpc-darwin/dvilj
+ bin/powerpc-darwin/dvilj2p
+ bin/powerpc-darwin/dvilj4
+ bin/powerpc-darwin/dvilj4l
+ bin/powerpc-darwin/dvilj6
+binfiles arch=x86_64-linux size=434421
+ bin/x86_64-linux/dvihp
+ bin/x86_64-linux/dvilj
+ bin/x86_64-linux/dvilj2p
+ bin/x86_64-linux/dvilj4
+ bin/x86_64-linux/dvilj4l
+ bin/x86_64-linux/dvilj6
+
+name bin-dvipdfm
+category TLCore
+revision 5510
+docfiles size=255013
+ texmf/doc/dvipdfm/Makefile
+ texmf/doc/dvipdfm/dvipdfm.pdf
+ texmf/doc/dvipdfm/dvipdfm.tex
+ texmf/doc/dvipdfm/mwicks.bb
+ texmf/doc/dvipdfm/mwicks.jpeg
+ texmf/doc/dvipdfm/sample.tex
+ texmf/doc/dvipdfm/something.bb
+ texmf/doc/dvipdfm/something.eps
+ texmf/doc/dvipdfm/something.fig
+ texmf/doc/dvipdfm/something.pdf
+ texmf/doc/dvipdfm/transistor.bb
+ texmf/doc/dvipdfm/transistor.eps
+ texmf/doc/dvipdfm/transistor.fig
+ texmf/doc/dvipdfm/transistor.pdf
+ texmf/doc/man/man1/dvipdfm.1
+ texmf/doc/man/man1/dvipdft.1
+ texmf/doc/man/man1/ebb.1
+runfiles size=569849
+ texmf/dvipdfm/config/config
+ texmf/dvipdfm/config/config-win32
+ texmf/fonts/map/dvipdfm/updmap/dvipdfm.map
+ texmf/fonts/map/dvipdfm/updmap/dvipdfm_dl14.map
+ texmf/fonts/map/dvipdfm/updmap/dvipdfm_ndl14.map
+ texmf/tex/latex/dvipdfm/dvipdfm.def
+binfiles arch=i386-openbsd size=547073
+ bin/i386-openbsd/dvipdfm
+ bin/i386-openbsd/dvipdft
+ bin/i386-openbsd/ebb
+binfiles arch=i386-solaris size=589481
+ bin/i386-solaris/dvipdfm
+ bin/i386-solaris/dvipdft
+ bin/i386-solaris/ebb
+binfiles arch=i386-linux size=545973
+ bin/i386-linux/dvipdfm
+ bin/i386-linux/dvipdft
+ bin/i386-linux/ebb
+binfiles arch=hppa-hpux size=731339
+ bin/hppa-hpux/dvipdfm
+ bin/hppa-hpux/dvipdft
+ bin/hppa-hpux/ebb
+binfiles arch=mips-irix size=1020709
+ bin/mips-irix/dvipdfm
+ bin/mips-irix/dvipdft
+ bin/mips-irix/ebb
+binfiles arch=alpha-linux size=923705
+ bin/alpha-linux/dvipdfm
+ bin/alpha-linux/dvipdft
+ bin/alpha-linux/ebb
+binfiles arch=sparc-linux size=609385
+ bin/sparc-linux/dvipdfm
+ bin/sparc-linux/dvipdft
+ bin/sparc-linux/ebb
+binfiles arch=sparc-solaris size=945769
+ bin/sparc-solaris/dvipdfm
+ bin/sparc-solaris/dvipdft
+ bin/sparc-solaris/ebb
+binfiles arch=i386-freebsd size=538085
+ bin/i386-freebsd/dvipdfm
+ bin/i386-freebsd/dvipdft
+ bin/i386-freebsd/ebb
+binfiles arch=win32 size=474112
+ bin/win32/dvipdfm.exe
+ bin/win32/ebb.exe
+binfiles arch=i386-darwin size=554633
+ bin/i386-darwin/dvipdfm
+ bin/i386-darwin/dvipdft
+ bin/i386-darwin/ebb
+binfiles arch=powerpc-linux size=623229
+ bin/powerpc-linux/dvipdfm
+ bin/powerpc-linux/dvipdft
+ bin/powerpc-linux/ebb
+binfiles arch=powerpc-aix size=757855
+ bin/powerpc-aix/dvipdfm
+ bin/powerpc-aix/dvipdft
+ bin/powerpc-aix/ebb
+binfiles arch=powerpc-darwin size=523437
+ bin/powerpc-darwin/dvipdfm
+ bin/powerpc-darwin/dvipdft
+ bin/powerpc-darwin/ebb
+binfiles arch=x86_64-linux size=690449
+ bin/x86_64-linux/dvipdfm
+ bin/x86_64-linux/dvipdft
+ bin/x86_64-linux/ebb
+
+name bin-dvipdfmx
+category TLCore
+revision 5403
+depend glyphlist
+runfiles size=120136
+ texmf/dvipdfm/EUC-UCS2
+ texmf/dvipdfm/README
+ texmf/dvipdfm/UniKSCms-UCS2-H
+ texmf/dvipdfm/UniKSCms-UCS2-V
+ texmf/dvipdfm/dvipdfmx.cfg
+ texmf/fonts/map/dvipdfm/dvipdfmx/cid-x.map
+ texmf/tex/latex/dvipdfmx/dvipdfmx.def
+binfiles arch=i386-openbsd size=673956
+ bin/i386-openbsd/dvipdfmx
+binfiles arch=i386-solaris size=700932
+ bin/i386-solaris/dvipdfmx
+binfiles arch=i386-linux size=662056
+ bin/i386-linux/dvipdfmx
+binfiles arch=hppa-hpux size=839217
+ bin/hppa-hpux/dvipdfmx
+binfiles arch=mips-irix size=1194468
+ bin/mips-irix/dvipdfmx
+binfiles arch=alpha-linux size=1083592
+ bin/alpha-linux/dvipdfmx
+binfiles arch=sparc-linux size=708204
+ bin/sparc-linux/dvipdfmx
+binfiles arch=sparc-solaris size=1086060
+ bin/sparc-solaris/dvipdfmx
+binfiles arch=i386-freebsd size=652280
+ bin/i386-freebsd/dvipdfmx
+binfiles arch=win32 size=731648
+ bin/win32/dvipdfmx.exe
+binfiles arch=i386-darwin size=708092
+ bin/i386-darwin/dvipdfmx
+binfiles arch=powerpc-linux size=736988
+ bin/powerpc-linux/dvipdfmx
+binfiles arch=powerpc-aix size=940630
+ bin/powerpc-aix/dvipdfmx
+binfiles arch=powerpc-darwin size=676288
+ bin/powerpc-darwin/dvipdfmx
+binfiles arch=x86_64-linux size=809728
+ bin/x86_64-linux/dvipdfmx
+
+name bin-dvipng
+category TLCore
+revision 5403
+docfiles size=135561
+ texmf/doc/dvipng/dvipng.html
+ texmf/doc/info/dvipng.info
+ texmf/doc/man/man1/dvipng.1
+binfiles arch=i386-openbsd size=481244
+ bin/i386-openbsd/dvipng
+binfiles arch=i386-solaris size=837080
+ bin/i386-solaris/dvipng
+binfiles arch=i386-linux size=787020
+ bin/i386-linux/dvipng
+binfiles arch=hppa-hpux size=1036571
+ bin/hppa-hpux/dvipng
+binfiles arch=mips-irix size=1364548
+ bin/mips-irix/dvipng
+binfiles arch=alpha-linux size=1216136
+ bin/alpha-linux/dvipng
+binfiles arch=sparc-linux size=867008
+ bin/sparc-linux/dvipng
+binfiles arch=sparc-solaris size=1230516
+ bin/sparc-solaris/dvipng
+binfiles arch=i386-freebsd size=784152
+ bin/i386-freebsd/dvipng
+binfiles arch=win32 size=698368
+ bin/win32/dvipng.exe
+binfiles arch=i386-darwin size=853444
+ bin/i386-darwin/dvipng
+binfiles arch=powerpc-linux size=916980
+ bin/powerpc-linux/dvipng
+binfiles arch=powerpc-aix size=1056559
+ bin/powerpc-aix/dvipng
+binfiles arch=powerpc-darwin size=833900
+ bin/powerpc-darwin/dvipng
+binfiles arch=x86_64-linux size=963872
+ bin/x86_64-linux/dvipng
+
+name bin-dvipos
+category TLCore
+revision 5403
+docfiles size=3678
+ texmf/doc/man/man1/dvipos.1
+binfiles arch=i386-openbsd size=84580
+ bin/i386-openbsd/dvipos
+binfiles arch=i386-solaris size=90056
+ bin/i386-solaris/dvipos
+binfiles arch=i386-linux size=79204
+ bin/i386-linux/dvipos
+binfiles arch=hppa-hpux size=131654
+ bin/hppa-hpux/dvipos
+binfiles arch=mips-irix size=161404
+ bin/mips-irix/dvipos
+binfiles arch=alpha-linux size=132232
+ bin/alpha-linux/dvipos
+binfiles arch=sparc-linux size=89852
+ bin/sparc-linux/dvipos
+binfiles arch=sparc-solaris size=170480
+ bin/sparc-solaris/dvipos
+binfiles arch=i386-freebsd size=85788
+ bin/i386-freebsd/dvipos
+binfiles arch=win32 size=29696
+ bin/win32/dvipos.exe
+binfiles arch=i386-darwin size=105128
+ bin/i386-darwin/dvipos
+binfiles arch=powerpc-linux size=93900
+ bin/powerpc-linux/dvipos
+binfiles arch=powerpc-aix size=106106
+ bin/powerpc-aix/dvipos
+binfiles arch=powerpc-darwin size=101712
+ bin/powerpc-darwin/dvipos
+binfiles arch=x86_64-linux size=104968
+ bin/x86_64-linux/dvipos
+
+name bin-dvipsk
+category TLCore
+revision 5403
+docfiles size=959434
+ texmf/doc/dvips/dvips.html
+ texmf/doc/dvips/dvips.pdf
+ texmf/doc/info/dvips.info
+ texmf/doc/man/man1/afm2tfm.1
+ texmf/doc/man/man1/dvips.1
+ texmf/doc/pkfix/README
+runfiles size=1918642
+ texmf/dvips/base/color.pro
+ texmf/dvips/base/crop.pro
+ texmf/dvips/base/finclude.pro
+ texmf/dvips/base/hps.pro
+ texmf/dvips/base/special.pro
+ texmf/dvips/base/tex.pro
+ texmf/dvips/base/texc.pro
+ texmf/dvips/base/texps.pro
+ texmf/dvips/config/alt-rule.pro
+ texmf/dvips/config/canonex.cfg
+ texmf/dvips/config/config.bakoma
+ texmf/dvips/config/config.canonex
+ texmf/dvips/config/config.cms
+ texmf/dvips/config/config.cx
+ texmf/dvips/config/config.deskjet
+ texmf/dvips/config/config.dvired
+ texmf/dvips/config/config.epson
+ texmf/dvips/config/config.ibmvga
+ texmf/dvips/config/config.ljfour
+ texmf/dvips/config/config.luc
+ texmf/dvips/config/config.mbn
+ texmf/dvips/config/config.mga
+ texmf/dvips/config/config.mirrorprint
+ texmf/dvips/config/config.ot2
+ texmf/dvips/config/config.ps
+ texmf/dvips/config/config.qms
+ texmf/dvips/config/config.toshiba
+ texmf/dvips/config/config.unms
+ texmf/dvips/config/config.xyp
+ texmf/dvips/config/cx.cfg
+ texmf/dvips/config/deskjet.cfg
+ texmf/dvips/config/dfaxhigh.cfg
+ texmf/dvips/config/dvired.cfg
+ texmf/dvips/config/epson.cfg
+ texmf/dvips/config/ibmvga.cfg
+ texmf/dvips/config/ljfour.cfg
+ texmf/dvips/config/qms.cfg
+ texmf/dvips/config/toshiba.cfg
+ texmf/fonts/map/dvips/updmap/builtin35.map
+ texmf/fonts/map/dvips/updmap/download35.map
+ texmf/fonts/map/dvips/updmap/ps2pk.map
+ texmf/fonts/map/dvips/updmap/psfonts.map
+ texmf/fonts/map/dvips/updmap/psfonts_pk.map
+ texmf/fonts/map/dvips/updmap/psfonts_t1.map
+ texmf/scripts/pkfix/pkfix.pl
+binfiles arch=i386-openbsd size=306440
+ bin/i386-openbsd/afm2tfm
+ bin/i386-openbsd/dvips
+ bin/i386-openbsd/pkfix
+binfiles arch=i386-solaris size=329700
+ bin/i386-solaris/afm2tfm
+ bin/i386-solaris/dvips
+ bin/i386-solaris/pkfix
+binfiles arch=i386-linux size=723616
+ bin/i386-linux/afm2tfm
+ bin/i386-linux/dvips
+ bin/i386-linux/pkfix
+binfiles arch=hppa-hpux size=422603
+ bin/hppa-hpux/afm2tfm
+ bin/hppa-hpux/dvips
+ bin/hppa-hpux/pkfix
+binfiles arch=mips-irix size=546272
+ bin/mips-irix/afm2tfm
+ bin/mips-irix/dvips
+ bin/mips-irix/pkfix
+binfiles arch=alpha-linux size=470288
+ bin/alpha-linux/afm2tfm
+ bin/alpha-linux/dvips
+ bin/alpha-linux/pkfix
+binfiles arch=sparc-linux size=349972
+ bin/sparc-linux/afm2tfm
+ bin/sparc-linux/dvips
+ bin/sparc-linux/pkfix
+binfiles arch=sparc-solaris size=554680
+ bin/sparc-solaris/afm2tfm
+ bin/sparc-solaris/dvips
+ bin/sparc-solaris/pkfix
+binfiles arch=i386-freebsd size=309160
+ bin/i386-freebsd/afm2tfm
+ bin/i386-freebsd/dvips
+ bin/i386-freebsd/pkfix
+binfiles arch=win32 size=161280
+ bin/win32/afm2tfm.exe
+ bin/win32/dvips.exe
+ bin/win32/pkfix.exe
+binfiles arch=i386-darwin size=358096
+ bin/i386-darwin/afm2tfm
+ bin/i386-darwin/dvips
+ bin/i386-darwin/pkfix
+binfiles arch=powerpc-linux size=357860
+ bin/powerpc-linux/afm2tfm
+ bin/powerpc-linux/dvips
+ bin/powerpc-linux/pkfix
+binfiles arch=powerpc-aix size=387808
+ bin/powerpc-aix/afm2tfm
+ bin/powerpc-aix/dvips
+ bin/powerpc-aix/pkfix
+binfiles arch=powerpc-darwin size=355472
+ bin/powerpc-darwin/afm2tfm
+ bin/powerpc-darwin/dvips
+ bin/powerpc-darwin/pkfix
+binfiles arch=x86_64-linux size=356464
+ bin/x86_64-linux/afm2tfm
+ bin/x86_64-linux/dvips
+ bin/x86_64-linux/pkfix
+
+name bin-ebong
+category TLCore
+revision 3920
+binfiles arch=i386-openbsd size=8859
+ bin/i386-openbsd/ebong
+binfiles arch=i386-solaris size=8859
+ bin/i386-solaris/ebong
+binfiles arch=i386-linux size=8859
+ bin/i386-linux/ebong
+binfiles arch=hppa-hpux size=8859
+ bin/hppa-hpux/ebong
+binfiles arch=mips-irix size=8859
+ bin/mips-irix/ebong
+binfiles arch=alpha-linux size=8859
+ bin/alpha-linux/ebong
+binfiles arch=sparc-linux size=8859
+ bin/sparc-linux/ebong
+binfiles arch=sparc-solaris size=8859
+ bin/sparc-solaris/ebong
+binfiles arch=i386-freebsd size=8859
+ bin/i386-freebsd/ebong
+binfiles arch=i386-darwin size=8859
+ bin/i386-darwin/ebong
+binfiles arch=powerpc-linux size=8859
+ bin/powerpc-linux/ebong
+binfiles arch=powerpc-aix size=8859
+ bin/powerpc-aix/ebong
+binfiles arch=powerpc-darwin size=8859
+ bin/powerpc-darwin/ebong
+binfiles arch=x86_64-linux size=8859
+ bin/x86_64-linux/ebong
+
+name bin-eplain
+category TLCore
+revision 5403
+depend bin-etex
+execute BuildFormat eplain
+docfiles size=376986
+ texmf/doc/info/eplain.info
+ texmf/doc/man/man1/eplain.1
+runfiles size=179
+ texmf/fmtutil/format.eplain.cnf
+binfiles arch=i386-openbsd size=6
+ bin/i386-openbsd/eplain
+binfiles arch=i386-solaris size=6
+ bin/i386-solaris/eplain
+binfiles arch=i386-linux size=6
+ bin/i386-linux/eplain
+binfiles arch=hppa-hpux size=6
+ bin/hppa-hpux/eplain
+binfiles arch=mips-irix size=6
+ bin/mips-irix/eplain
+binfiles arch=alpha-linux size=6
+ bin/alpha-linux/eplain
+binfiles arch=sparc-linux size=6
+ bin/sparc-linux/eplain
+binfiles arch=sparc-solaris size=6
+ bin/sparc-solaris/eplain
+binfiles arch=i386-freebsd size=6
+ bin/i386-freebsd/eplain
+binfiles arch=win32 size=2560
+ bin/win32/eplain.exe
+binfiles arch=i386-darwin size=6
+ bin/i386-darwin/eplain
+binfiles arch=powerpc-linux size=6
+ bin/powerpc-linux/eplain
+binfiles arch=powerpc-aix size=6
+ bin/powerpc-aix/eplain
+binfiles arch=powerpc-darwin size=6
+ bin/powerpc-darwin/eplain
+binfiles arch=x86_64-linux size=6
+ bin/x86_64-linux/eplain
+
+name bin-etex
+category TLCore
+revision 5403
+depend bin-kpathsea
+execute BuildFormat etex
+docfiles size=10761
+ texmf/doc/man/man1/etex.1
+runfiles size=83
+ texmf/fmtutil/format.etex.cnf
+binfiles arch=i386-openbsd size=6
+ bin/i386-openbsd/etex
+binfiles arch=i386-solaris size=6
+ bin/i386-solaris/etex
+binfiles arch=i386-linux size=6
+ bin/i386-linux/etex
+binfiles arch=hppa-hpux size=6
+ bin/hppa-hpux/etex
+binfiles arch=mips-irix size=6
+ bin/mips-irix/etex
+binfiles arch=alpha-linux size=6
+ bin/alpha-linux/etex
+binfiles arch=sparc-linux size=6
+ bin/sparc-linux/etex
+binfiles arch=sparc-solaris size=6
+ bin/sparc-solaris/etex
+binfiles arch=i386-freebsd size=6
+ bin/i386-freebsd/etex
+binfiles arch=win32 size=2560
+ bin/win32/etex.exe
+binfiles arch=i386-darwin size=6
+ bin/i386-darwin/etex
+binfiles arch=powerpc-linux size=6
+ bin/powerpc-linux/etex
+binfiles arch=powerpc-aix size=6
+ bin/powerpc-aix/etex
+binfiles arch=powerpc-darwin size=6
+ bin/powerpc-darwin/etex
+binfiles arch=x86_64-linux size=6
+ bin/x86_64-linux/etex
+
+name bin-fontware
+category TLCore
+revision 5403
+docfiles size=10917
+ texmf/doc/man/man1/pltotf.1
+ texmf/doc/man/man1/tftopl.1
+ texmf/doc/man/man1/vftovp.1
+ texmf/doc/man/man1/vptovf.1
+binfiles arch=i386-openbsd size=297424
+ bin/i386-openbsd/pltotf
+ bin/i386-openbsd/tftopl
+ bin/i386-openbsd/vftovp
+ bin/i386-openbsd/vptovf
+binfiles arch=i386-solaris size=318108
+ bin/i386-solaris/pltotf
+ bin/i386-solaris/tftopl
+ bin/i386-solaris/vftovp
+ bin/i386-solaris/vptovf
+binfiles arch=i386-linux size=263104
+ bin/i386-linux/pltotf
+ bin/i386-linux/tftopl
+ bin/i386-linux/vftovp
+ bin/i386-linux/vptovf
+binfiles arch=hppa-hpux size=410803
+ bin/hppa-hpux/pltotf
+ bin/hppa-hpux/tftopl
+ bin/hppa-hpux/vftovp
+ bin/hppa-hpux/vptovf
+binfiles arch=mips-irix size=550772
+ bin/mips-irix/pltotf
+ bin/mips-irix/tftopl
+ bin/mips-irix/vftovp
+ bin/mips-irix/vptovf
+binfiles arch=alpha-linux size=474712
+ bin/alpha-linux/pltotf
+ bin/alpha-linux/tftopl
+ bin/alpha-linux/vftovp
+ bin/alpha-linux/vptovf
+binfiles arch=sparc-linux size=314044
+ bin/sparc-linux/pltotf
+ bin/sparc-linux/tftopl
+ bin/sparc-linux/vftovp
+ bin/sparc-linux/vptovf
+binfiles arch=sparc-solaris size=613704
+ bin/sparc-solaris/pltotf
+ bin/sparc-solaris/tftopl
+ bin/sparc-solaris/vftovp
+ bin/sparc-solaris/vptovf
+binfiles arch=i386-freebsd size=304652
+ bin/i386-freebsd/pltotf
+ bin/i386-freebsd/tftopl
+ bin/i386-freebsd/vftovp
+ bin/i386-freebsd/vptovf
+binfiles arch=win32 size=155648
+ bin/win32/pltotf.exe
+ bin/win32/tftopl.exe
+ bin/win32/vftovp.exe
+ bin/win32/vptovf.exe
+binfiles arch=i386-darwin size=374476
+ bin/i386-darwin/pltotf
+ bin/i386-darwin/tftopl
+ bin/i386-darwin/vftovp
+ bin/i386-darwin/vptovf
+binfiles arch=powerpc-linux size=315000
+ bin/powerpc-linux/pltotf
+ bin/powerpc-linux/tftopl
+ bin/powerpc-linux/vftovp
+ bin/powerpc-linux/vptovf
+binfiles arch=powerpc-aix size=355472
+ bin/powerpc-aix/pltotf
+ bin/powerpc-aix/tftopl
+ bin/powerpc-aix/vftovp
+ bin/powerpc-aix/vptovf
+binfiles arch=powerpc-darwin size=352364
+ bin/powerpc-darwin/pltotf
+ bin/powerpc-darwin/tftopl
+ bin/powerpc-darwin/vftovp
+ bin/powerpc-darwin/vptovf
+binfiles arch=x86_64-linux size=316288
+ bin/x86_64-linux/pltotf
+ bin/x86_64-linux/tftopl
+ bin/x86_64-linux/vftovp
+ bin/x86_64-linux/vptovf
+
+name bin-getafm
+category TLCore
+revision 3920
+runfiles size=7140
+ texmf/doc/man/man1/getafm.1
+ texmf/dvips/getafm/getafm.ps
+binfiles arch=i386-openbsd size=8691
+ bin/i386-openbsd/getafm
+ bin/i386-openbsd/showchar
+binfiles arch=i386-solaris size=8691
+ bin/i386-solaris/getafm
+ bin/i386-solaris/showchar
+binfiles arch=i386-linux size=8691
+ bin/i386-linux/getafm
+ bin/i386-linux/showchar
+binfiles arch=hppa-hpux size=8691
+ bin/hppa-hpux/getafm
+ bin/hppa-hpux/showchar
+binfiles arch=mips-irix size=8691
+ bin/mips-irix/getafm
+ bin/mips-irix/showchar
+binfiles arch=alpha-linux size=8691
+ bin/alpha-linux/getafm
+ bin/alpha-linux/showchar
+binfiles arch=sparc-linux size=8691
+ bin/sparc-linux/getafm
+ bin/sparc-linux/showchar
+binfiles arch=sparc-solaris size=8691
+ bin/sparc-solaris/getafm
+ bin/sparc-solaris/showchar
+binfiles arch=i386-freebsd size=8691
+ bin/i386-freebsd/getafm
+ bin/i386-freebsd/showchar
+binfiles arch=i386-darwin size=8691
+ bin/i386-darwin/getafm
+ bin/i386-darwin/showchar
+binfiles arch=powerpc-linux size=8691
+ bin/powerpc-linux/getafm
+ bin/powerpc-linux/showchar
+binfiles arch=powerpc-aix size=8691
+ bin/powerpc-aix/getafm
+ bin/powerpc-aix/showchar
+binfiles arch=powerpc-darwin size=8691
+ bin/powerpc-darwin/getafm
+ bin/powerpc-darwin/showchar
+binfiles arch=x86_64-linux size=8691
+ bin/x86_64-linux/getafm
+ bin/x86_64-linux/showchar
+
+name bin-getnonfreefonts
+category TLCore
+revision 5402
+docfiles size=2845
+ texmf/doc/man/man1/getnonfreefonts-sys.1
+ texmf/doc/man/man1/getnonfreefonts.1
+binfiles arch=i386-openbsd size=6898
+ bin/i386-openbsd/getnonfreefonts
+ bin/i386-openbsd/getnonfreefonts-sys
+binfiles arch=i386-solaris size=6898
+ bin/i386-solaris/getnonfreefonts
+ bin/i386-solaris/getnonfreefonts-sys
+binfiles arch=i386-linux size=6898
+ bin/i386-linux/getnonfreefonts
+ bin/i386-linux/getnonfreefonts-sys
+binfiles arch=hppa-hpux size=6898
+ bin/hppa-hpux/getnonfreefonts
+ bin/hppa-hpux/getnonfreefonts-sys
+binfiles arch=mips-irix size=6898
+ bin/mips-irix/getnonfreefonts
+ bin/mips-irix/getnonfreefonts-sys
+binfiles arch=alpha-linux size=6898
+ bin/alpha-linux/getnonfreefonts
+ bin/alpha-linux/getnonfreefonts-sys
+binfiles arch=sparc-linux size=6898
+ bin/sparc-linux/getnonfreefonts
+ bin/sparc-linux/getnonfreefonts-sys
+binfiles arch=sparc-solaris size=6898
+ bin/sparc-solaris/getnonfreefonts
+ bin/sparc-solaris/getnonfreefonts-sys
+binfiles arch=i386-freebsd size=6898
+ bin/i386-freebsd/getnonfreefonts
+ bin/i386-freebsd/getnonfreefonts-sys
+binfiles arch=win32 size=7508
+ bin/win32/getnonfreefonts.bat
+binfiles arch=i386-darwin size=6898
+ bin/i386-darwin/getnonfreefonts
+ bin/i386-darwin/getnonfreefonts-sys
+binfiles arch=powerpc-linux size=6898
+ bin/powerpc-linux/getnonfreefonts
+ bin/powerpc-linux/getnonfreefonts-sys
+binfiles arch=powerpc-aix size=6898
+ bin/powerpc-aix/getnonfreefonts
+ bin/powerpc-aix/getnonfreefonts-sys
+binfiles arch=powerpc-darwin size=6898
+ bin/powerpc-darwin/getnonfreefonts
+ bin/powerpc-darwin/getnonfreefonts-sys
+binfiles arch=x86_64-linux size=6898
+ bin/x86_64-linux/getnonfreefonts
+ bin/x86_64-linux/getnonfreefonts-sys
+
+name bin-gsftopk
+category TLCore
+revision 5403
+docfiles size=8051
+ texmf/doc/man/man1/gsftopk.1
+runfiles size=7669
+ texmf/dvips/gsftopk/render.ps
+binfiles arch=i386-openbsd size=67460
+ bin/i386-openbsd/gsftopk
+binfiles arch=i386-solaris size=74084
+ bin/i386-solaris/gsftopk
+binfiles arch=i386-linux size=66044
+ bin/i386-linux/gsftopk
+binfiles arch=hppa-hpux size=98665
+ bin/hppa-hpux/gsftopk
+binfiles arch=mips-irix size=133312
+ bin/mips-irix/gsftopk
+binfiles arch=alpha-linux size=109968
+ bin/alpha-linux/gsftopk
+binfiles arch=sparc-linux size=79176
+ bin/sparc-linux/gsftopk
+binfiles arch=sparc-solaris size=146332
+ bin/sparc-solaris/gsftopk
+binfiles arch=i386-freebsd size=71016
+ bin/i386-freebsd/gsftopk
+binfiles arch=win32 size=18432
+ bin/win32/gsftopk.exe
+binfiles arch=i386-darwin size=84952
+ bin/i386-darwin/gsftopk
+binfiles arch=powerpc-linux size=78476
+ bin/powerpc-linux/gsftopk
+binfiles arch=powerpc-aix size=87548
+ bin/powerpc-aix/gsftopk
+binfiles arch=powerpc-darwin size=81572
+ bin/powerpc-darwin/gsftopk
+binfiles arch=x86_64-linux size=82304
+ bin/x86_64-linux/gsftopk
+
+name bin-gzip
+category TLCore
+revision 5403
+docfiles size=161047
+ texmf/doc/gzip/gzip.html
+ texmf/doc/gzip/gzip.pdf
+binfiles arch=win32 size=88064
+ bin/win32/gunzip.exe
+ bin/win32/gzip.exe
+
+name bin-jadetex
+category TLCore
+revision 5403
+depend bin-pdftex
+depend bin-tex
+execute BuildFormat jadetex
+runfiles size=122
+ texmf/fmtutil/format.jadetex.cnf
+binfiles arch=i386-openbsd size=12
+ bin/i386-openbsd/jadetex
+ bin/i386-openbsd/pdfjadetex
+binfiles arch=i386-solaris size=12
+ bin/i386-solaris/jadetex
+ bin/i386-solaris/pdfjadetex
+binfiles arch=i386-linux size=12
+ bin/i386-linux/jadetex
+ bin/i386-linux/pdfjadetex
+binfiles arch=hppa-hpux size=12
+ bin/hppa-hpux/jadetex
+ bin/hppa-hpux/pdfjadetex
+binfiles arch=mips-irix size=12
+ bin/mips-irix/jadetex
+ bin/mips-irix/pdfjadetex
+binfiles arch=alpha-linux size=12
+ bin/alpha-linux/jadetex
+ bin/alpha-linux/pdfjadetex
+binfiles arch=sparc-linux size=12
+ bin/sparc-linux/jadetex
+ bin/sparc-linux/pdfjadetex
+binfiles arch=sparc-solaris size=12
+ bin/sparc-solaris/jadetex
+ bin/sparc-solaris/pdfjadetex
+binfiles arch=i386-freebsd size=12
+ bin/i386-freebsd/jadetex
+ bin/i386-freebsd/pdfjadetex
+binfiles arch=win32 size=5120
+ bin/win32/jadetex.exe
+ bin/win32/pdfjadetex.exe
+binfiles arch=i386-darwin size=12
+ bin/i386-darwin/jadetex
+ bin/i386-darwin/pdfjadetex
+binfiles arch=powerpc-linux size=12
+ bin/powerpc-linux/jadetex
+ bin/powerpc-linux/pdfjadetex
+binfiles arch=powerpc-aix size=12
+ bin/powerpc-aix/jadetex
+ bin/powerpc-aix/pdfjadetex
+binfiles arch=powerpc-darwin size=12
+ bin/powerpc-darwin/jadetex
+ bin/powerpc-darwin/pdfjadetex
+binfiles arch=x86_64-linux size=12
+ bin/x86_64-linux/jadetex
+ bin/x86_64-linux/pdfjadetex
+
+name bin-jpeg2ps
+category TLCore
+revision 5403
+binfiles arch=win32 size=12288
+ bin/win32/jpeg2ps.exe
+
+name bin-kpathsea
+category TLCore
+revision 5417
+docfiles size=2443398
+ texmf/doc/info/dir
+ texmf/doc/info/kpathsea.info
+ texmf/doc/info/tds.info
+ texmf/doc/info/web2c.info
+ texmf/doc/kpathsea/kpathsea.html
+ texmf/doc/kpathsea/kpathsea.pdf
+ texmf/doc/man/man1/kpseaccess.1
+ texmf/doc/man/man1/kpsepath.1
+ texmf/doc/man/man1/kpsereadlink.1
+ texmf/doc/man/man1/kpsestat.1
+ texmf/doc/man/man1/kpsetool.1
+ texmf/doc/man/man1/kpsewhere.1
+ texmf/doc/man/man1/kpsewhich.1
+ texmf/doc/man/man1/kpsexpand.1
+ texmf/doc/man/man1/mkocp.1
+ texmf/doc/man/man1/mkofm.1
+ texmf/doc/man/man1/mktexfmt.1
+ texmf/doc/man/man1/mktexlsr.1
+ texmf/doc/man/man1/mktexmf.1
+ texmf/doc/man/man1/mktexpk.1
+ texmf/doc/man/man1/mktextfm.1
+ texmf/doc/man/man1/texhash.1
+ texmf/doc/man/man5/fmtutil.cnf.5
+ texmf/doc/web2c/web2c.html
+ texmf/doc/web2c/web2c.pdf
+runfiles size=160902
+ texmf/web2c/amiga-pl.tcx
+ texmf/web2c/context.cnf
+ texmf/web2c/cp1250cs.tcx
+ texmf/web2c/cp1250pl.tcx
+ texmf/web2c/cp1250t1.tcx
+ texmf/web2c/cp227.tcx
+ texmf/web2c/cp852-cs.tcx
+ texmf/web2c/cp852-pl.tcx
+ texmf/web2c/cp8bit.tcx
+ texmf/web2c/empty.tcx
+ texmf/web2c/fmtutil.cnf
+ texmf/web2c/il1-t1.tcx
+ texmf/web2c/il2-cs.tcx
+ texmf/web2c/il2-pl.tcx
+ texmf/web2c/il2-t1.tcx
+ texmf/web2c/kam-cs.tcx
+ texmf/web2c/kam-t1.tcx
+ texmf/web2c/macce-pl.tcx
+ texmf/web2c/macce-t1.tcx
+ texmf/web2c/maz-pl.tcx
+ texmf/web2c/mktex.cnf
+ texmf/web2c/mktex.opt
+ texmf/web2c/mktexdir
+ texmf/web2c/mktexdir.opt
+ texmf/web2c/mktexnam
+ texmf/web2c/mktexnam.opt
+ texmf/web2c/mktexupd
+ texmf/web2c/natural.tcx
+ texmf/web2c/tcvn-t5.tcx
+ texmf/web2c/texmf.cnf
+ texmf/web2c/texmf.cnf-4WIN
+ texmf/web2c/viscii-t5.tcx
+binfiles arch=i386-openbsd size=109371
+ bin/i386-openbsd/kpseaccess
+ bin/i386-openbsd/kpsepath
+ bin/i386-openbsd/kpsereadlink
+ bin/i386-openbsd/kpsestat
+ bin/i386-openbsd/kpsetool
+ bin/i386-openbsd/kpsewhich
+ bin/i386-openbsd/kpsexpand
+ bin/i386-openbsd/mkocp
+ bin/i386-openbsd/mkofm
+ bin/i386-openbsd/mktexfmt
+ bin/i386-openbsd/mktexlsr
+ bin/i386-openbsd/mktexmf
+ bin/i386-openbsd/mktexpk
+ bin/i386-openbsd/mktextfm
+ bin/i386-openbsd/texhash
+binfiles arch=i386-solaris size=109615
+ bin/i386-solaris/kpseaccess
+ bin/i386-solaris/kpsepath
+ bin/i386-solaris/kpsereadlink
+ bin/i386-solaris/kpsestat
+ bin/i386-solaris/kpsetool
+ bin/i386-solaris/kpsewhich
+ bin/i386-solaris/kpsexpand
+ bin/i386-solaris/mkocp
+ bin/i386-solaris/mkofm
+ bin/i386-solaris/mktexfmt
+ bin/i386-solaris/mktexlsr
+ bin/i386-solaris/mktexmf
+ bin/i386-solaris/mktexpk
+ bin/i386-solaris/mktextfm
+ bin/i386-solaris/texhash
+binfiles arch=i386-linux size=267837
+ bin/i386-linux/kpseaccess
+ bin/i386-linux/kpsepath
+ bin/i386-linux/kpsereadlink
+ bin/i386-linux/kpsestat
+ bin/i386-linux/kpsetool
+ bin/i386-linux/kpsewhich
+ bin/i386-linux/kpsexpand
+ bin/i386-linux/mkocp
+ bin/i386-linux/mkofm
+ bin/i386-linux/mktexfmt
+ bin/i386-linux/mktexlsr
+ bin/i386-linux/mktexmf
+ bin/i386-linux/mktexpk
+ bin/i386-linux/mktextfm
+ bin/i386-linux/texhash
+binfiles arch=hppa-hpux size=179315
+ bin/hppa-hpux/kpseaccess
+ bin/hppa-hpux/kpsepath
+ bin/hppa-hpux/kpsereadlink
+ bin/hppa-hpux/kpsestat
+ bin/hppa-hpux/kpsetool
+ bin/hppa-hpux/kpsewhich
+ bin/hppa-hpux/kpsexpand
+ bin/hppa-hpux/mkocp
+ bin/hppa-hpux/mkofm
+ bin/hppa-hpux/mktexfmt
+ bin/hppa-hpux/mktexlsr
+ bin/hppa-hpux/mktexmf
+ bin/hppa-hpux/mktexpk
+ bin/hppa-hpux/mktextfm
+ bin/hppa-hpux/texhash
+binfiles arch=mips-irix size=198795
+ bin/mips-irix/kpseaccess
+ bin/mips-irix/kpsepath
+ bin/mips-irix/kpsereadlink
+ bin/mips-irix/kpsestat
+ bin/mips-irix/kpsetool
+ bin/mips-irix/kpsewhich
+ bin/mips-irix/kpsexpand
+ bin/mips-irix/mkocp
+ bin/mips-irix/mkofm
+ bin/mips-irix/mktexfmt
+ bin/mips-irix/mktexlsr
+ bin/mips-irix/mktexmf
+ bin/mips-irix/mktexpk
+ bin/mips-irix/mktextfm
+ bin/mips-irix/texhash
+binfiles arch=alpha-linux size=145363
+ bin/alpha-linux/kpseaccess
+ bin/alpha-linux/kpsepath
+ bin/alpha-linux/kpsereadlink
+ bin/alpha-linux/kpsestat
+ bin/alpha-linux/kpsetool
+ bin/alpha-linux/kpsewhich
+ bin/alpha-linux/kpsexpand
+ bin/alpha-linux/mkocp
+ bin/alpha-linux/mkofm
+ bin/alpha-linux/mktexfmt
+ bin/alpha-linux/mktexlsr
+ bin/alpha-linux/mktexmf
+ bin/alpha-linux/mktexpk
+ bin/alpha-linux/mktextfm
+ bin/alpha-linux/texhash
+binfiles arch=sparc-linux size=109151
+ bin/sparc-linux/kpseaccess
+ bin/sparc-linux/kpsepath
+ bin/sparc-linux/kpsereadlink
+ bin/sparc-linux/kpsestat
+ bin/sparc-linux/kpsetool
+ bin/sparc-linux/kpsewhich
+ bin/sparc-linux/kpsexpand
+ bin/sparc-linux/mkocp
+ bin/sparc-linux/mkofm
+ bin/sparc-linux/mktexfmt
+ bin/sparc-linux/mktexlsr
+ bin/sparc-linux/mktexmf
+ bin/sparc-linux/mktexpk
+ bin/sparc-linux/mktextfm
+ bin/sparc-linux/texhash
+binfiles arch=sparc-solaris size=189667
+ bin/sparc-solaris/kpseaccess
+ bin/sparc-solaris/kpsepath
+ bin/sparc-solaris/kpsereadlink
+ bin/sparc-solaris/kpsestat
+ bin/sparc-solaris/kpsetool
+ bin/sparc-solaris/kpsewhich
+ bin/sparc-solaris/kpsexpand
+ bin/sparc-solaris/mkocp
+ bin/sparc-solaris/mkofm
+ bin/sparc-solaris/mktexfmt
+ bin/sparc-solaris/mktexlsr
+ bin/sparc-solaris/mktexmf
+ bin/sparc-solaris/mktexpk
+ bin/sparc-solaris/mktextfm
+ bin/sparc-solaris/texhash
+binfiles arch=i386-freebsd size=105775
+ bin/i386-freebsd/kpseaccess
+ bin/i386-freebsd/kpsepath
+ bin/i386-freebsd/kpsereadlink
+ bin/i386-freebsd/kpsestat
+ bin/i386-freebsd/kpsetool
+ bin/i386-freebsd/kpsewhich
+ bin/i386-freebsd/kpsexpand
+ bin/i386-freebsd/mkocp
+ bin/i386-freebsd/mkofm
+ bin/i386-freebsd/mktexfmt
+ bin/i386-freebsd/mktexlsr
+ bin/i386-freebsd/mktexmf
+ bin/i386-freebsd/mktexpk
+ bin/i386-freebsd/mktextfm
+ bin/i386-freebsd/texhash
+binfiles arch=win32 size=1534517
+ bin/win32/irun.exe
+ bin/win32/kpathsea356.dll
+ bin/win32/kpathsea35671.dll
+ bin/win32/kpseaccess.exe
+ bin/win32/kpsecheck.exe
+ bin/win32/kpsereadlink.exe
+ bin/win32/kpsestat.exe
+ bin/win32/kpsewhich.exe
+ bin/win32/mkocp.exe
+ bin/win32/mkofm.exe
+ bin/win32/mktex.exe
+ bin/win32/mktexdir.exe
+ bin/win32/mktexfmt.exe
+ bin/win32/mktexlsr.exe
+ bin/win32/mktexmf.exe
+ bin/win32/mktexnam.exe
+ bin/win32/mktexpk.exe
+ bin/win32/mktextfm.exe
+ bin/win32/mktexupd.exe
+ bin/win32/msvcp71.dll
+ bin/win32/msvcr71.dll
+ bin/win32/msvcrt.dll
+ bin/win32/texhash.exe
+ bin/win32/tl90kpse.dll
+ bin/win32/tl90mktex.dll
+binfiles arch=i386-darwin size=147431
+ bin/i386-darwin/kpseaccess
+ bin/i386-darwin/kpsepath
+ bin/i386-darwin/kpsereadlink
+ bin/i386-darwin/kpsestat
+ bin/i386-darwin/kpsetool
+ bin/i386-darwin/kpsewhich
+ bin/i386-darwin/kpsexpand
+ bin/i386-darwin/mkocp
+ bin/i386-darwin/mkofm
+ bin/i386-darwin/mktexfmt
+ bin/i386-darwin/mktexlsr
+ bin/i386-darwin/mktexmf
+ bin/i386-darwin/mktexpk
+ bin/i386-darwin/mktextfm
+ bin/i386-darwin/texhash
+binfiles arch=powerpc-linux size=112987
+ bin/powerpc-linux/kpseaccess
+ bin/powerpc-linux/kpsepath
+ bin/powerpc-linux/kpsereadlink
+ bin/powerpc-linux/kpsestat
+ bin/powerpc-linux/kpsetool
+ bin/powerpc-linux/kpsewhich
+ bin/powerpc-linux/kpsexpand
+ bin/powerpc-linux/mkocp
+ bin/powerpc-linux/mkofm
+ bin/powerpc-linux/mktexfmt
+ bin/powerpc-linux/mktexlsr
+ bin/powerpc-linux/mktexmf
+ bin/powerpc-linux/mktexpk
+ bin/powerpc-linux/mktextfm
+ bin/powerpc-linux/texhash
+binfiles arch=powerpc-aix size=115362
+ bin/powerpc-aix/kpseaccess
+ bin/powerpc-aix/kpsepath
+ bin/powerpc-aix/kpsereadlink
+ bin/powerpc-aix/kpsestat
+ bin/powerpc-aix/kpsetool
+ bin/powerpc-aix/kpsewhich
+ bin/powerpc-aix/kpsexpand
+ bin/powerpc-aix/mkocp
+ bin/powerpc-aix/mkofm
+ bin/powerpc-aix/mktexfmt
+ bin/powerpc-aix/mktexlsr
+ bin/powerpc-aix/mktexmf
+ bin/powerpc-aix/mktexpk
+ bin/powerpc-aix/mktextfm
+ bin/powerpc-aix/texhash
+binfiles arch=powerpc-darwin size=145443
+ bin/powerpc-darwin/kpseaccess
+ bin/powerpc-darwin/kpsepath
+ bin/powerpc-darwin/kpsereadlink
+ bin/powerpc-darwin/kpsestat
+ bin/powerpc-darwin/kpsetool
+ bin/powerpc-darwin/kpsewhich
+ bin/powerpc-darwin/kpsexpand
+ bin/powerpc-darwin/mkocp
+ bin/powerpc-darwin/mkofm
+ bin/powerpc-darwin/mktexfmt
+ bin/powerpc-darwin/mktexlsr
+ bin/powerpc-darwin/mktexmf
+ bin/powerpc-darwin/mktexpk
+ bin/powerpc-darwin/mktextfm
+ bin/powerpc-darwin/texhash
+binfiles arch=x86_64-linux size=119155
+ bin/x86_64-linux/kpseaccess
+ bin/x86_64-linux/kpsepath
+ bin/x86_64-linux/kpsereadlink
+ bin/x86_64-linux/kpsestat
+ bin/x86_64-linux/kpsetool
+ bin/x86_64-linux/kpsewhich
+ bin/x86_64-linux/kpsexpand
+ bin/x86_64-linux/mkocp
+ bin/x86_64-linux/mkofm
+ bin/x86_64-linux/mktexfmt
+ bin/x86_64-linux/mktexlsr
+ bin/x86_64-linux/mktexmf
+ bin/x86_64-linux/mktexpk
+ bin/x86_64-linux/mktextfm
+ bin/x86_64-linux/texhash
+
+name bin-lacheck
+category TLCore
+revision 5403
+runfiles size=4060
+ texmf/doc/man/man1/lacheck.1
+binfiles arch=i386-openbsd size=50916
+ bin/i386-openbsd/lacheck
+binfiles arch=i386-solaris size=52820
+ bin/i386-solaris/lacheck
+binfiles arch=i386-linux size=48128
+ bin/i386-linux/lacheck
+binfiles arch=hppa-hpux size=69752
+ bin/hppa-hpux/lacheck
+binfiles arch=mips-irix size=70720
+ bin/mips-irix/lacheck
+binfiles arch=alpha-linux size=70440
+ bin/alpha-linux/lacheck
+binfiles arch=sparc-linux size=56744
+ bin/sparc-linux/lacheck
+binfiles arch=sparc-solaris size=59028
+ bin/sparc-solaris/lacheck
+binfiles arch=i386-freebsd size=50996
+ bin/i386-freebsd/lacheck
+binfiles arch=win32 size=54272
+ bin/win32/lacheck.exe
+binfiles arch=i386-darwin size=62860
+ bin/i386-darwin/lacheck
+binfiles arch=powerpc-linux size=57876
+ bin/powerpc-linux/lacheck
+binfiles arch=powerpc-aix size=52391
+ bin/powerpc-aix/lacheck
+binfiles arch=powerpc-darwin size=63392
+ bin/powerpc-darwin/lacheck
+binfiles arch=x86_64-linux size=58648
+ bin/x86_64-linux/lacheck
+
+name bin-latex
+category TLCore
+revision 5403
+depend bin-etex
+execute BuildFormat latex
+docfiles size=1622606
+ texmf/doc/info/latex.info
+ texmf/doc/latex/base/latex.html
+ texmf/doc/latex/base/latex.pdf
+ texmf/doc/latex/base/latex2e.html
+ texmf/doc/latex/base/latex2e.pdf
+ texmf/doc/man/man1/latex.1
+runfiles size=5624
+ texmf/fmtutil/format.latex.cnf
+ texmf/tex/generic/config/preload.cfg
+ texmf/tex/latex/config/color.cfg
+ texmf/tex/latex/config/graphics.cfg
+ texmf/tex/latex/config/hyperref.cfg
+binfiles arch=i386-openbsd size=6
+ bin/i386-openbsd/latex
+binfiles arch=i386-solaris size=6
+ bin/i386-solaris/latex
+binfiles arch=i386-linux size=6
+ bin/i386-linux/latex
+binfiles arch=hppa-hpux size=6
+ bin/hppa-hpux/latex
+binfiles arch=mips-irix size=6
+ bin/mips-irix/latex
+binfiles arch=alpha-linux size=6
+ bin/alpha-linux/latex
+binfiles arch=sparc-linux size=6
+ bin/sparc-linux/latex
+binfiles arch=sparc-solaris size=6
+ bin/sparc-solaris/latex
+binfiles arch=i386-freebsd size=6
+ bin/i386-freebsd/latex
+binfiles arch=win32 size=2560
+ bin/win32/latex.exe
+binfiles arch=i386-darwin size=6
+ bin/i386-darwin/latex
+binfiles arch=powerpc-linux size=6
+ bin/powerpc-linux/latex
+binfiles arch=powerpc-aix size=6
+ bin/powerpc-aix/latex
+binfiles arch=powerpc-darwin size=6
+ bin/powerpc-darwin/latex
+binfiles arch=x86_64-linux size=6
+ bin/x86_64-linux/latex
+
+name bin-lcdftypetools
+category TLCore
+revision 5403
+depend glyphlist
+docfiles size=73262
+ texmf/doc/man/man1/cfftot1.1
+ texmf/doc/man/man1/mmafm.1
+ texmf/doc/man/man1/mmpfb.1
+ texmf/doc/man/man1/otfinfo.1
+ texmf/doc/man/man1/otftotfm.1
+ texmf/doc/man/man1/t1dotlessj.1
+ texmf/doc/man/man1/t1lint.1
+ texmf/doc/man/man1/t1reencode.1
+ texmf/doc/man/man1/t1testpage.1
+ texmf/doc/man/man1/ttftotype42.1
+binfiles arch=i386-openbsd size=3059656
+ bin/i386-openbsd/cfftot1
+ bin/i386-openbsd/mmafm
+ bin/i386-openbsd/mmpfb
+ bin/i386-openbsd/otfinfo
+ bin/i386-openbsd/otftotfm
+ bin/i386-openbsd/t1dotlessj
+ bin/i386-openbsd/t1lint
+ bin/i386-openbsd/t1reencode
+ bin/i386-openbsd/t1testpage
+ bin/i386-openbsd/ttftotype42
+binfiles arch=i386-solaris size=3778272
+ bin/i386-solaris/cfftot1
+ bin/i386-solaris/mmafm
+ bin/i386-solaris/mmpfb
+ bin/i386-solaris/otfinfo
+ bin/i386-solaris/otftotfm
+ bin/i386-solaris/t1dotlessj
+ bin/i386-solaris/t1lint
+ bin/i386-solaris/t1reencode
+ bin/i386-solaris/t1testpage
+ bin/i386-solaris/ttftotype42
+binfiles arch=i386-linux size=2843868
+ bin/i386-linux/cfftot1
+ bin/i386-linux/mmafm
+ bin/i386-linux/mmpfb
+ bin/i386-linux/otfinfo
+ bin/i386-linux/otftotfm
+ bin/i386-linux/t1dotlessj
+ bin/i386-linux/t1lint
+ bin/i386-linux/t1reencode
+ bin/i386-linux/t1testpage
+ bin/i386-linux/ttftotype42
+binfiles arch=hppa-hpux size=5090968
+ bin/hppa-hpux/cfftot1
+ bin/hppa-hpux/mmafm
+ bin/hppa-hpux/mmpfb
+ bin/hppa-hpux/otfinfo
+ bin/hppa-hpux/otftotfm
+ bin/hppa-hpux/t1dotlessj
+ bin/hppa-hpux/t1lint
+ bin/hppa-hpux/t1reencode
+ bin/hppa-hpux/t1testpage
+ bin/hppa-hpux/ttftotype42
+binfiles arch=mips-irix size=5871256
+ bin/mips-irix/cfftot1
+ bin/mips-irix/mmafm
+ bin/mips-irix/mmpfb
+ bin/mips-irix/otfinfo
+ bin/mips-irix/otftotfm
+ bin/mips-irix/t1dotlessj
+ bin/mips-irix/t1lint
+ bin/mips-irix/t1reencode
+ bin/mips-irix/t1testpage
+ bin/mips-irix/ttftotype42
+binfiles arch=alpha-linux size=4303496
+ bin/alpha-linux/cfftot1
+ bin/alpha-linux/mmafm
+ bin/alpha-linux/mmpfb
+ bin/alpha-linux/otfinfo
+ bin/alpha-linux/otftotfm
+ bin/alpha-linux/t1dotlessj
+ bin/alpha-linux/t1lint
+ bin/alpha-linux/t1reencode
+ bin/alpha-linux/t1testpage
+ bin/alpha-linux/ttftotype42
+binfiles arch=sparc-linux size=3305112
+ bin/sparc-linux/cfftot1
+ bin/sparc-linux/mmafm
+ bin/sparc-linux/mmpfb
+ bin/sparc-linux/otfinfo
+ bin/sparc-linux/otftotfm
+ bin/sparc-linux/t1dotlessj
+ bin/sparc-linux/t1lint
+ bin/sparc-linux/t1reencode
+ bin/sparc-linux/t1testpage
+ bin/sparc-linux/ttftotype42
+binfiles arch=sparc-solaris size=4516104
+ bin/sparc-solaris/cfftot1
+ bin/sparc-solaris/mmafm
+ bin/sparc-solaris/mmpfb
+ bin/sparc-solaris/otfinfo
+ bin/sparc-solaris/otftotfm
+ bin/sparc-solaris/t1dotlessj
+ bin/sparc-solaris/t1lint
+ bin/sparc-solaris/t1reencode
+ bin/sparc-solaris/t1testpage
+ bin/sparc-solaris/ttftotype42
+binfiles arch=i386-freebsd size=2831148
+ bin/i386-freebsd/cfftot1
+ bin/i386-freebsd/mmafm
+ bin/i386-freebsd/mmpfb
+ bin/i386-freebsd/otfinfo
+ bin/i386-freebsd/otftotfm
+ bin/i386-freebsd/t1dotlessj
+ bin/i386-freebsd/t1lint
+ bin/i386-freebsd/t1reencode
+ bin/i386-freebsd/t1testpage
+ bin/i386-freebsd/ttftotype42
+binfiles arch=win32 size=3393536
+ bin/win32/cfftot1.exe
+ bin/win32/mmafm.exe
+ bin/win32/mmpfb.exe
+ bin/win32/otfinfo.exe
+ bin/win32/otftotfm.exe
+ bin/win32/t1dotlessj.exe
+ bin/win32/t1lint.exe
+ bin/win32/t1reencode.exe
+ bin/win32/t1testpage.exe
+ bin/win32/ttftotype42.exe
+binfiles arch=i386-darwin size=3485912
+ bin/i386-darwin/cfftot1
+ bin/i386-darwin/mmafm
+ bin/i386-darwin/mmpfb
+ bin/i386-darwin/otfinfo
+ bin/i386-darwin/otftotfm
+ bin/i386-darwin/t1dotlessj
+ bin/i386-darwin/t1lint
+ bin/i386-darwin/t1reencode
+ bin/i386-darwin/t1testpage
+ bin/i386-darwin/ttftotype42
+binfiles arch=powerpc-linux size=3429700
+ bin/powerpc-linux/cfftot1
+ bin/powerpc-linux/mmafm
+ bin/powerpc-linux/mmpfb
+ bin/powerpc-linux/otfinfo
+ bin/powerpc-linux/otftotfm
+ bin/powerpc-linux/t1dotlessj
+ bin/powerpc-linux/t1lint
+ bin/powerpc-linux/t1reencode
+ bin/powerpc-linux/t1testpage
+ bin/powerpc-linux/ttftotype42
+binfiles arch=powerpc-aix size=5702878
+ bin/powerpc-aix/cfftot1
+ bin/powerpc-aix/mmafm
+ bin/powerpc-aix/mmpfb
+ bin/powerpc-aix/otfinfo
+ bin/powerpc-aix/otftotfm
+ bin/powerpc-aix/t1dotlessj
+ bin/powerpc-aix/t1lint
+ bin/powerpc-aix/t1reencode
+ bin/powerpc-aix/t1testpage
+ bin/powerpc-aix/ttftotype42
+binfiles arch=powerpc-darwin size=3630236
+ bin/powerpc-darwin/cfftot1
+ bin/powerpc-darwin/mmafm
+ bin/powerpc-darwin/mmpfb
+ bin/powerpc-darwin/otfinfo
+ bin/powerpc-darwin/otftotfm
+ bin/powerpc-darwin/t1dotlessj
+ bin/powerpc-darwin/t1lint
+ bin/powerpc-darwin/t1reencode
+ bin/powerpc-darwin/t1testpage
+ bin/powerpc-darwin/ttftotype42
+binfiles arch=x86_64-linux size=3312432
+ bin/x86_64-linux/cfftot1
+ bin/x86_64-linux/mmafm
+ bin/x86_64-linux/mmpfb
+ bin/x86_64-linux/otfinfo
+ bin/x86_64-linux/otftotfm
+ bin/x86_64-linux/t1dotlessj
+ bin/x86_64-linux/t1lint
+ bin/x86_64-linux/t1reencode
+ bin/x86_64-linux/t1testpage
+ bin/x86_64-linux/ttftotype42
+
+name bin-makeindex
+category TLCore
+revision 5403
+docfiles size=29922
+ texmf/doc/man/man1/makeindex.1
+ texmf/doc/man/man1/mkindex.1
+binfiles arch=i386-openbsd size=124407
+ bin/i386-openbsd/makeindex
+ bin/i386-openbsd/mkindex
+binfiles arch=i386-solaris size=126455
+ bin/i386-solaris/makeindex
+ bin/i386-solaris/mkindex
+binfiles arch=i386-linux size=118795
+ bin/i386-linux/makeindex
+ bin/i386-linux/mkindex
+binfiles arch=hppa-hpux size=156989
+ bin/hppa-hpux/makeindex
+ bin/hppa-hpux/mkindex
+binfiles arch=mips-irix size=193819
+ bin/mips-irix/makeindex
+ bin/mips-irix/mkindex
+binfiles arch=alpha-linux size=172387
+ bin/alpha-linux/makeindex
+ bin/alpha-linux/mkindex
+binfiles arch=sparc-linux size=133443
+ bin/sparc-linux/makeindex
+ bin/sparc-linux/mkindex
+binfiles arch=sparc-solaris size=218347
+ bin/sparc-solaris/makeindex
+ bin/sparc-solaris/mkindex
+binfiles arch=i386-freebsd size=122731
+ bin/i386-freebsd/makeindex
+ bin/i386-freebsd/mkindex
+binfiles arch=win32 size=76288
+ bin/win32/makeindex.exe
+binfiles arch=i386-darwin size=143111
+ bin/i386-darwin/makeindex
+ bin/i386-darwin/mkindex
+binfiles arch=powerpc-linux size=133783
+ bin/powerpc-linux/makeindex
+ bin/powerpc-linux/mkindex
+binfiles arch=powerpc-aix size=146033
+ bin/powerpc-aix/makeindex
+ bin/powerpc-aix/mkindex
+binfiles arch=powerpc-darwin size=143815
+ bin/powerpc-darwin/makeindex
+ bin/powerpc-darwin/mkindex
+binfiles arch=x86_64-linux size=138179
+ bin/x86_64-linux/makeindex
+ bin/x86_64-linux/mkindex
+
+name bin-metafont
+category TLCore
+revision 5403
+depend bin-kpathsea
+execute BuildFormat metafont
+docfiles size=13324
+ texmf/doc/man/man1/mf-nowin.1
+ texmf/doc/man/man1/mf.1
+runfiles size=22252
+ texmf/fmtutil/format.metafont.cnf
+ texmf/web2c/mf.pool
+binfiles arch=i386-openbsd size=500680
+ bin/i386-openbsd/mf
+ bin/i386-openbsd/mf-nowin
+binfiles arch=i386-solaris size=556416
+ bin/i386-solaris/mf
+ bin/i386-solaris/mf-nowin
+binfiles arch=i386-linux size=474260
+ bin/i386-linux/mf
+ bin/i386-linux/mf-nowin
+binfiles arch=hppa-hpux size=645009
+ bin/hppa-hpux/mf
+ bin/hppa-hpux/mf-nowin
+binfiles arch=mips-irix size=968136
+ bin/mips-irix/mf
+ bin/mips-irix/mf-nowin
+binfiles arch=alpha-linux size=805312
+ bin/alpha-linux/mf
+ bin/alpha-linux/mf-nowin
+binfiles arch=sparc-linux size=578632
+ bin/sparc-linux/mf
+ bin/sparc-linux/mf-nowin
+binfiles arch=sparc-solaris size=872196
+ bin/sparc-solaris/mf
+ bin/sparc-solaris/mf-nowin
+binfiles arch=i386-freebsd size=513188
+ bin/i386-freebsd/mf
+ bin/i386-freebsd/mf-nowin
+binfiles arch=win32 size=386048
+ bin/win32/mf-nowin.exe
+ bin/win32/mf.exe
+binfiles arch=i386-darwin size=627124
+ bin/i386-darwin/mf
+ bin/i386-darwin/mf-nowin
+binfiles arch=powerpc-linux size=607568
+ bin/powerpc-linux/mf
+ bin/powerpc-linux/mf-nowin
+binfiles arch=powerpc-aix size=654715
+ bin/powerpc-aix/mf
+ bin/powerpc-aix/mf-nowin
+binfiles arch=powerpc-darwin size=624536
+ bin/powerpc-darwin/mf
+ bin/powerpc-darwin/mf-nowin
+binfiles arch=x86_64-linux size=562024
+ bin/x86_64-linux/mf
+ bin/x86_64-linux/mf-nowin
+
+name bin-metapost
+category TLCore
+revision 5403
+depend bin-kpathsea
+execute BuildFormat metapost
+docfiles size=19582
+ texmf/doc/man/man1/dmp.1
+ texmf/doc/man/man1/dvitomp.1
+ texmf/doc/man/man1/makempx.1
+ texmf/doc/man/man1/mpost.1
+ texmf/doc/man/man1/mpto.1
+ texmf/doc/man/man1/newer.1
+runfiles size=52
+ texmf/fmtutil/format.metapost.cnf
+binfiles arch=i386-openbsd size=567960
+ bin/i386-openbsd/dmp
+ bin/i386-openbsd/dvitomp
+ bin/i386-openbsd/makempx
+ bin/i386-openbsd/mpost
+ bin/i386-openbsd/mpto
+ bin/i386-openbsd/newer
+binfiles arch=i386-solaris size=613828
+ bin/i386-solaris/dmp
+ bin/i386-solaris/dvitomp
+ bin/i386-solaris/makempx
+ bin/i386-solaris/mpost
+ bin/i386-solaris/mpto
+ bin/i386-solaris/newer
+binfiles arch=i386-linux size=541344
+ bin/i386-linux/dmp
+ bin/i386-linux/dvitomp
+ bin/i386-linux/makempx
+ bin/i386-linux/mpost
+ bin/i386-linux/mpto
+ bin/i386-linux/newer
+binfiles arch=hppa-hpux size=805526
+ bin/hppa-hpux/dmp
+ bin/hppa-hpux/dvitomp
+ bin/hppa-hpux/makempx
+ bin/hppa-hpux/mpost
+ bin/hppa-hpux/mpto
+ bin/hppa-hpux/newer
+binfiles arch=mips-irix size=1095584
+ bin/mips-irix/dmp
+ bin/mips-irix/dvitomp
+ bin/mips-irix/makempx
+ bin/mips-irix/mpost
+ bin/mips-irix/mpto
+ bin/mips-irix/newer
+binfiles arch=alpha-linux size=902368
+ bin/alpha-linux/dmp
+ bin/alpha-linux/dvitomp
+ bin/alpha-linux/makempx
+ bin/alpha-linux/mpost
+ bin/alpha-linux/mpto
+ bin/alpha-linux/newer
+binfiles arch=sparc-linux size=630572
+ bin/sparc-linux/dmp
+ bin/sparc-linux/dvitomp
+ bin/sparc-linux/makempx
+ bin/sparc-linux/mpost
+ bin/sparc-linux/mpto
+ bin/sparc-linux/newer
+binfiles arch=sparc-solaris size=1029272
+ bin/sparc-solaris/dmp
+ bin/sparc-solaris/dvitomp
+ bin/sparc-solaris/makempx
+ bin/sparc-solaris/mpost
+ bin/sparc-solaris/mpto
+ bin/sparc-solaris/newer
+binfiles arch=i386-freebsd size=572348
+ bin/i386-freebsd/dmp
+ bin/i386-freebsd/dvitomp
+ bin/i386-freebsd/makempx
+ bin/i386-freebsd/mpost
+ bin/i386-freebsd/mpto
+ bin/i386-freebsd/newer
+binfiles arch=win32 size=386048
+ bin/win32/dmp.exe
+ bin/win32/dvitomp.exe
+ bin/win32/makempx-without-g-prefix.exe
+ bin/win32/makempx.exe
+ bin/win32/mfmp.exe
+ bin/win32/mpost.dll
+ bin/win32/mpost.exe
+ bin/win32/mpto.exe
+ bin/win32/newer.exe
+binfiles arch=i386-darwin size=710716
+ bin/i386-darwin/dmp
+ bin/i386-darwin/dvitomp
+ bin/i386-darwin/makempx
+ bin/i386-darwin/mpost
+ bin/i386-darwin/mpto
+ bin/i386-darwin/newer
+binfiles arch=powerpc-linux size=665832
+ bin/powerpc-linux/dmp
+ bin/powerpc-linux/dvitomp
+ bin/powerpc-linux/makempx
+ bin/powerpc-linux/mpost
+ bin/powerpc-linux/mpto
+ bin/powerpc-linux/newer
+binfiles arch=powerpc-aix size=746536
+ bin/powerpc-aix/dmp
+ bin/powerpc-aix/dvitomp
+ bin/powerpc-aix/makempx
+ bin/powerpc-aix/mpost
+ bin/powerpc-aix/mpto
+ bin/powerpc-aix/newer
+binfiles arch=powerpc-darwin size=693984
+ bin/powerpc-darwin/dmp
+ bin/powerpc-darwin/dvitomp
+ bin/powerpc-darwin/makempx
+ bin/powerpc-darwin/mpost
+ bin/powerpc-darwin/mpto
+ bin/powerpc-darwin/newer
+binfiles arch=x86_64-linux size=662536
+ bin/x86_64-linux/dmp
+ bin/x86_64-linux/dvitomp
+ bin/x86_64-linux/makempx
+ bin/x86_64-linux/mpost
+ bin/x86_64-linux/mpto
+ bin/x86_64-linux/newer
+
+name bin-mex
+category TLCore
+revision 5403
+depend bin-pdftex
+depend bin-tex
+execute BuildFormat mex
+execute BuildFormat utf8mex
+runfiles size=232
+ texmf/fmtutil/format.mex.cnf
+ texmf/fmtutil/format.utf8mex.cnf
+binfiles arch=i386-openbsd size=18
+ bin/i386-openbsd/mex
+ bin/i386-openbsd/pdfmex
+ bin/i386-openbsd/utf8mex
+binfiles arch=i386-solaris size=18
+ bin/i386-solaris/mex
+ bin/i386-solaris/pdfmex
+ bin/i386-solaris/utf8mex
+binfiles arch=i386-linux size=18
+ bin/i386-linux/mex
+ bin/i386-linux/pdfmex
+ bin/i386-linux/utf8mex
+binfiles arch=hppa-hpux size=18
+ bin/hppa-hpux/mex
+ bin/hppa-hpux/pdfmex
+ bin/hppa-hpux/utf8mex
+binfiles arch=mips-irix size=18
+ bin/mips-irix/mex
+ bin/mips-irix/pdfmex
+ bin/mips-irix/utf8mex
+binfiles arch=alpha-linux size=18
+ bin/alpha-linux/mex
+ bin/alpha-linux/pdfmex
+ bin/alpha-linux/utf8mex
+binfiles arch=sparc-linux size=18
+ bin/sparc-linux/mex
+ bin/sparc-linux/pdfmex
+ bin/sparc-linux/utf8mex
+binfiles arch=sparc-solaris size=18
+ bin/sparc-solaris/mex
+ bin/sparc-solaris/pdfmex
+ bin/sparc-solaris/utf8mex
+binfiles arch=i386-freebsd size=18
+ bin/i386-freebsd/mex
+ bin/i386-freebsd/pdfmex
+ bin/i386-freebsd/utf8mex
+binfiles arch=win32 size=7680
+ bin/win32/mex.exe
+ bin/win32/pdfmex.exe
+ bin/win32/utf8mex.exe
+binfiles arch=i386-darwin size=18
+ bin/i386-darwin/mex
+ bin/i386-darwin/pdfmex
+ bin/i386-darwin/utf8mex
+binfiles arch=powerpc-linux size=18
+ bin/powerpc-linux/mex
+ bin/powerpc-linux/pdfmex
+ bin/powerpc-linux/utf8mex
+binfiles arch=powerpc-aix size=18
+ bin/powerpc-aix/mex
+ bin/powerpc-aix/pdfmex
+ bin/powerpc-aix/utf8mex
+binfiles arch=powerpc-darwin size=18
+ bin/powerpc-darwin/mex
+ bin/powerpc-darwin/pdfmex
+ bin/powerpc-darwin/utf8mex
+binfiles arch=x86_64-linux size=18
+ bin/x86_64-linux/mex
+ bin/x86_64-linux/pdfmex
+ bin/x86_64-linux/utf8mex
+
+name bin-mfware
+category TLCore
+revision 5403
+docfiles size=19403
+ texmf/doc/man/man1/gftodvi.1
+ texmf/doc/man/man1/gftopk.1
+ texmf/doc/man/man1/gftype.1
+ texmf/doc/man/man1/mft.1
+ texmf/doc/man/man1/pktogf.1
+ texmf/doc/man/man1/pktype.1
+binfiles arch=i386-openbsd size=465080
+ bin/i386-openbsd/gftodvi
+ bin/i386-openbsd/gftopk
+ bin/i386-openbsd/gftype
+ bin/i386-openbsd/mft
+ bin/i386-openbsd/pktogf
+ bin/i386-openbsd/pktype
+binfiles arch=i386-solaris size=500360
+ bin/i386-solaris/gftodvi
+ bin/i386-solaris/gftopk
+ bin/i386-solaris/gftype
+ bin/i386-solaris/mft
+ bin/i386-solaris/pktogf
+ bin/i386-solaris/pktype
+binfiles arch=i386-linux size=420672
+ bin/i386-linux/gftodvi
+ bin/i386-linux/gftopk
+ bin/i386-linux/gftype
+ bin/i386-linux/mft
+ bin/i386-linux/pktogf
+ bin/i386-linux/pktype
+binfiles arch=hppa-hpux size=645226
+ bin/hppa-hpux/gftodvi
+ bin/hppa-hpux/gftopk
+ bin/hppa-hpux/gftype
+ bin/hppa-hpux/mft
+ bin/hppa-hpux/pktogf
+ bin/hppa-hpux/pktype
+binfiles arch=mips-irix size=876456
+ bin/mips-irix/gftodvi
+ bin/mips-irix/gftopk
+ bin/mips-irix/gftype
+ bin/mips-irix/mft
+ bin/mips-irix/pktogf
+ bin/mips-irix/pktype
+binfiles arch=alpha-linux size=761056
+ bin/alpha-linux/gftodvi
+ bin/alpha-linux/gftopk
+ bin/alpha-linux/gftype
+ bin/alpha-linux/mft
+ bin/alpha-linux/pktogf
+ bin/alpha-linux/pktype
+binfiles arch=sparc-linux size=493500
+ bin/sparc-linux/gftodvi
+ bin/sparc-linux/gftopk
+ bin/sparc-linux/gftype
+ bin/sparc-linux/mft
+ bin/sparc-linux/pktogf
+ bin/sparc-linux/pktype
+binfiles arch=sparc-solaris size=1015512
+ bin/sparc-solaris/gftodvi
+ bin/sparc-solaris/gftopk
+ bin/sparc-solaris/gftype
+ bin/sparc-solaris/mft
+ bin/sparc-solaris/pktogf
+ bin/sparc-solaris/pktype
+binfiles arch=i386-freebsd size=476828
+ bin/i386-freebsd/gftodvi
+ bin/i386-freebsd/gftopk
+ bin/i386-freebsd/gftype
+ bin/i386-freebsd/mft
+ bin/i386-freebsd/pktogf
+ bin/i386-freebsd/pktype
+binfiles arch=win32 size=133120
+ bin/win32/gftodvi.exe
+ bin/win32/gftopk.exe
+ bin/win32/gftype.exe
+ bin/win32/mft.exe
+ bin/win32/pktogf.exe
+ bin/win32/pktype.exe
+binfiles arch=i386-darwin size=573116
+ bin/i386-darwin/gftodvi
+ bin/i386-darwin/gftopk
+ bin/i386-darwin/gftype
+ bin/i386-darwin/mft
+ bin/i386-darwin/pktogf
+ bin/i386-darwin/pktype
+binfiles arch=powerpc-linux size=510468
+ bin/powerpc-linux/gftodvi
+ bin/powerpc-linux/gftopk
+ bin/powerpc-linux/gftype
+ bin/powerpc-linux/mft
+ bin/powerpc-linux/pktogf
+ bin/powerpc-linux/pktype
+binfiles arch=powerpc-aix size=563508
+ bin/powerpc-aix/gftodvi
+ bin/powerpc-aix/gftopk
+ bin/powerpc-aix/gftype
+ bin/powerpc-aix/mft
+ bin/powerpc-aix/pktogf
+ bin/powerpc-aix/pktype
+binfiles arch=powerpc-darwin size=548488
+ bin/powerpc-darwin/gftodvi
+ bin/powerpc-darwin/gftopk
+ bin/powerpc-darwin/gftype
+ bin/powerpc-darwin/mft
+ bin/powerpc-darwin/pktogf
+ bin/powerpc-darwin/pktype
+binfiles arch=x86_64-linux size=520744
+ bin/x86_64-linux/gftodvi
+ bin/x86_64-linux/gftopk
+ bin/x86_64-linux/gftype
+ bin/x86_64-linux/mft
+ bin/x86_64-linux/pktogf
+ bin/x86_64-linux/pktype
+
+name bin-mltex
+category TLCore
+revision 5403
+depend bin-latex
+execute BuildFormat mltex
+runfiles size=197
+ texmf/fmtutil/format.mltex.cnf
+binfiles arch=i386-openbsd size=12
+ bin/i386-openbsd/mllatex
+ bin/i386-openbsd/mltex
+binfiles arch=i386-solaris size=12
+ bin/i386-solaris/mllatex
+ bin/i386-solaris/mltex
+binfiles arch=i386-linux size=12
+ bin/i386-linux/mllatex
+ bin/i386-linux/mltex
+binfiles arch=hppa-hpux size=12
+ bin/hppa-hpux/mllatex
+ bin/hppa-hpux/mltex
+binfiles arch=mips-irix size=12
+ bin/mips-irix/mllatex
+ bin/mips-irix/mltex
+binfiles arch=alpha-linux size=12
+ bin/alpha-linux/mllatex
+ bin/alpha-linux/mltex
+binfiles arch=sparc-linux size=12
+ bin/sparc-linux/mllatex
+ bin/sparc-linux/mltex
+binfiles arch=sparc-solaris size=12
+ bin/sparc-solaris/mllatex
+ bin/sparc-solaris/mltex
+binfiles arch=i386-freebsd size=12
+ bin/i386-freebsd/mllatex
+ bin/i386-freebsd/mltex
+binfiles arch=win32 size=5120
+ bin/win32/mllatex.exe
+ bin/win32/mltex.exe
+binfiles arch=i386-darwin size=12
+ bin/i386-darwin/mllatex
+ bin/i386-darwin/mltex
+binfiles arch=powerpc-linux size=12
+ bin/powerpc-linux/mllatex
+ bin/powerpc-linux/mltex
+binfiles arch=powerpc-aix size=12
+ bin/powerpc-aix/mllatex
+ bin/powerpc-aix/mltex
+binfiles arch=powerpc-darwin size=12
+ bin/powerpc-darwin/mllatex
+ bin/powerpc-darwin/mltex
+binfiles arch=x86_64-linux size=12
+ bin/x86_64-linux/mllatex
+ bin/x86_64-linux/mltex
+
+name bin-musixflx
+category TLCore
+revision 5403
+binfiles arch=i386-openbsd size=16420
+ bin/i386-openbsd/musixflx
+binfiles arch=i386-solaris size=16380
+ bin/i386-solaris/musixflx
+binfiles arch=i386-linux size=13888
+ bin/i386-linux/musixflx
+binfiles arch=hppa-hpux size=32837
+ bin/hppa-hpux/musixflx
+binfiles arch=mips-irix size=22148
+ bin/mips-irix/musixflx
+binfiles arch=alpha-linux size=20120
+ bin/alpha-linux/musixflx
+binfiles arch=sparc-linux size=18092
+ bin/sparc-linux/musixflx
+binfiles arch=sparc-solaris size=22684
+ bin/sparc-solaris/musixflx
+binfiles arch=i386-freebsd size=14132
+ bin/i386-freebsd/musixflx
+binfiles arch=win32 size=13312
+ bin/win32/musixflx.exe
+binfiles arch=i386-darwin size=26048
+ bin/i386-darwin/musixflx
+binfiles arch=powerpc-linux size=15572
+ bin/powerpc-linux/musixflx
+binfiles arch=powerpc-aix size=14046
+ bin/powerpc-aix/musixflx
+binfiles arch=powerpc-darwin size=22504
+ bin/powerpc-darwin/musixflx
+binfiles arch=x86_64-linux size=16728
+ bin/x86_64-linux/musixflx
+
+name bin-omega
+category TLCore
+revision 5403
+execute BuildFormat omega
+docfiles size=7826
+ texmf/doc/man/man1/lambda.1
+ texmf/doc/man/man1/omega.1
+runfiles size=30241
+ texmf/fmtutil/format.omega.cnf
+ texmf/web2c/omega.pool
+binfiles arch=i386-openbsd size=440969
+ bin/i386-openbsd/lambda
+ bin/i386-openbsd/omega
+binfiles arch=i386-solaris size=487449
+ bin/i386-solaris/lambda
+ bin/i386-solaris/omega
+binfiles arch=i386-linux size=419749
+ bin/i386-linux/lambda
+ bin/i386-linux/omega
+binfiles arch=hppa-hpux size=574810
+ bin/hppa-hpux/lambda
+ bin/hppa-hpux/omega
+binfiles arch=mips-irix size=827833
+ bin/mips-irix/lambda
+ bin/mips-irix/omega
+binfiles arch=alpha-linux size=685821
+ bin/alpha-linux/lambda
+ bin/alpha-linux/omega
+binfiles arch=sparc-linux size=523165
+ bin/sparc-linux/lambda
+ bin/sparc-linux/omega
+binfiles arch=sparc-solaris size=719709
+ bin/sparc-solaris/lambda
+ bin/sparc-solaris/omega
+binfiles arch=i386-freebsd size=463993
+ bin/i386-freebsd/lambda
+ bin/i386-freebsd/omega
+binfiles arch=win32 size=397312
+ bin/win32/lambda.exe
+ bin/win32/omega.dll
+ bin/win32/omega.exe
+binfiles arch=i386-darwin size=529061
+ bin/i386-darwin/lambda
+ bin/i386-darwin/omega
+binfiles arch=powerpc-linux size=520941
+ bin/powerpc-linux/lambda
+ bin/powerpc-linux/omega
+binfiles arch=powerpc-aix size=558418
+ bin/powerpc-aix/lambda
+ bin/powerpc-aix/omega
+binfiles arch=powerpc-darwin size=542089
+ bin/powerpc-darwin/lambda
+ bin/powerpc-darwin/omega
+binfiles arch=x86_64-linux size=478925
+ bin/x86_64-linux/lambda
+ bin/x86_64-linux/omega
+
+name bin-omegaware
+category TLCore
+revision 5403
+docfiles size=12982
+ texmf/doc/man/man1/odvicopy.1
+ texmf/doc/man/man1/odvips.1
+ texmf/doc/man/man1/odvitype.1
+ texmf/doc/man/man1/ofm2opl.1
+ texmf/doc/man/man1/opl2ofm.1
+ texmf/doc/man/man1/otp2ocp.1
+ texmf/doc/man/man1/outocp.1
+ texmf/doc/man/man1/ovf2ovp.1
+ texmf/doc/man/man1/ovp2ovf.1
+binfiles arch=i386-openbsd size=501689
+ bin/i386-openbsd/odvicopy
+ bin/i386-openbsd/odvips
+ bin/i386-openbsd/odvitype
+ bin/i386-openbsd/ofm2opl
+ bin/i386-openbsd/omfonts
+ bin/i386-openbsd/opl2ofm
+ bin/i386-openbsd/otangle
+ bin/i386-openbsd/otp2ocp
+ bin/i386-openbsd/outocp
+ bin/i386-openbsd/ovf2ovp
+ bin/i386-openbsd/ovp2ovf
+binfiles arch=i386-solaris size=558713
+ bin/i386-solaris/odvicopy
+ bin/i386-solaris/odvips
+ bin/i386-solaris/odvitype
+ bin/i386-solaris/ofm2opl
+ bin/i386-solaris/omfonts
+ bin/i386-solaris/opl2ofm
+ bin/i386-solaris/otangle
+ bin/i386-solaris/otp2ocp
+ bin/i386-solaris/outocp
+ bin/i386-solaris/ovf2ovp
+ bin/i386-solaris/ovp2ovf
+binfiles arch=i386-linux size=464653
+ bin/i386-linux/odvicopy
+ bin/i386-linux/odvips
+ bin/i386-linux/odvitype
+ bin/i386-linux/ofm2opl
+ bin/i386-linux/omfonts
+ bin/i386-linux/opl2ofm
+ bin/i386-linux/otangle
+ bin/i386-linux/otp2ocp
+ bin/i386-linux/outocp
+ bin/i386-linux/ovf2ovp
+ bin/i386-linux/ovp2ovf
+binfiles arch=hppa-hpux size=703103
+ bin/hppa-hpux/odvicopy
+ bin/hppa-hpux/odvips
+ bin/hppa-hpux/odvitype
+ bin/hppa-hpux/ofm2opl
+ bin/hppa-hpux/omfonts
+ bin/hppa-hpux/opl2ofm
+ bin/hppa-hpux/otangle
+ bin/hppa-hpux/otp2ocp
+ bin/hppa-hpux/outocp
+ bin/hppa-hpux/ovf2ovp
+ bin/hppa-hpux/ovp2ovf
+binfiles arch=mips-irix size=1008093
+ bin/mips-irix/odvicopy
+ bin/mips-irix/odvips
+ bin/mips-irix/odvitype
+ bin/mips-irix/ofm2opl
+ bin/mips-irix/omfonts
+ bin/mips-irix/opl2ofm
+ bin/mips-irix/otangle
+ bin/mips-irix/otp2ocp
+ bin/mips-irix/outocp
+ bin/mips-irix/ovf2ovp
+ bin/mips-irix/ovp2ovf
+binfiles arch=alpha-linux size=800001
+ bin/alpha-linux/odvicopy
+ bin/alpha-linux/odvips
+ bin/alpha-linux/odvitype
+ bin/alpha-linux/ofm2opl
+ bin/alpha-linux/omfonts
+ bin/alpha-linux/opl2ofm
+ bin/alpha-linux/otangle
+ bin/alpha-linux/otp2ocp
+ bin/alpha-linux/outocp
+ bin/alpha-linux/ovf2ovp
+ bin/alpha-linux/ovp2ovf
+binfiles arch=sparc-linux size=544077
+ bin/sparc-linux/odvicopy
+ bin/sparc-linux/odvips
+ bin/sparc-linux/odvitype
+ bin/sparc-linux/ofm2opl
+ bin/sparc-linux/omfonts
+ bin/sparc-linux/opl2ofm
+ bin/sparc-linux/otangle
+ bin/sparc-linux/otp2ocp
+ bin/sparc-linux/outocp
+ bin/sparc-linux/ovf2ovp
+ bin/sparc-linux/ovp2ovf
+binfiles arch=sparc-solaris size=1052277
+ bin/sparc-solaris/odvicopy
+ bin/sparc-solaris/odvips
+ bin/sparc-solaris/odvitype
+ bin/sparc-solaris/ofm2opl
+ bin/sparc-solaris/omfonts
+ bin/sparc-solaris/opl2ofm
+ bin/sparc-solaris/otangle
+ bin/sparc-solaris/otp2ocp
+ bin/sparc-solaris/outocp
+ bin/sparc-solaris/ovf2ovp
+ bin/sparc-solaris/ovp2ovf
+binfiles arch=i386-freebsd size=521129
+ bin/i386-freebsd/odvicopy
+ bin/i386-freebsd/odvips
+ bin/i386-freebsd/odvitype
+ bin/i386-freebsd/ofm2opl
+ bin/i386-freebsd/omfonts
+ bin/i386-freebsd/opl2ofm
+ bin/i386-freebsd/otangle
+ bin/i386-freebsd/otp2ocp
+ bin/i386-freebsd/outocp
+ bin/i386-freebsd/ovf2ovp
+ bin/i386-freebsd/ovp2ovf
+binfiles arch=win32 size=664576
+ bin/win32/odvicopy.exe
+ bin/win32/odvips.exe
+ bin/win32/odvitype.exe
+ bin/win32/ofm2opl.exe
+ bin/win32/omfonts.exe
+ bin/win32/opl2ofm.exe
+ bin/win32/otangle.exe
+ bin/win32/otp2ocp.exe
+ bin/win32/outocp.exe
+ bin/win32/ovf2ovp.exe
+ bin/win32/ovp2ovf.exe
+binfiles arch=i386-darwin size=618341
+ bin/i386-darwin/odvicopy
+ bin/i386-darwin/odvips
+ bin/i386-darwin/odvitype
+ bin/i386-darwin/ofm2opl
+ bin/i386-darwin/omfonts
+ bin/i386-darwin/opl2ofm
+ bin/i386-darwin/otangle
+ bin/i386-darwin/otp2ocp
+ bin/i386-darwin/outocp
+ bin/i386-darwin/ovf2ovp
+ bin/i386-darwin/ovp2ovf
+binfiles arch=powerpc-linux size=572673
+ bin/powerpc-linux/odvicopy
+ bin/powerpc-linux/odvips
+ bin/powerpc-linux/odvitype
+ bin/powerpc-linux/ofm2opl
+ bin/powerpc-linux/omfonts
+ bin/powerpc-linux/opl2ofm
+ bin/powerpc-linux/otangle
+ bin/powerpc-linux/otp2ocp
+ bin/powerpc-linux/outocp
+ bin/powerpc-linux/ovf2ovp
+ bin/powerpc-linux/ovp2ovf
+binfiles arch=powerpc-aix size=630818
+ bin/powerpc-aix/odvicopy
+ bin/powerpc-aix/odvips
+ bin/powerpc-aix/odvitype
+ bin/powerpc-aix/ofm2opl
+ bin/powerpc-aix/omfonts
+ bin/powerpc-aix/opl2ofm
+ bin/powerpc-aix/otangle
+ bin/powerpc-aix/otp2ocp
+ bin/powerpc-aix/outocp
+ bin/powerpc-aix/ovf2ovp
+ bin/powerpc-aix/ovp2ovf
+binfiles arch=powerpc-darwin size=601769
+ bin/powerpc-darwin/odvicopy
+ bin/powerpc-darwin/odvips
+ bin/powerpc-darwin/odvitype
+ bin/powerpc-darwin/ofm2opl
+ bin/powerpc-darwin/omfonts
+ bin/powerpc-darwin/opl2ofm
+ bin/powerpc-darwin/otangle
+ bin/powerpc-darwin/otp2ocp
+ bin/powerpc-darwin/outocp
+ bin/powerpc-darwin/ovf2ovp
+ bin/powerpc-darwin/ovp2ovf
+binfiles arch=x86_64-linux size=586561
+ bin/x86_64-linux/odvicopy
+ bin/x86_64-linux/odvips
+ bin/x86_64-linux/odvitype
+ bin/x86_64-linux/ofm2opl
+ bin/x86_64-linux/omfonts
+ bin/x86_64-linux/opl2ofm
+ bin/x86_64-linux/otangle
+ bin/x86_64-linux/otp2ocp
+ bin/x86_64-linux/outocp
+ bin/x86_64-linux/ovf2ovp
+ bin/x86_64-linux/ovp2ovf
+
+name bin-patgen
+category TLCore
+revision 5403
+depend bin-kpathsea
+docfiles size=6250
+ texmf/doc/man/man1/patgen.1
+binfiles arch=i386-openbsd size=34308
+ bin/i386-openbsd/patgen
+binfiles arch=i386-solaris size=40684
+ bin/i386-solaris/patgen
+binfiles arch=i386-linux size=29420
+ bin/i386-linux/patgen
+binfiles arch=hppa-hpux size=61647
+ bin/hppa-hpux/patgen
+binfiles arch=mips-irix size=80148
+ bin/mips-irix/patgen
+binfiles arch=alpha-linux size=57224
+ bin/alpha-linux/patgen
+binfiles arch=sparc-linux size=34728
+ bin/sparc-linux/patgen
+binfiles arch=sparc-solaris size=81660
+ bin/sparc-solaris/patgen
+binfiles arch=i386-freebsd size=36500
+ bin/i386-freebsd/patgen
+binfiles arch=win32 size=20480
+ bin/win32/patgen.exe
+binfiles arch=i386-darwin size=47272
+ bin/i386-darwin/patgen
+binfiles arch=powerpc-linux size=37904
+ bin/powerpc-linux/patgen
+binfiles arch=powerpc-aix size=45435
+ bin/powerpc-aix/patgen
+binfiles arch=powerpc-darwin size=47840
+ bin/powerpc-darwin/patgen
+binfiles arch=x86_64-linux size=36744
+ bin/x86_64-linux/patgen
+
+name bin-pdftex
+category TLCore
+revision 5403
+depend bin-kpathsea
+execute BuildFormat pdftex
+docfiles size=8618436
+ texmf/doc/man/man1/pdfetex.1
+ texmf/doc/man/man1/pdflatex.1
+ texmf/doc/man/man1/pdftex.1
+ texmf/doc/pdftex/Announcement-1.40.2
+ texmf/doc/pdftex/NEWS
+ texmf/doc/pdftex/README
+ texmf/doc/pdftex/manual/Makefile
+ texmf/doc/pdftex/manual/README
+ texmf/doc/pdftex/manual/makefiles.cmd
+ texmf/doc/pdftex/manual/pdftex-a.pdf
+ texmf/doc/pdftex/manual/pdftex-i.tex
+ texmf/doc/pdftex/manual/pdftex-l.pdf
+ texmf/doc/pdftex/manual/pdftex-s.pdf
+ texmf/doc/pdftex/manual/pdftex-syntax.txt
+ texmf/doc/pdftex/manual/pdftex-t.tex
+ texmf/doc/pdftex/manual/pdftex-t.txt
+ texmf/doc/pdftex/manual/pdftex-w.pdf
+ texmf/doc/pdftex/manual/pdftex-w.tex
+ texmf/doc/pdftex/manual/samplepdf/cmr10.103
+ texmf/doc/pdftex/manual/samplepdf/obj.dat
+ texmf/doc/pdftex/manual/samplepdf/pdfcolor.tex
+ texmf/doc/pdftex/manual/samplepdf/pic.eps
+ texmf/doc/pdftex/manual/samplepdf/pic.jpg
+ texmf/doc/pdftex/manual/samplepdf/pic.mps
+ texmf/doc/pdftex/manual/samplepdf/pic.pdf
+ texmf/doc/pdftex/manual/samplepdf/pic.png
+ texmf/doc/pdftex/manual/samplepdf/pic16.png
+ texmf/doc/pdftex/manual/samplepdf/rgb.icc
+ texmf/doc/pdftex/manual/samplepdf/samplepdf.0
+ texmf/doc/pdftex/manual/samplepdf/samplepdf.1
+ texmf/doc/pdftex/manual/samplepdf/samplepdf.tex
+ texmf/doc/pdftex/manual/samplepdf/supp-mis.tex
+ texmf/doc/pdftex/manual/samplepdf/supp-pdf.tex
+ texmf/doc/pdftex/manual/samplepdf/tmp.pdf
+ texmf/doc/pdftex/manual/syntaxform.awk
+ texmf/doc/pdftex/pdftex-pdfkeys/Makefile
+ texmf/doc/pdftex/pdftex-pdfkeys/fdl.tex
+ texmf/doc/pdftex/pdftex-pdfkeys/pdftex-pdfkeys.bbl
+ texmf/doc/pdftex/pdftex-pdfkeys/pdftex-pdfkeys.pdf
+ texmf/doc/pdftex/pdftex-pdfkeys/pdftex-pdfkeys.tex
+ texmf/doc/pdftex/thanh/ext/abbr.tex
+ texmf/doc/pdftex/thanh/ext/efcode.tex
+ texmf/doc/pdftex/thanh/ext/il2.etx
+ texmf/doc/pdftex/thanh/ext/il2.mtx
+ texmf/doc/pdftex/thanh/ext/il2protcode.tex
+ texmf/doc/pdftex/thanh/ext/mktextfm
+ texmf/doc/pdftex/thanh/ext/mktextfm.ext
+ texmf/doc/pdftex/thanh/ext/mktfm8z
+ texmf/doc/pdftex/thanh/ext/protcode.tex
+ texmf/doc/pdftex/thanh/ext/ufntinst.sty
+ texmf/doc/pdftex/thanh/thesis-png.pdf
+runfiles size=1773541
+ texmf/fmtutil/format.pdftex.cnf
+ texmf/fonts/map/pdftex/updmap/pdftex.map
+ texmf/fonts/map/pdftex/updmap/pdftex_dl14.map
+ texmf/fonts/map/pdftex/updmap/pdftex_ndl14.map
+ texmf/tex/generic/config/pdftex-dvi.tex
+ texmf/tex/generic/config/pdftexconfig.tex
+ texmf/tex/generic/pdftex/glyphtounicode.tex
+ texmf/web2c/pdftex.pool
+binfiles arch=i386-openbsd size=1197721
+ bin/i386-openbsd/pdfetex
+ bin/i386-openbsd/pdflatex
+ bin/i386-openbsd/pdftex
+ bin/i386-openbsd/simpdftex
+binfiles arch=i386-solaris size=1459509
+ bin/i386-solaris/pdfetex
+ bin/i386-solaris/pdflatex
+ bin/i386-solaris/pdftex
+ bin/i386-solaris/simpdftex
+binfiles arch=i386-linux size=1194569
+ bin/i386-linux/pdfetex
+ bin/i386-linux/pdflatex
+ bin/i386-linux/pdftex
+ bin/i386-linux/simpdftex
+binfiles arch=hppa-hpux size=1589205
+ bin/hppa-hpux/pdfetex
+ bin/hppa-hpux/pdflatex
+ bin/hppa-hpux/pdftex
+ bin/hppa-hpux/simpdftex
+binfiles arch=mips-irix size=1981105
+ bin/mips-irix/pdfetex
+ bin/mips-irix/pdflatex
+ bin/mips-irix/pdftex
+ bin/mips-irix/simpdftex
+binfiles arch=alpha-linux size=1848269
+ bin/alpha-linux/pdfetex
+ bin/alpha-linux/pdflatex
+ bin/alpha-linux/pdftex
+ bin/alpha-linux/simpdftex
+binfiles arch=sparc-linux size=1344293
+ bin/sparc-linux/pdfetex
+ bin/sparc-linux/pdflatex
+ bin/sparc-linux/pdftex
+ bin/sparc-linux/simpdftex
+binfiles arch=sparc-solaris size=1739369
+ bin/sparc-solaris/pdfetex
+ bin/sparc-solaris/pdflatex
+ bin/sparc-solaris/pdftex
+ bin/sparc-solaris/simpdftex
+binfiles arch=i386-freebsd size=1221777
+ bin/i386-freebsd/pdfetex
+ bin/i386-freebsd/pdflatex
+ bin/i386-freebsd/pdftex
+ bin/i386-freebsd/simpdftex
+binfiles arch=win32 size=1081344
+ bin/win32/pdfetex.exe
+ bin/win32/pdflatex.exe
+ bin/win32/pdftex.dll
+ bin/win32/pdftex.exe
+binfiles arch=i386-darwin size=1296861
+ bin/i386-darwin/pdfetex
+ bin/i386-darwin/pdflatex
+ bin/i386-darwin/pdftex
+ bin/i386-darwin/simpdftex
+binfiles arch=powerpc-linux size=1408253
+ bin/powerpc-linux/pdfetex
+ bin/powerpc-linux/pdflatex
+ bin/powerpc-linux/pdftex
+ bin/powerpc-linux/simpdftex
+binfiles arch=powerpc-aix size=1574786
+ bin/powerpc-aix/pdfetex
+ bin/powerpc-aix/pdflatex
+ bin/powerpc-aix/pdftex
+ bin/powerpc-aix/simpdftex
+binfiles arch=powerpc-darwin size=1252005
+ bin/powerpc-darwin/pdfetex
+ bin/powerpc-darwin/pdflatex
+ bin/powerpc-darwin/pdftex
+ bin/powerpc-darwin/simpdftex
+binfiles arch=x86_64-linux size=1435045
+ bin/x86_64-linux/pdfetex
+ bin/x86_64-linux/pdflatex
+ bin/x86_64-linux/pdftex
+ bin/x86_64-linux/simpdftex
+
+name bin-pdftools
+category TLCore
+revision 5403
+docfiles size=12215
+ texmf/doc/man/man1/e2pall.1
+ texmf/doc/man/man1/epstopdf.1
+ texmf/doc/man/man1/pdftosrc.1
+ texmf/doc/pdfcrop/README
+runfiles size=23780
+ texmf/scripts/pdfcrop/pdfcrop.pl
+ texmf/scripts/tetex/e2pall.pl
+ texmf/scripts/tetex/epstopdf.pl
+binfiles arch=i386-openbsd size=450935
+ bin/i386-openbsd/e2pall
+ bin/i386-openbsd/epstopdf
+ bin/i386-openbsd/pdfclose
+ bin/i386-openbsd/pdfcrop
+ bin/i386-openbsd/pdfopen
+ bin/i386-openbsd/pdftosrc
+binfiles arch=i386-solaris size=610319
+ bin/i386-solaris/e2pall
+ bin/i386-solaris/epstopdf
+ bin/i386-solaris/pdfclose
+ bin/i386-solaris/pdfcrop
+ bin/i386-solaris/pdfopen
+ bin/i386-solaris/pdftosrc
+binfiles arch=i386-linux size=453899
+ bin/i386-linux/e2pall
+ bin/i386-linux/epstopdf
+ bin/i386-linux/pdfclose
+ bin/i386-linux/pdfcrop
+ bin/i386-linux/pdfopen
+ bin/i386-linux/pdftosrc
+binfiles arch=hppa-hpux size=657224
+ bin/hppa-hpux/e2pall
+ bin/hppa-hpux/epstopdf
+ bin/hppa-hpux/pdfclose
+ bin/hppa-hpux/pdfcrop
+ bin/hppa-hpux/pdfopen
+ bin/hppa-hpux/pdftosrc
+binfiles arch=mips-irix size=647799
+ bin/mips-irix/e2pall
+ bin/mips-irix/epstopdf
+ bin/mips-irix/pdfclose
+ bin/mips-irix/pdfcrop
+ bin/mips-irix/pdfopen
+ bin/mips-irix/pdftosrc
+binfiles arch=alpha-linux size=664763
+ bin/alpha-linux/e2pall
+ bin/alpha-linux/epstopdf
+ bin/alpha-linux/pdfclose
+ bin/alpha-linux/pdfcrop
+ bin/alpha-linux/pdfopen
+ bin/alpha-linux/pdftosrc
+binfiles arch=sparc-linux size=500459
+ bin/sparc-linux/e2pall
+ bin/sparc-linux/epstopdf
+ bin/sparc-linux/pdfclose
+ bin/sparc-linux/pdfcrop
+ bin/sparc-linux/pdfopen
+ bin/sparc-linux/pdftosrc
+binfiles arch=sparc-solaris size=548299
+ bin/sparc-solaris/e2pall
+ bin/sparc-solaris/epstopdf
+ bin/sparc-solaris/pdfclose
+ bin/sparc-solaris/pdfcrop
+ bin/sparc-solaris/pdfopen
+ bin/sparc-solaris/pdftosrc
+binfiles arch=i386-freebsd size=460935
+ bin/i386-freebsd/e2pall
+ bin/i386-freebsd/epstopdf
+ bin/i386-freebsd/pdfclose
+ bin/i386-freebsd/pdfcrop
+ bin/i386-freebsd/pdfopen
+ bin/i386-freebsd/pdftosrc
+binfiles arch=win32 size=472576
+ bin/win32/e2pall.exe
+ bin/win32/epstopdf.exe
+ bin/win32/pdfatfi.exe
+ bin/win32/pdfclose.exe
+ bin/win32/pdfcrop.exe
+ bin/win32/pdfdde.exe
+ bin/win32/pdfopen.exe
+ bin/win32/pdftosrc.exe
+binfiles arch=i386-darwin size=457291
+ bin/i386-darwin/e2pall
+ bin/i386-darwin/epstopdf
+ bin/i386-darwin/pdfcrop
+ bin/i386-darwin/pdftosrc
+binfiles arch=powerpc-linux size=544687
+ bin/powerpc-linux/e2pall
+ bin/powerpc-linux/epstopdf
+ bin/powerpc-linux/pdfclose
+ bin/powerpc-linux/pdfcrop
+ bin/powerpc-linux/pdfopen
+ bin/powerpc-linux/pdftosrc
+binfiles arch=powerpc-aix size=546643
+ bin/powerpc-aix/e2pall
+ bin/powerpc-aix/epstopdf
+ bin/powerpc-aix/pdfclose
+ bin/powerpc-aix/pdfcrop
+ bin/powerpc-aix/pdfopen
+ bin/powerpc-aix/pdftosrc
+binfiles arch=powerpc-darwin size=416171
+ bin/powerpc-darwin/e2pall
+ bin/powerpc-darwin/epstopdf
+ bin/powerpc-darwin/pdfcrop
+ bin/powerpc-darwin/pdftosrc
+binfiles arch=x86_64-linux size=571595
+ bin/x86_64-linux/e2pall
+ bin/x86_64-linux/epstopdf
+ bin/x86_64-linux/pdfclose
+ bin/x86_64-linux/pdfcrop
+ bin/x86_64-linux/pdfopen
+ bin/x86_64-linux/pdftosrc
+
+name bin-perl
+category TLCore
+revision 5403
+runfiles size=4148194
+ perltl/lib/AnyDBM_File.pm
+ perltl/lib/AutoLoader.pm
+ perltl/lib/B.pm
+ perltl/lib/B/Deparse.pm
+ perltl/lib/Carp.pm
+ perltl/lib/Carp/Heavy.pm
+ perltl/lib/Class/Struct.pm
+ perltl/lib/Config.pm
+ perltl/lib/Cwd.pm
+ perltl/lib/Data/Dumper.pm
+ perltl/lib/Digest/MD5.pm
+ perltl/lib/DynaLoader.pm
+ perltl/lib/Errno.pm
+ perltl/lib/Exporter.pm
+ perltl/lib/Exporter/Heavy.pm
+ perltl/lib/Fcntl.pm
+ perltl/lib/File/Basename.pm
+ perltl/lib/File/Compare.pm
+ perltl/lib/File/Copy.pm
+ perltl/lib/File/Find.pm
+ perltl/lib/File/Glob.pm
+ perltl/lib/File/Path.pm
+ perltl/lib/File/Spec.pm
+ perltl/lib/File/Spec/Functions.pm
+ perltl/lib/File/Spec/Unix.pm
+ perltl/lib/File/Spec/Win32.pm
+ perltl/lib/File/Temp.pm
+ perltl/lib/FindBin.pm
+ perltl/lib/Getopt/Long.pm
+ perltl/lib/IO.pm
+ perltl/lib/IO/File.pm
+ perltl/lib/IO/Handle.pm
+ perltl/lib/IO/Seekable.pm
+ perltl/lib/List/Util.pm
+ perltl/lib/POSIX.pm
+ perltl/lib/SDBM_File.pm
+ perltl/lib/Scalar/Util.pm
+ perltl/lib/SelectSaver.pm
+ perltl/lib/Symbol.pm
+ perltl/lib/Term/Cap.pm
+ perltl/lib/Text/ParseWords.pm
+ perltl/lib/Text/Tabs.pm
+ perltl/lib/Text/Wrap.pm
+ perltl/lib/Tie/Hash.pm
+ perltl/lib/Tie/Scalar.pm
+ perltl/lib/Time/HiRes.pm
+ perltl/lib/Time/Local.pm
+ perltl/lib/UNIVERSAL.pm
+ perltl/lib/XSLoader.pm
+ perltl/lib/attributes.pm
+ perltl/lib/auto/B/B.dll
+ perltl/lib/auto/Cwd/Cwd.dll
+ perltl/lib/auto/Data/Dumper/Dumper.dll
+ perltl/lib/auto/Digest/MD5/MD5.dll
+ perltl/lib/auto/DynaLoader/autosplit.ix
+ perltl/lib/auto/DynaLoader/dl_expandspec.al
+ perltl/lib/auto/DynaLoader/dl_find_symbol_anywhere.al
+ perltl/lib/auto/DynaLoader/dl_findfile.al
+ perltl/lib/auto/Fcntl/Fcntl.dll
+ perltl/lib/auto/File/Glob/Glob.dll
+ perltl/lib/auto/IO/IO.dll
+ perltl/lib/auto/List/Util/Util.dll
+ perltl/lib/auto/POSIX/POSIX.dll
+ perltl/lib/auto/POSIX/abs.al
+ perltl/lib/auto/POSIX/alarm.al
+ perltl/lib/auto/POSIX/assert.al
+ perltl/lib/auto/POSIX/atan2.al
+ perltl/lib/auto/POSIX/atexit.al
+ perltl/lib/auto/POSIX/atof.al
+ perltl/lib/auto/POSIX/atoi.al
+ perltl/lib/auto/POSIX/atol.al
+ perltl/lib/auto/POSIX/autosplit.ix
+ perltl/lib/auto/POSIX/bsearch.al
+ perltl/lib/auto/POSIX/calloc.al
+ perltl/lib/auto/POSIX/chdir.al
+ perltl/lib/auto/POSIX/chmod.al
+ perltl/lib/auto/POSIX/chown.al
+ perltl/lib/auto/POSIX/clearerr.al
+ perltl/lib/auto/POSIX/closedir.al
+ perltl/lib/auto/POSIX/cos.al
+ perltl/lib/auto/POSIX/creat.al
+ perltl/lib/auto/POSIX/div.al
+ perltl/lib/auto/POSIX/errno.al
+ perltl/lib/auto/POSIX/execl.al
+ perltl/lib/auto/POSIX/execle.al
+ perltl/lib/auto/POSIX/execlp.al
+ perltl/lib/auto/POSIX/execv.al
+ perltl/lib/auto/POSIX/execve.al
+ perltl/lib/auto/POSIX/execvp.al
+ perltl/lib/auto/POSIX/exit.al
+ perltl/lib/auto/POSIX/exp.al
+ perltl/lib/auto/POSIX/fabs.al
+ perltl/lib/auto/POSIX/fclose.al
+ perltl/lib/auto/POSIX/fcntl.al
+ perltl/lib/auto/POSIX/fdopen.al
+ perltl/lib/auto/POSIX/feof.al
+ perltl/lib/auto/POSIX/ferror.al
+ perltl/lib/auto/POSIX/fflush.al
+ perltl/lib/auto/POSIX/fgetc.al
+ perltl/lib/auto/POSIX/fgetpos.al
+ perltl/lib/auto/POSIX/fgets.al
+ perltl/lib/auto/POSIX/fileno.al
+ perltl/lib/auto/POSIX/fopen.al
+ perltl/lib/auto/POSIX/fork.al
+ perltl/lib/auto/POSIX/fprintf.al
+ perltl/lib/auto/POSIX/fputc.al
+ perltl/lib/auto/POSIX/fputs.al
+ perltl/lib/auto/POSIX/fread.al
+ perltl/lib/auto/POSIX/free.al
+ perltl/lib/auto/POSIX/freopen.al
+ perltl/lib/auto/POSIX/fscanf.al
+ perltl/lib/auto/POSIX/fseek.al
+ perltl/lib/auto/POSIX/fsetpos.al
+ perltl/lib/auto/POSIX/fstat.al
+ perltl/lib/auto/POSIX/ftell.al
+ perltl/lib/auto/POSIX/fwrite.al
+ perltl/lib/auto/POSIX/getc.al
+ perltl/lib/auto/POSIX/getchar.al
+ perltl/lib/auto/POSIX/getegid.al
+ perltl/lib/auto/POSIX/getenv.al
+ perltl/lib/auto/POSIX/geteuid.al
+ perltl/lib/auto/POSIX/getgid.al
+ perltl/lib/auto/POSIX/getgrgid.al
+ perltl/lib/auto/POSIX/getgrnam.al
+ perltl/lib/auto/POSIX/getgroups.al
+ perltl/lib/auto/POSIX/getlogin.al
+ perltl/lib/auto/POSIX/getpgrp.al
+ perltl/lib/auto/POSIX/getpid.al
+ perltl/lib/auto/POSIX/getppid.al
+ perltl/lib/auto/POSIX/getpwnam.al
+ perltl/lib/auto/POSIX/getpwuid.al
+ perltl/lib/auto/POSIX/gets.al
+ perltl/lib/auto/POSIX/getuid.al
+ perltl/lib/auto/POSIX/gmtime.al
+ perltl/lib/auto/POSIX/isatty.al
+ perltl/lib/auto/POSIX/kill.al
+ perltl/lib/auto/POSIX/labs.al
+ perltl/lib/auto/POSIX/ldiv.al
+ perltl/lib/auto/POSIX/link.al
+ perltl/lib/auto/POSIX/load_imports.al
+ perltl/lib/auto/POSIX/localtime.al
+ perltl/lib/auto/POSIX/log.al
+ perltl/lib/auto/POSIX/longjmp.al
+ perltl/lib/auto/POSIX/malloc.al
+ perltl/lib/auto/POSIX/memchr.al
+ perltl/lib/auto/POSIX/memcmp.al
+ perltl/lib/auto/POSIX/memcpy.al
+ perltl/lib/auto/POSIX/memmove.al
+ perltl/lib/auto/POSIX/memset.al
+ perltl/lib/auto/POSIX/mkdir.al
+ perltl/lib/auto/POSIX/offsetof.al
+ perltl/lib/auto/POSIX/opendir.al
+ perltl/lib/auto/POSIX/perror.al
+ perltl/lib/auto/POSIX/pow.al
+ perltl/lib/auto/POSIX/printf.al
+ perltl/lib/auto/POSIX/putc.al
+ perltl/lib/auto/POSIX/putchar.al
+ perltl/lib/auto/POSIX/puts.al
+ perltl/lib/auto/POSIX/qsort.al
+ perltl/lib/auto/POSIX/raise.al
+ perltl/lib/auto/POSIX/rand.al
+ perltl/lib/auto/POSIX/readdir.al
+ perltl/lib/auto/POSIX/realloc.al
+ perltl/lib/auto/POSIX/redef.al
+ perltl/lib/auto/POSIX/remove.al
+ perltl/lib/auto/POSIX/rename.al
+ perltl/lib/auto/POSIX/rewind.al
+ perltl/lib/auto/POSIX/rewinddir.al
+ perltl/lib/auto/POSIX/rmdir.al
+ perltl/lib/auto/POSIX/scanf.al
+ perltl/lib/auto/POSIX/setbuf.al
+ perltl/lib/auto/POSIX/setjmp.al
+ perltl/lib/auto/POSIX/setvbuf.al
+ perltl/lib/auto/POSIX/siglongjmp.al
+ perltl/lib/auto/POSIX/sigsetjmp.al
+ perltl/lib/auto/POSIX/sin.al
+ perltl/lib/auto/POSIX/sleep.al
+ perltl/lib/auto/POSIX/sprintf.al
+ perltl/lib/auto/POSIX/sqrt.al
+ perltl/lib/auto/POSIX/srand.al
+ perltl/lib/auto/POSIX/sscanf.al
+ perltl/lib/auto/POSIX/stat.al
+ perltl/lib/auto/POSIX/strcat.al
+ perltl/lib/auto/POSIX/strchr.al
+ perltl/lib/auto/POSIX/strcmp.al
+ perltl/lib/auto/POSIX/strcpy.al
+ perltl/lib/auto/POSIX/strcspn.al
+ perltl/lib/auto/POSIX/strerror.al
+ perltl/lib/auto/POSIX/strlen.al
+ perltl/lib/auto/POSIX/strncat.al
+ perltl/lib/auto/POSIX/strncmp.al
+ perltl/lib/auto/POSIX/strncpy.al
+ perltl/lib/auto/POSIX/strpbrk.al
+ perltl/lib/auto/POSIX/strrchr.al
+ perltl/lib/auto/POSIX/strspn.al
+ perltl/lib/auto/POSIX/strstr.al
+ perltl/lib/auto/POSIX/strtok.al
+ perltl/lib/auto/POSIX/system.al
+ perltl/lib/auto/POSIX/time.al
+ perltl/lib/auto/POSIX/tmpfile.al
+ perltl/lib/auto/POSIX/tolower.al
+ perltl/lib/auto/POSIX/toupper.al
+ perltl/lib/auto/POSIX/umask.al
+ perltl/lib/auto/POSIX/ungetc.al
+ perltl/lib/auto/POSIX/unimpl.al
+ perltl/lib/auto/POSIX/unlink.al
+ perltl/lib/auto/POSIX/usage.al
+ perltl/lib/auto/POSIX/utime.al
+ perltl/lib/auto/POSIX/vfprintf.al
+ perltl/lib/auto/POSIX/vprintf.al
+ perltl/lib/auto/POSIX/vsprintf.al
+ perltl/lib/auto/POSIX/wait.al
+ perltl/lib/auto/POSIX/waitpid.al
+ perltl/lib/auto/SDBM_File/SDBM_File.dll
+ perltl/lib/auto/Time/HiRes/HiRes.dll
+ perltl/lib/auto/re/re.dll
+ perltl/lib/base.pm
+ perltl/lib/bytes.pm
+ perltl/lib/bytes_heavy.pl
+ perltl/lib/constant.pm
+ perltl/lib/fields.pm
+ perltl/lib/integer.pm
+ perltl/lib/lib.pm
+ perltl/lib/newgetopt.pl
+ perltl/lib/overload.pm
+ perltl/lib/re.pm
+ perltl/lib/strict.pm
+ perltl/lib/subs.pm
+ perltl/lib/unicore/ArabLink.pl
+ perltl/lib/unicore/ArabLnkGrp.pl
+ perltl/lib/unicore/Bidirectional.pl
+ perltl/lib/unicore/Blocks.pl
+ perltl/lib/unicore/Canonical.pl
+ perltl/lib/unicore/Category.pl
+ perltl/lib/unicore/CombiningClass.pl
+ perltl/lib/unicore/Decomposition.pl
+ perltl/lib/unicore/Exact.pl
+ perltl/lib/unicore/JamoShort.pl
+ perltl/lib/unicore/Lbrk.pl
+ perltl/lib/unicore/Name.pl
+ perltl/lib/unicore/Number.pl
+ perltl/lib/unicore/Scripts.pl
+ perltl/lib/unicore/To/Digit.pl
+ perltl/lib/unicore/To/Fold.pl
+ perltl/lib/unicore/To/Lower.pl
+ perltl/lib/unicore/To/Title.pl
+ perltl/lib/unicore/To/Upper.pl
+ perltl/lib/unicore/lib/ASCII.pl
+ perltl/lib/unicore/lib/Alnum.pl
+ perltl/lib/unicore/lib/Alpha.pl
+ perltl/lib/unicore/lib/Alphabet.pl
+ perltl/lib/unicore/lib/Any.pl
+ perltl/lib/unicore/lib/Arabic.pl
+ perltl/lib/unicore/lib/Armenian.pl
+ perltl/lib/unicore/lib/AsciiHex.pl
+ perltl/lib/unicore/lib/Assigned.pl
+ perltl/lib/unicore/lib/Bengali.pl
+ perltl/lib/unicore/lib/BidiAL.pl
+ perltl/lib/unicore/lib/BidiAN.pl
+ perltl/lib/unicore/lib/BidiB.pl
+ perltl/lib/unicore/lib/BidiBN.pl
+ perltl/lib/unicore/lib/BidiCS.pl
+ perltl/lib/unicore/lib/BidiCont.pl
+ perltl/lib/unicore/lib/BidiEN.pl
+ perltl/lib/unicore/lib/BidiES.pl
+ perltl/lib/unicore/lib/BidiET.pl
+ perltl/lib/unicore/lib/BidiL.pl
+ perltl/lib/unicore/lib/BidiLRE.pl
+ perltl/lib/unicore/lib/BidiLRO.pl
+ perltl/lib/unicore/lib/BidiNSM.pl
+ perltl/lib/unicore/lib/BidiON.pl
+ perltl/lib/unicore/lib/BidiPDF.pl
+ perltl/lib/unicore/lib/BidiR.pl
+ perltl/lib/unicore/lib/BidiRLE.pl
+ perltl/lib/unicore/lib/BidiRLO.pl
+ perltl/lib/unicore/lib/BidiS.pl
+ perltl/lib/unicore/lib/BidiWS.pl
+ perltl/lib/unicore/lib/Blank.pl
+ perltl/lib/unicore/lib/Bopomofo.pl
+ perltl/lib/unicore/lib/Buhid.pl
+ perltl/lib/unicore/lib/C.pl
+ perltl/lib/unicore/lib/Canadian.pl
+ perltl/lib/unicore/lib/Canon.pl
+ perltl/lib/unicore/lib/Cc.pl
+ perltl/lib/unicore/lib/Cf.pl
+ perltl/lib/unicore/lib/Cherokee.pl
+ perltl/lib/unicore/lib/Cn.pl
+ perltl/lib/unicore/lib/Cntrl.pl
+ perltl/lib/unicore/lib/Co.pl
+ perltl/lib/unicore/lib/Common.pl
+ perltl/lib/unicore/lib/Compat.pl
+ perltl/lib/unicore/lib/Cs.pl
+ perltl/lib/unicore/lib/Cyrillic.pl
+ perltl/lib/unicore/lib/DCcircle.pl
+ perltl/lib/unicore/lib/DCcompat.pl
+ perltl/lib/unicore/lib/DCfinal.pl
+ perltl/lib/unicore/lib/DCfont.pl
+ perltl/lib/unicore/lib/DCfracti.pl
+ perltl/lib/unicore/lib/DCinitia.pl
+ perltl/lib/unicore/lib/DCisolat.pl
+ perltl/lib/unicore/lib/DCmedial.pl
+ perltl/lib/unicore/lib/DCnarrow.pl
+ perltl/lib/unicore/lib/DCnoBrea.pl
+ perltl/lib/unicore/lib/DCsmall.pl
+ perltl/lib/unicore/lib/DCsquare.pl
+ perltl/lib/unicore/lib/DCsub.pl
+ perltl/lib/unicore/lib/DCsuper.pl
+ perltl/lib/unicore/lib/DCvertic.pl
+ perltl/lib/unicore/lib/DCwide.pl
+ perltl/lib/unicore/lib/Dash.pl
+ perltl/lib/unicore/lib/Deprecat.pl
+ perltl/lib/unicore/lib/Deseret.pl
+ perltl/lib/unicore/lib/Devanaga.pl
+ perltl/lib/unicore/lib/Diacriti.pl
+ perltl/lib/unicore/lib/Digit.pl
+ perltl/lib/unicore/lib/Ethiopic.pl
+ perltl/lib/unicore/lib/Extender.pl
+ perltl/lib/unicore/lib/Georgian.pl
+ perltl/lib/unicore/lib/Gothic.pl
+ perltl/lib/unicore/lib/Graph.pl
+ perltl/lib/unicore/lib/Grapheme.pl
+ perltl/lib/unicore/lib/Greek.pl
+ perltl/lib/unicore/lib/Gujarati.pl
+ perltl/lib/unicore/lib/Gurmukhi.pl
+ perltl/lib/unicore/lib/Han.pl
+ perltl/lib/unicore/lib/Hangul.pl
+ perltl/lib/unicore/lib/Hanunoo.pl
+ perltl/lib/unicore/lib/Hebrew.pl
+ perltl/lib/unicore/lib/HexDigit.pl
+ perltl/lib/unicore/lib/Hiragana.pl
+ perltl/lib/unicore/lib/Hyphen.pl
+ perltl/lib/unicore/lib/IdContin.pl
+ perltl/lib/unicore/lib/IdStart.pl
+ perltl/lib/unicore/lib/Ideograp.pl
+ perltl/lib/unicore/lib/IdsBinar.pl
+ perltl/lib/unicore/lib/IdsTrina.pl
+ perltl/lib/unicore/lib/InAlphab.pl
+ perltl/lib/unicore/lib/InArabi2.pl
+ perltl/lib/unicore/lib/InArabi3.pl
+ perltl/lib/unicore/lib/InArabic.pl
+ perltl/lib/unicore/lib/InArmeni.pl
+ perltl/lib/unicore/lib/InArrows.pl
+ perltl/lib/unicore/lib/InBasicL.pl
+ perltl/lib/unicore/lib/InBengal.pl
+ perltl/lib/unicore/lib/InBlockE.pl
+ perltl/lib/unicore/lib/InBopom2.pl
+ perltl/lib/unicore/lib/InBopomo.pl
+ perltl/lib/unicore/lib/InBoxDra.pl
+ perltl/lib/unicore/lib/InBraill.pl
+ perltl/lib/unicore/lib/InBuhid.pl
+ perltl/lib/unicore/lib/InByzant.pl
+ perltl/lib/unicore/lib/InCherok.pl
+ perltl/lib/unicore/lib/InCjkCo2.pl
+ perltl/lib/unicore/lib/InCjkCo3.pl
+ perltl/lib/unicore/lib/InCjkCo4.pl
+ perltl/lib/unicore/lib/InCjkCom.pl
+ perltl/lib/unicore/lib/InCjkRad.pl
+ perltl/lib/unicore/lib/InCjkSym.pl
+ perltl/lib/unicore/lib/InCjkUn2.pl
+ perltl/lib/unicore/lib/InCjkUn3.pl
+ perltl/lib/unicore/lib/InCjkUni.pl
+ perltl/lib/unicore/lib/InCombi2.pl
+ perltl/lib/unicore/lib/InCombi3.pl
+ perltl/lib/unicore/lib/InCombin.pl
+ perltl/lib/unicore/lib/InContro.pl
+ perltl/lib/unicore/lib/InCurren.pl
+ perltl/lib/unicore/lib/InCyril2.pl
+ perltl/lib/unicore/lib/InCyrill.pl
+ perltl/lib/unicore/lib/InDesere.pl
+ perltl/lib/unicore/lib/InDevana.pl
+ perltl/lib/unicore/lib/InDingba.pl
+ perltl/lib/unicore/lib/InEnclo2.pl
+ perltl/lib/unicore/lib/InEnclos.pl
+ perltl/lib/unicore/lib/InEthiop.pl
+ perltl/lib/unicore/lib/InGenera.pl
+ perltl/lib/unicore/lib/InGeomet.pl
+ perltl/lib/unicore/lib/InGeorgi.pl
+ perltl/lib/unicore/lib/InGothic.pl
+ perltl/lib/unicore/lib/InGreek.pl
+ perltl/lib/unicore/lib/InGreekA.pl
+ perltl/lib/unicore/lib/InGreekE.pl
+ perltl/lib/unicore/lib/InGujara.pl
+ perltl/lib/unicore/lib/InGurmuk.pl
+ perltl/lib/unicore/lib/InHalfwi.pl
+ perltl/lib/unicore/lib/InHangu2.pl
+ perltl/lib/unicore/lib/InHangu3.pl
+ perltl/lib/unicore/lib/InHangul.pl
+ perltl/lib/unicore/lib/InHanuno.pl
+ perltl/lib/unicore/lib/InHebrew.pl
+ perltl/lib/unicore/lib/InHighPr.pl
+ perltl/lib/unicore/lib/InHighSu.pl
+ perltl/lib/unicore/lib/InHiraga.pl
+ perltl/lib/unicore/lib/InIdeogr.pl
+ perltl/lib/unicore/lib/InIpaExt.pl
+ perltl/lib/unicore/lib/InKanbun.pl
+ perltl/lib/unicore/lib/InKangxi.pl
+ perltl/lib/unicore/lib/InKannad.pl
+ perltl/lib/unicore/lib/InKatak2.pl
+ perltl/lib/unicore/lib/InKataka.pl
+ perltl/lib/unicore/lib/InKhmer.pl
+ perltl/lib/unicore/lib/InLao.pl
+ perltl/lib/unicore/lib/InLatin1.pl
+ perltl/lib/unicore/lib/InLatin2.pl
+ perltl/lib/unicore/lib/InLatin3.pl
+ perltl/lib/unicore/lib/InLatinE.pl
+ perltl/lib/unicore/lib/InLetter.pl
+ perltl/lib/unicore/lib/InLowSur.pl
+ perltl/lib/unicore/lib/InMalaya.pl
+ perltl/lib/unicore/lib/InMathe2.pl
+ perltl/lib/unicore/lib/InMathem.pl
+ perltl/lib/unicore/lib/InMisce2.pl
+ perltl/lib/unicore/lib/InMisce3.pl
+ perltl/lib/unicore/lib/InMisce4.pl
+ perltl/lib/unicore/lib/InMiscel.pl
+ perltl/lib/unicore/lib/InMongol.pl
+ perltl/lib/unicore/lib/InMusica.pl
+ perltl/lib/unicore/lib/InMyanma.pl
+ perltl/lib/unicore/lib/InNumber.pl
+ perltl/lib/unicore/lib/InOgham.pl
+ perltl/lib/unicore/lib/InOldIta.pl
+ perltl/lib/unicore/lib/InOptica.pl
+ perltl/lib/unicore/lib/InOriya.pl
+ perltl/lib/unicore/lib/InPrivat.pl
+ perltl/lib/unicore/lib/InRunic.pl
+ perltl/lib/unicore/lib/InSinhal.pl
+ perltl/lib/unicore/lib/InSmallF.pl
+ perltl/lib/unicore/lib/InSpacin.pl
+ perltl/lib/unicore/lib/InSpecia.pl
+ perltl/lib/unicore/lib/InSupers.pl
+ perltl/lib/unicore/lib/InSuppl2.pl
+ perltl/lib/unicore/lib/InSuppl3.pl
+ perltl/lib/unicore/lib/InSuppl4.pl
+ perltl/lib/unicore/lib/InSuppl5.pl
+ perltl/lib/unicore/lib/InSupple.pl
+ perltl/lib/unicore/lib/InSyriac.pl
+ perltl/lib/unicore/lib/InTagalo.pl
+ perltl/lib/unicore/lib/InTagban.pl
+ perltl/lib/unicore/lib/InTags.pl
+ perltl/lib/unicore/lib/InTamil.pl
+ perltl/lib/unicore/lib/InTelugu.pl
+ perltl/lib/unicore/lib/InThaana.pl
+ perltl/lib/unicore/lib/InThai.pl
+ perltl/lib/unicore/lib/InTibeta.pl
+ perltl/lib/unicore/lib/InUnifie.pl
+ perltl/lib/unicore/lib/InVariat.pl
+ perltl/lib/unicore/lib/InYiRadi.pl
+ perltl/lib/unicore/lib/InYiSyll.pl
+ perltl/lib/unicore/lib/Inherite.pl
+ perltl/lib/unicore/lib/JoinCont.pl
+ perltl/lib/unicore/lib/Kannada.pl
+ perltl/lib/unicore/lib/Katakana.pl
+ perltl/lib/unicore/lib/Khmer.pl
+ perltl/lib/unicore/lib/L.pl
+ perltl/lib/unicore/lib/L_.pl
+ perltl/lib/unicore/lib/Lao.pl
+ perltl/lib/unicore/lib/Latin.pl
+ perltl/lib/unicore/lib/Ll.pl
+ perltl/lib/unicore/lib/Lm.pl
+ perltl/lib/unicore/lib/Lo.pl
+ perltl/lib/unicore/lib/LogicalO.pl
+ perltl/lib/unicore/lib/Lower.pl
+ perltl/lib/unicore/lib/Lowercas.pl
+ perltl/lib/unicore/lib/Lt.pl
+ perltl/lib/unicore/lib/Lu.pl
+ perltl/lib/unicore/lib/M.pl
+ perltl/lib/unicore/lib/Malayala.pl
+ perltl/lib/unicore/lib/Math.pl
+ perltl/lib/unicore/lib/Mc.pl
+ perltl/lib/unicore/lib/Me.pl
+ perltl/lib/unicore/lib/Mirrored.pl
+ perltl/lib/unicore/lib/Mn.pl
+ perltl/lib/unicore/lib/Mongolia.pl
+ perltl/lib/unicore/lib/Myanmar.pl
+ perltl/lib/unicore/lib/N.pl
+ perltl/lib/unicore/lib/Nd.pl
+ perltl/lib/unicore/lib/Nl.pl
+ perltl/lib/unicore/lib/No.pl
+ perltl/lib/unicore/lib/Nonchara.pl
+ perltl/lib/unicore/lib/Ogham.pl
+ perltl/lib/unicore/lib/OldItali.pl
+ perltl/lib/unicore/lib/Oriya.pl
+ perltl/lib/unicore/lib/OtherAlp.pl
+ perltl/lib/unicore/lib/OtherDef.pl
+ perltl/lib/unicore/lib/OtherGra.pl
+ perltl/lib/unicore/lib/OtherLow.pl
+ perltl/lib/unicore/lib/OtherMat.pl
+ perltl/lib/unicore/lib/OtherUpp.pl
+ perltl/lib/unicore/lib/P.pl
+ perltl/lib/unicore/lib/Pc.pl
+ perltl/lib/unicore/lib/Pd.pl
+ perltl/lib/unicore/lib/Pe.pl
+ perltl/lib/unicore/lib/Pf.pl
+ perltl/lib/unicore/lib/Pi.pl
+ perltl/lib/unicore/lib/Po.pl
+ perltl/lib/unicore/lib/Print.pl
+ perltl/lib/unicore/lib/Ps.pl
+ perltl/lib/unicore/lib/Punct.pl
+ perltl/lib/unicore/lib/Quotatio.pl
+ perltl/lib/unicore/lib/Radical.pl
+ perltl/lib/unicore/lib/Runic.pl
+ perltl/lib/unicore/lib/S.pl
+ perltl/lib/unicore/lib/Sc.pl
+ perltl/lib/unicore/lib/Sinhala.pl
+ perltl/lib/unicore/lib/Sk.pl
+ perltl/lib/unicore/lib/Sm.pl
+ perltl/lib/unicore/lib/So.pl
+ perltl/lib/unicore/lib/SoftDott.pl
+ perltl/lib/unicore/lib/Space.pl
+ perltl/lib/unicore/lib/SpacePer.pl
+ perltl/lib/unicore/lib/Syriac.pl
+ perltl/lib/unicore/lib/Tagalog.pl
+ perltl/lib/unicore/lib/Tagbanwa.pl
+ perltl/lib/unicore/lib/Tamil.pl
+ perltl/lib/unicore/lib/Telugu.pl
+ perltl/lib/unicore/lib/Terminal.pl
+ perltl/lib/unicore/lib/Thaana.pl
+ perltl/lib/unicore/lib/Thai.pl
+ perltl/lib/unicore/lib/Tibetan.pl
+ perltl/lib/unicore/lib/Title.pl
+ perltl/lib/unicore/lib/UnifiedI.pl
+ perltl/lib/unicore/lib/Upper.pl
+ perltl/lib/unicore/lib/Uppercas.pl
+ perltl/lib/unicore/lib/WhiteSpa.pl
+ perltl/lib/unicore/lib/Word.pl
+ perltl/lib/unicore/lib/XDigit.pl
+ perltl/lib/unicore/lib/Yi.pl
+ perltl/lib/unicore/lib/Z.pl
+ perltl/lib/unicore/lib/Zl.pl
+ perltl/lib/unicore/lib/Zp.pl
+ perltl/lib/unicore/lib/Zs.pl
+ perltl/lib/unicore/lib/_CanonDC.pl
+ perltl/lib/unicore/lib/_CaseIgn.pl
+ perltl/lib/unicore/lib/_CombAbo.pl
+ perltl/lib/utf8.pm
+ perltl/lib/utf8_heavy.pl
+ perltl/lib/vars.pm
+ perltl/lib/warnings.pm
+ perltl/lib/warnings/register.pm
+ perltl/site/lib/Tk.pm
+ perltl/site/lib/Tk/Adjuster.pm
+ perltl/site/lib/Tk/After.pm
+ perltl/site/lib/Tk/Bitmap.pm
+ perltl/site/lib/Tk/Button.pm
+ perltl/site/lib/Tk/Camel.xpm
+ perltl/site/lib/Tk/Canvas.pm
+ perltl/site/lib/Tk/Checkbutton.pm
+ perltl/site/lib/Tk/Clipboard.pm
+ perltl/site/lib/Tk/CmdLine.pm
+ perltl/site/lib/Tk/ColorEdit.xpm
+ perltl/site/lib/Tk/ColorEditor.pm
+ perltl/site/lib/Tk/Config.pm
+ perltl/site/lib/Tk/Configure.pm
+ perltl/site/lib/Tk/Derived.pm
+ perltl/site/lib/Tk/Dialog.pm
+ perltl/site/lib/Tk/DialogBox.pm
+ perltl/site/lib/Tk/Entry.pm
+ perltl/site/lib/Tk/Event.pm
+ perltl/site/lib/Tk/Event/IO.pm
+ perltl/site/lib/Tk/FBox.pm
+ perltl/site/lib/Tk/Frame.pm
+ perltl/site/lib/Tk/IconList.pm
+ perltl/site/lib/Tk/Image.pm
+ perltl/site/lib/Tk/Label.pm
+ perltl/site/lib/Tk/Listbox.pm
+ perltl/site/lib/Tk/MainWindow.pm
+ perltl/site/lib/Tk/Menu.pm
+ perltl/site/lib/Tk/Menu/Item.pm
+ perltl/site/lib/Tk/Menubutton.pm
+ perltl/site/lib/Tk/Optionmenu.pm
+ perltl/site/lib/Tk/Pixmap.pm
+ perltl/site/lib/Tk/Pretty.pm
+ perltl/site/lib/Tk/ROText.pm
+ perltl/site/lib/Tk/Radiobutton.pm
+ perltl/site/lib/Tk/Scale.pm
+ perltl/site/lib/Tk/Scrollbar.pm
+ perltl/site/lib/Tk/Submethods.pm
+ perltl/site/lib/Tk/Text.pm
+ perltl/site/lib/Tk/Text/Tag.pm
+ perltl/site/lib/Tk/Tk.xbm
+ perltl/site/lib/Tk/Tk.xpm
+ perltl/site/lib/Tk/Toplevel.pm
+ perltl/site/lib/Tk/Widget.pm
+ perltl/site/lib/Tk/Wm.pm
+ perltl/site/lib/Tk/X.pm
+ perltl/site/lib/Tk/X11/license.terms
+ perltl/site/lib/Tk/Xcamel.gif
+ perltl/site/lib/Tk/act_folder.xbm
+ perltl/site/lib/Tk/act_folder.xpm
+ perltl/site/lib/Tk/anim.gif
+ perltl/site/lib/Tk/balArrow.xbm
+ perltl/site/lib/Tk/cbxarrow.xbm
+ perltl/site/lib/Tk/file.xbm
+ perltl/site/lib/Tk/file.xpm
+ perltl/site/lib/Tk/folder.xbm
+ perltl/site/lib/Tk/folder.xpm
+ perltl/site/lib/Tk/icon.gif
+ perltl/site/lib/Tk/license.terms
+ perltl/site/lib/Tk/openfile.xbm
+ perltl/site/lib/Tk/openfolder.xbm
+ perltl/site/lib/Tk/openfolder.xpm
+ perltl/site/lib/Tk/prolog.ps
+ perltl/site/lib/Tk/srcfile.xpm
+ perltl/site/lib/Tk/textfile.xpm
+ perltl/site/lib/Tk/tranicon.gif
+ perltl/site/lib/Tk/widgets.pm
+ perltl/site/lib/Tk/win.xbm
+ perltl/site/lib/Tk/winfolder.xpm
+ perltl/site/lib/Tk/wintext.xpm
+ perltl/site/lib/Win32/API.pm
+ perltl/site/lib/Win32/API/Struct.pm
+ perltl/site/lib/Win32/API/Type.pm
+ perltl/site/lib/XML/Parser.pm
+ perltl/site/lib/XML/Parser/Expat.pm
+ perltl/site/lib/auto/Tk/Bitmap/Bitmap.dll
+ perltl/site/lib/auto/Tk/CancelRepeat.al
+ perltl/site/lib/auto/Tk/Canvas/Canvas.dll
+ perltl/site/lib/auto/Tk/Clipboard/autosplit.ix
+ perltl/site/lib/auto/Tk/Clipboard/getSelected.al
+ perltl/site/lib/auto/Tk/EnterFocus.al
+ perltl/site/lib/auto/Tk/Entry/Entry.dll
+ perltl/site/lib/auto/Tk/Error.al
+ perltl/site/lib/auto/Tk/Event/Event.dll
+ perltl/site/lib/auto/Tk/FirstMenu.al
+ perltl/site/lib/auto/Tk/FocusChildren.al
+ perltl/site/lib/auto/Tk/FocusOK.al
+ perltl/site/lib/auto/Tk/Frame/AddScrollbars.al
+ perltl/site/lib/auto/Tk/Frame/FindMenu.al
+ perltl/site/lib/auto/Tk/Frame/autosplit.ix
+ perltl/site/lib/auto/Tk/Frame/freeze_on_map.al
+ perltl/site/lib/auto/Tk/Frame/label.al
+ perltl/site/lib/auto/Tk/Frame/labelPack.al
+ perltl/site/lib/auto/Tk/Frame/labelVariable.al
+ perltl/site/lib/auto/Tk/Frame/packscrollbars.al
+ perltl/site/lib/auto/Tk/Frame/queuePack.al
+ perltl/site/lib/auto/Tk/Frame/sbset.al
+ perltl/site/lib/auto/Tk/Frame/scrollbars.al
+ perltl/site/lib/auto/Tk/ImageNames.al
+ perltl/site/lib/auto/Tk/ImageTypes.al
+ perltl/site/lib/auto/Tk/Listbox/AutoScan.al
+ perltl/site/lib/auto/Tk/Listbox/BeginExtend.al
+ perltl/site/lib/auto/Tk/Listbox/BeginSelect.al
+ perltl/site/lib/auto/Tk/Listbox/BeginToggle.al
+ perltl/site/lib/auto/Tk/Listbox/ButtonRelease_1.al
+ perltl/site/lib/auto/Tk/Listbox/Cancel.al
+ perltl/site/lib/auto/Tk/Listbox/Cntrl_End.al
+ perltl/site/lib/auto/Tk/Listbox/Cntrl_Home.al
+ perltl/site/lib/auto/Tk/Listbox/Cntrl_backslash.al
+ perltl/site/lib/auto/Tk/Listbox/DataExtend.al
+ perltl/site/lib/auto/Tk/Listbox/ExtendUpDown.al
+ perltl/site/lib/auto/Tk/Listbox/Listbox.dll
+ perltl/site/lib/auto/Tk/Listbox/Motion.al
+ perltl/site/lib/auto/Tk/Listbox/SelectAll.al
+ perltl/site/lib/auto/Tk/Listbox/SetList.al
+ perltl/site/lib/auto/Tk/Listbox/UpDown.al
+ perltl/site/lib/auto/Tk/Listbox/autosplit.ix
+ perltl/site/lib/auto/Tk/Listbox/clipboardPaste.al
+ perltl/site/lib/auto/Tk/Listbox/deleteSelected.al
+ perltl/site/lib/auto/Tk/Listbox/getSelected.al
+ perltl/site/lib/auto/Tk/Listbox/xyIndex.al
+ perltl/site/lib/auto/Tk/Menubutton/Menubutton.dll
+ perltl/site/lib/auto/Tk/Pixmap/Pixmap.dll
+ perltl/site/lib/auto/Tk/Receive.al
+ perltl/site/lib/auto/Tk/RepeatId.al
+ perltl/site/lib/auto/Tk/Scale/Activate.al
+ perltl/site/lib/auto/Tk/Scale/ButtonDown.al
+ perltl/site/lib/auto/Tk/Scale/ButtonUp.al
+ perltl/site/lib/auto/Tk/Scale/ControlPress.al
+ perltl/site/lib/auto/Tk/Scale/Drag.al
+ perltl/site/lib/auto/Tk/Scale/EndDrag.al
+ perltl/site/lib/auto/Tk/Scale/Enter.al
+ perltl/site/lib/auto/Tk/Scale/Increment.al
+ perltl/site/lib/auto/Tk/Scale/Leave.al
+ perltl/site/lib/auto/Tk/Scale/Scale.dll
+ perltl/site/lib/auto/Tk/Scale/autosplit.ix
+ perltl/site/lib/auto/Tk/Scrollbar/ButtonDown.al
+ perltl/site/lib/auto/Tk/Scrollbar/ButtonUp.al
+ perltl/site/lib/auto/Tk/Scrollbar/Drag.al
+ perltl/site/lib/auto/Tk/Scrollbar/EndDrag.al
+ perltl/site/lib/auto/Tk/Scrollbar/Enter.al
+ perltl/site/lib/auto/Tk/Scrollbar/Leave.al
+ perltl/site/lib/auto/Tk/Scrollbar/Motion.al
+ perltl/site/lib/auto/Tk/Scrollbar/ScrlByPages.al
+ perltl/site/lib/auto/Tk/Scrollbar/ScrlByUnits.al
+ perltl/site/lib/auto/Tk/Scrollbar/ScrlToPos.al
+ perltl/site/lib/auto/Tk/Scrollbar/ScrlTopBottom.al
+ perltl/site/lib/auto/Tk/Scrollbar/Scrollbar.dll
+ perltl/site/lib/auto/Tk/Scrollbar/Select.al
+ perltl/site/lib/auto/Tk/Scrollbar/StartDrag.al
+ perltl/site/lib/auto/Tk/Scrollbar/autosplit.ix
+ perltl/site/lib/auto/Tk/Selection.al
+ perltl/site/lib/auto/Tk/Text/Text.dll
+ perltl/site/lib/auto/Tk/Text/autosplit.ix
+ perltl/site/lib/auto/Tk/Tk.dll
+ perltl/site/lib/auto/Tk/Toplevel/FG_BindIn.al
+ perltl/site/lib/auto/Tk/Toplevel/FG_BindOut.al
+ perltl/site/lib/auto/Tk/Toplevel/FG_Create.al
+ perltl/site/lib/auto/Tk/Toplevel/FG_Destroy.al
+ perltl/site/lib/auto/Tk/Toplevel/FG_In.al
+ perltl/site/lib/auto/Tk/Toplevel/FG_Out.al
+ perltl/site/lib/auto/Tk/Toplevel/autosplit.ix
+ perltl/site/lib/auto/Tk/TraverseToMenu.al
+ perltl/site/lib/auto/Tk/Widget/ASkludge.al
+ perltl/site/lib/auto/Tk/Widget/autosplit.ix
+ perltl/site/lib/auto/Tk/Widget/clipboardKeysyms.al
+ perltl/site/lib/auto/Tk/Widget/pathname.al
+ perltl/site/lib/auto/Tk/Wm/AnchorAdjust.al
+ perltl/site/lib/auto/Tk/Wm/FullScreen.al
+ perltl/site/lib/auto/Tk/Wm/Popup.al
+ perltl/site/lib/auto/Tk/Wm/Post.al
+ perltl/site/lib/auto/Tk/Wm/autosplit.ix
+ perltl/site/lib/auto/Tk/Wm/iconposition.al
+ perltl/site/lib/auto/Tk/X/X.dll
+ perltl/site/lib/auto/Tk/X/autosplit.ix
+ perltl/site/lib/auto/Tk/autosplit.ix
+ perltl/site/lib/auto/Tk/break.al
+ perltl/site/lib/auto/Tk/focusFollowsMouse.al
+ perltl/site/lib/auto/Tk/focusNext.al
+ perltl/site/lib/auto/Tk/focusPrev.al
+ perltl/site/lib/auto/Tk/interps.al
+ perltl/site/lib/auto/Tk/lsearch.al
+ perltl/site/lib/auto/Tk/tabFocus.al
+ perltl/site/lib/auto/Tk/updateWidgets.al
+ perltl/site/lib/auto/Win32/API/API.dll
+ perltl/site/lib/auto/XML/Parser/Expat/Expat.dll
+binfiles arch=win32 size=1633792
+ bin/win32/perl.exe
+ bin/win32/perl58.dll
+ bin/win32/tk83.dll
+
+name bin-perltex
+category TLCore
+revision 5402
+binfiles arch=i386-openbsd size=11650
+ bin/i386-openbsd/perltex
+binfiles arch=i386-solaris size=11650
+ bin/i386-solaris/perltex
+binfiles arch=i386-linux size=14147
+ bin/i386-linux/perltex
+binfiles arch=hppa-hpux size=11650
+ bin/hppa-hpux/perltex
+binfiles arch=mips-irix size=11650
+ bin/mips-irix/perltex
+binfiles arch=alpha-linux size=11650
+ bin/alpha-linux/perltex
+binfiles arch=sparc-linux size=11650
+ bin/sparc-linux/perltex
+binfiles arch=sparc-solaris size=11650
+ bin/sparc-solaris/perltex
+binfiles arch=i386-freebsd size=11650
+ bin/i386-freebsd/perltex
+binfiles arch=win32 size=11666
+ bin/win32/perltex.bat
+binfiles arch=i386-darwin size=11650
+ bin/i386-darwin/perltex
+binfiles arch=powerpc-linux size=11650
+ bin/powerpc-linux/perltex
+binfiles arch=powerpc-aix size=11650
+ bin/powerpc-aix/perltex
+binfiles arch=powerpc-darwin size=11650
+ bin/powerpc-darwin/perltex
+binfiles arch=x86_64-linux size=11650
+ bin/x86_64-linux/perltex
+
+name bin-physe
+category TLCore
+revision 5403
+depend bin-tex
+execute BuildFormat physe
+runfiles size=49
+ texmf/fmtutil/format.physe.cnf
+binfiles arch=i386-openbsd size=6
+ bin/i386-openbsd/physe
+binfiles arch=i386-solaris size=6
+ bin/i386-solaris/physe
+binfiles arch=i386-linux size=6
+ bin/i386-linux/physe
+binfiles arch=hppa-hpux size=6
+ bin/hppa-hpux/physe
+binfiles arch=mips-irix size=6
+ bin/mips-irix/physe
+binfiles arch=alpha-linux size=6
+ bin/alpha-linux/physe
+binfiles arch=sparc-linux size=6
+ bin/sparc-linux/physe
+binfiles arch=sparc-solaris size=6
+ bin/sparc-solaris/physe
+binfiles arch=i386-freebsd size=6
+ bin/i386-freebsd/physe
+binfiles arch=win32 size=2560
+ bin/win32/physe.exe
+binfiles arch=i386-darwin size=6
+ bin/i386-darwin/physe
+binfiles arch=powerpc-linux size=6
+ bin/powerpc-linux/physe
+binfiles arch=powerpc-aix size=6
+ bin/powerpc-aix/physe
+binfiles arch=powerpc-darwin size=6
+ bin/powerpc-darwin/physe
+binfiles arch=x86_64-linux size=6
+ bin/x86_64-linux/physe
+
+name bin-phyzzx
+category TLCore
+revision 5403
+depend bin-tex
+execute BuildFormat phyzzx
+runfiles size=49
+ texmf/fmtutil/format.phyzzx.cnf
+binfiles arch=i386-openbsd size=6
+ bin/i386-openbsd/phyzzx
+binfiles arch=i386-solaris size=6
+ bin/i386-solaris/phyzzx
+binfiles arch=i386-linux size=6
+ bin/i386-linux/phyzzx
+binfiles arch=hppa-hpux size=6
+ bin/hppa-hpux/phyzzx
+binfiles arch=mips-irix size=6
+ bin/mips-irix/phyzzx
+binfiles arch=alpha-linux size=6
+ bin/alpha-linux/phyzzx
+binfiles arch=sparc-linux size=6
+ bin/sparc-linux/phyzzx
+binfiles arch=sparc-solaris size=6
+ bin/sparc-solaris/phyzzx
+binfiles arch=i386-freebsd size=6
+ bin/i386-freebsd/phyzzx
+binfiles arch=win32 size=2560
+ bin/win32/phyzzx.exe
+binfiles arch=i386-darwin size=6
+ bin/i386-darwin/phyzzx
+binfiles arch=powerpc-linux size=6
+ bin/powerpc-linux/phyzzx
+binfiles arch=powerpc-aix size=6
+ bin/powerpc-aix/phyzzx
+binfiles arch=powerpc-darwin size=6
+ bin/powerpc-darwin/phyzzx
+binfiles arch=x86_64-linux size=6
+ bin/x86_64-linux/phyzzx
+
+name bin-pngtools
+category TLCore
+revision 5403
+binfiles arch=win32 size=249344
+ bin/win32/bmp2png.exe
+ bin/win32/png22pnm.exe
+ bin/win32/png2bmp.exe
+
+name bin-ppower4
+category TLCore
+revision 5403
+binfiles arch=i386-openbsd size=1846
+ bin/i386-openbsd/pdfthumb
+ bin/i386-openbsd/ppower4
+binfiles arch=i386-solaris size=1846
+ bin/i386-solaris/pdfthumb
+ bin/i386-solaris/ppower4
+binfiles arch=i386-linux size=1846
+ bin/i386-linux/pdfthumb
+ bin/i386-linux/ppower4
+binfiles arch=hppa-hpux size=1846
+ bin/hppa-hpux/pdfthumb
+ bin/hppa-hpux/ppower4
+binfiles arch=mips-irix size=1846
+ bin/mips-irix/pdfthumb
+ bin/mips-irix/ppower4
+binfiles arch=alpha-linux size=1846
+ bin/alpha-linux/pdfthumb
+ bin/alpha-linux/ppower4
+binfiles arch=sparc-linux size=1846
+ bin/sparc-linux/pdfthumb
+ bin/sparc-linux/ppower4
+binfiles arch=sparc-solaris size=1846
+ bin/sparc-solaris/pdfthumb
+ bin/sparc-solaris/ppower4
+binfiles arch=i386-freebsd size=1846
+ bin/i386-freebsd/pdfthumb
+ bin/i386-freebsd/ppower4
+binfiles arch=win32 size=14336
+ bin/win32/pdfthumb.exe
+ bin/win32/ppower4.exe
+binfiles arch=i386-darwin size=1846
+ bin/i386-darwin/pdfthumb
+ bin/i386-darwin/ppower4
+binfiles arch=powerpc-linux size=1846
+ bin/powerpc-linux/pdfthumb
+ bin/powerpc-linux/ppower4
+binfiles arch=powerpc-aix size=1846
+ bin/powerpc-aix/pdfthumb
+ bin/powerpc-aix/ppower4
+binfiles arch=powerpc-darwin size=1846
+ bin/powerpc-darwin/pdfthumb
+ bin/powerpc-darwin/ppower4
+binfiles arch=x86_64-linux size=1846
+ bin/x86_64-linux/pdfthumb
+ bin/x86_64-linux/ppower4
+
+name bin-ps2pkm
+category TLCore
+revision 5403
+runfiles size=8642
+ texmf/doc/man/man1/mag.1
+ texmf/doc/man/man1/pfb2pfa.1
+ texmf/doc/man/man1/pk2bm.1
+ texmf/doc/man/man1/ps2pk.1
+binfiles arch=i386-openbsd size=181712
+ bin/i386-openbsd/mag
+ bin/i386-openbsd/pfb2pfa
+ bin/i386-openbsd/pk2bm
+ bin/i386-openbsd/ps2pk
+binfiles arch=i386-solaris size=188024
+ bin/i386-solaris/mag
+ bin/i386-solaris/pfb2pfa
+ bin/i386-solaris/pk2bm
+ bin/i386-solaris/ps2pk
+binfiles arch=i386-linux size=172196
+ bin/i386-linux/mag
+ bin/i386-linux/pfb2pfa
+ bin/i386-linux/pk2bm
+ bin/i386-linux/ps2pk
+binfiles arch=hppa-hpux size=300263
+ bin/hppa-hpux/mag
+ bin/hppa-hpux/pfb2pfa
+ bin/hppa-hpux/pk2bm
+ bin/hppa-hpux/ps2pk
+binfiles arch=mips-irix size=335616
+ bin/mips-irix/mag
+ bin/mips-irix/pfb2pfa
+ bin/mips-irix/pk2bm
+ bin/mips-irix/ps2pk
+binfiles arch=alpha-linux size=283568
+ bin/alpha-linux/mag
+ bin/alpha-linux/pfb2pfa
+ bin/alpha-linux/pk2bm
+ bin/alpha-linux/ps2pk
+binfiles arch=sparc-linux size=196132
+ bin/sparc-linux/mag
+ bin/sparc-linux/pfb2pfa
+ bin/sparc-linux/pk2bm
+ bin/sparc-linux/ps2pk
+binfiles arch=sparc-solaris size=331420
+ bin/sparc-solaris/mag
+ bin/sparc-solaris/pfb2pfa
+ bin/sparc-solaris/pk2bm
+ bin/sparc-solaris/ps2pk
+binfiles arch=i386-freebsd size=176372
+ bin/i386-freebsd/mag
+ bin/i386-freebsd/pfb2pfa
+ bin/i386-freebsd/pk2bm
+ bin/i386-freebsd/ps2pk
+binfiles arch=win32 size=154624
+ bin/win32/mag.exe
+ bin/win32/pfb2pfa.exe
+ bin/win32/pk2bm.exe
+ bin/win32/ps2pk.exe
+binfiles arch=i386-darwin size=227564
+ bin/i386-darwin/mag
+ bin/i386-darwin/pfb2pfa
+ bin/i386-darwin/pk2bm
+ bin/i386-darwin/ps2pk
+binfiles arch=powerpc-linux size=206280
+ bin/powerpc-linux/mag
+ bin/powerpc-linux/pfb2pfa
+ bin/powerpc-linux/pk2bm
+ bin/powerpc-linux/ps2pk
+binfiles arch=powerpc-aix size=241550
+ bin/powerpc-aix/mag
+ bin/powerpc-aix/pfb2pfa
+ bin/powerpc-aix/pk2bm
+ bin/powerpc-aix/ps2pk
+binfiles arch=powerpc-darwin size=229716
+ bin/powerpc-darwin/mag
+ bin/powerpc-darwin/pfb2pfa
+ bin/powerpc-darwin/pk2bm
+ bin/powerpc-darwin/ps2pk
+binfiles arch=x86_64-linux size=217200
+ bin/x86_64-linux/mag
+ bin/x86_64-linux/pfb2pfa
+ bin/x86_64-linux/pk2bm
+ bin/x86_64-linux/ps2pk
+
+name bin-pstools
+category TLCore
+revision 5403
+docfiles size=2909
+ texmf/doc/man/man1/ps2frag.1
+ texmf/doc/man/man1/pslatex.1
+runfiles size=32958
+ texmf/scripts/ps2eps/ps2eps.pl
+binfiles arch=i386-openbsd size=45198
+ bin/i386-openbsd/bbox
+ bin/i386-openbsd/ps2eps
+ bin/i386-openbsd/ps2frag
+ bin/i386-openbsd/pslatex
+binfiles arch=i386-solaris size=42462
+ bin/i386-solaris/bbox
+ bin/i386-solaris/ps2eps
+ bin/i386-solaris/ps2frag
+ bin/i386-solaris/pslatex
+binfiles arch=i386-linux size=41394
+ bin/i386-linux/bbox
+ bin/i386-linux/ps2eps
+ bin/i386-linux/ps2frag
+ bin/i386-linux/pslatex
+binfiles arch=hppa-hpux size=59187
+ bin/hppa-hpux/bbox
+ bin/hppa-hpux/ps2eps
+ bin/hppa-hpux/ps2frag
+ bin/hppa-hpux/pslatex
+binfiles arch=mips-irix size=54310
+ bin/mips-irix/bbox
+ bin/mips-irix/ps2eps
+ bin/mips-irix/ps2frag
+ bin/mips-irix/pslatex
+binfiles arch=alpha-linux size=46210
+ bin/alpha-linux/bbox
+ bin/alpha-linux/ps2eps
+ bin/alpha-linux/ps2frag
+ bin/alpha-linux/pslatex
+binfiles arch=sparc-linux size=42946
+ bin/sparc-linux/bbox
+ bin/sparc-linux/ps2eps
+ bin/sparc-linux/ps2frag
+ bin/sparc-linux/pslatex
+binfiles arch=sparc-solaris size=43994
+ bin/sparc-solaris/bbox
+ bin/sparc-solaris/ps2eps
+ bin/sparc-solaris/ps2frag
+ bin/sparc-solaris/pslatex
+binfiles arch=i386-freebsd size=41726
+ bin/i386-freebsd/bbox
+ bin/i386-freebsd/ps2eps
+ bin/i386-freebsd/ps2frag
+ bin/i386-freebsd/pslatex
+binfiles arch=win32 size=13312
+ bin/win32/bbox.exe
+ bin/win32/ps2eps.exe
+binfiles arch=i386-darwin size=52142
+ bin/i386-darwin/bbox
+ bin/i386-darwin/ps2eps
+ bin/i386-darwin/ps2frag
+ bin/i386-darwin/pslatex
+binfiles arch=powerpc-linux size=42882
+ bin/powerpc-linux/bbox
+ bin/powerpc-linux/ps2eps
+ bin/powerpc-linux/ps2frag
+ bin/powerpc-linux/pslatex
+binfiles arch=powerpc-aix size=41269
+ bin/powerpc-aix/bbox
+ bin/powerpc-aix/ps2eps
+ bin/powerpc-aix/ps2frag
+ bin/powerpc-aix/pslatex
+binfiles arch=powerpc-darwin size=48522
+ bin/powerpc-darwin/bbox
+ bin/powerpc-darwin/ps2eps
+ bin/powerpc-darwin/ps2frag
+ bin/powerpc-darwin/pslatex
+binfiles arch=x86_64-linux size=43426
+ bin/x86_64-linux/bbox
+ bin/x86_64-linux/ps2eps
+ bin/x86_64-linux/ps2frag
+ bin/x86_64-linux/pslatex
+
+name bin-psutils
+category TLCore
+revision 5403
+docfiles size=26498
+ texmf/doc/man/man1/epsffit.1
+ texmf/doc/man/man1/extractres.1
+ texmf/doc/man/man1/fixdlsrps.1
+ texmf/doc/man/man1/fixfmps.1
+ texmf/doc/man/man1/fixmacps.1
+ texmf/doc/man/man1/fixpsditps.1
+ texmf/doc/man/man1/fixpspps.1
+ texmf/doc/man/man1/fixscribeps.1
+ texmf/doc/man/man1/fixtpps.1
+ texmf/doc/man/man1/fixwfwps.1
+ texmf/doc/man/man1/fixwpps.1
+ texmf/doc/man/man1/fixwwps.1
+ texmf/doc/man/man1/includeres.1
+ texmf/doc/man/man1/psbook.1
+ texmf/doc/man/man1/psmerge.1
+ texmf/doc/man/man1/psnup.1
+ texmf/doc/man/man1/psresize.1
+ texmf/doc/man/man1/psselect.1
+ texmf/doc/man/man1/pstops.1
+runfiles size=66242
+ texmf/dvips/psutils/md68_0.ps
+ texmf/dvips/psutils/md71_0.ps
+binfiles arch=i386-openbsd size=113382
+ bin/i386-openbsd/epsffit
+ bin/i386-openbsd/extractres
+ bin/i386-openbsd/fixdlsrps
+ bin/i386-openbsd/fixfmps
+ bin/i386-openbsd/fixmacps
+ bin/i386-openbsd/fixpsditps
+ bin/i386-openbsd/fixpspps
+ bin/i386-openbsd/fixscribeps
+ bin/i386-openbsd/fixtpps
+ bin/i386-openbsd/fixwfwps
+ bin/i386-openbsd/fixwpps
+ bin/i386-openbsd/fixwwps
+ bin/i386-openbsd/includeres
+ bin/i386-openbsd/psbook
+ bin/i386-openbsd/psmerge
+ bin/i386-openbsd/psnup
+ bin/i386-openbsd/psresize
+ bin/i386-openbsd/psselect
+ bin/i386-openbsd/pstops
+binfiles arch=i386-solaris size=102746
+ bin/i386-solaris/epsffit
+ bin/i386-solaris/extractres
+ bin/i386-solaris/fixdlsrps
+ bin/i386-solaris/fixfmps
+ bin/i386-solaris/fixmacps
+ bin/i386-solaris/fixpsditps
+ bin/i386-solaris/fixpspps
+ bin/i386-solaris/fixscribeps
+ bin/i386-solaris/fixtpps
+ bin/i386-solaris/fixwfwps
+ bin/i386-solaris/fixwpps
+ bin/i386-solaris/fixwwps
+ bin/i386-solaris/includeres
+ bin/i386-solaris/psbook
+ bin/i386-solaris/psmerge
+ bin/i386-solaris/psnup
+ bin/i386-solaris/psresize
+ bin/i386-solaris/psselect
+ bin/i386-solaris/pstops
+binfiles arch=i386-linux size=92826
+ bin/i386-linux/epsffit
+ bin/i386-linux/extractres
+ bin/i386-linux/fixdlsrps
+ bin/i386-linux/fixfmps
+ bin/i386-linux/fixmacps
+ bin/i386-linux/fixpsditps
+ bin/i386-linux/fixpspps
+ bin/i386-linux/fixscribeps
+ bin/i386-linux/fixtpps
+ bin/i386-linux/fixwfwps
+ bin/i386-linux/fixwpps
+ bin/i386-linux/fixwwps
+ bin/i386-linux/includeres
+ bin/i386-linux/psbook
+ bin/i386-linux/psmerge
+ bin/i386-linux/psnup
+ bin/i386-linux/psresize
+ bin/i386-linux/psselect
+ bin/i386-linux/pstops
+binfiles arch=hppa-hpux size=208184
+ bin/hppa-hpux/epsffit
+ bin/hppa-hpux/extractres
+ bin/hppa-hpux/fixdlsrps
+ bin/hppa-hpux/fixfmps
+ bin/hppa-hpux/fixmacps
+ bin/hppa-hpux/fixpsditps
+ bin/hppa-hpux/fixpspps
+ bin/hppa-hpux/fixscribeps
+ bin/hppa-hpux/fixtpps
+ bin/hppa-hpux/fixwfwps
+ bin/hppa-hpux/fixwpps
+ bin/hppa-hpux/fixwwps
+ bin/hppa-hpux/includeres
+ bin/hppa-hpux/psbook
+ bin/hppa-hpux/psmerge
+ bin/hppa-hpux/psnup
+ bin/hppa-hpux/psresize
+ bin/hppa-hpux/psselect
+ bin/hppa-hpux/pstops
+binfiles arch=mips-irix size=194058
+ bin/mips-irix/epsffit
+ bin/mips-irix/extractres
+ bin/mips-irix/fixdlsrps
+ bin/mips-irix/fixfmps
+ bin/mips-irix/fixmacps
+ bin/mips-irix/fixpsditps
+ bin/mips-irix/fixpspps
+ bin/mips-irix/fixscribeps
+ bin/mips-irix/fixtpps
+ bin/mips-irix/fixwfwps
+ bin/mips-irix/fixwpps
+ bin/mips-irix/fixwwps
+ bin/mips-irix/includeres
+ bin/mips-irix/psbook
+ bin/mips-irix/psmerge
+ bin/mips-irix/psnup
+ bin/mips-irix/psresize
+ bin/mips-irix/psselect
+ bin/mips-irix/pstops
+binfiles arch=alpha-linux size=140454
+ bin/alpha-linux/epsffit
+ bin/alpha-linux/extractres
+ bin/alpha-linux/fixdlsrps
+ bin/alpha-linux/fixfmps
+ bin/alpha-linux/fixmacps
+ bin/alpha-linux/fixpsditps
+ bin/alpha-linux/fixpspps
+ bin/alpha-linux/fixscribeps
+ bin/alpha-linux/fixtpps
+ bin/alpha-linux/fixwfwps
+ bin/alpha-linux/fixwpps
+ bin/alpha-linux/fixwwps
+ bin/alpha-linux/includeres
+ bin/alpha-linux/psbook
+ bin/alpha-linux/psmerge
+ bin/alpha-linux/psnup
+ bin/alpha-linux/psresize
+ bin/alpha-linux/psselect
+ bin/alpha-linux/pstops
+binfiles arch=sparc-linux size=104518
+ bin/sparc-linux/epsffit
+ bin/sparc-linux/extractres
+ bin/sparc-linux/fixdlsrps
+ bin/sparc-linux/fixfmps
+ bin/sparc-linux/fixmacps
+ bin/sparc-linux/fixpsditps
+ bin/sparc-linux/fixpspps
+ bin/sparc-linux/fixscribeps
+ bin/sparc-linux/fixtpps
+ bin/sparc-linux/fixwfwps
+ bin/sparc-linux/fixwpps
+ bin/sparc-linux/fixwwps
+ bin/sparc-linux/includeres
+ bin/sparc-linux/psbook
+ bin/sparc-linux/psmerge
+ bin/sparc-linux/psnup
+ bin/sparc-linux/psresize
+ bin/sparc-linux/psselect
+ bin/sparc-linux/pstops
+binfiles arch=sparc-solaris size=144426
+ bin/sparc-solaris/epsffit
+ bin/sparc-solaris/extractres
+ bin/sparc-solaris/fixdlsrps
+ bin/sparc-solaris/fixfmps
+ bin/sparc-solaris/fixmacps
+ bin/sparc-solaris/fixpsditps
+ bin/sparc-solaris/fixpspps
+ bin/sparc-solaris/fixscribeps
+ bin/sparc-solaris/fixtpps
+ bin/sparc-solaris/fixwfwps
+ bin/sparc-solaris/fixwpps
+ bin/sparc-solaris/fixwwps
+ bin/sparc-solaris/includeres
+ bin/sparc-solaris/psbook
+ bin/sparc-solaris/psmerge
+ bin/sparc-solaris/psnup
+ bin/sparc-solaris/psresize
+ bin/sparc-solaris/psselect
+ bin/sparc-solaris/pstops
+binfiles arch=i386-freebsd size=95982
+ bin/i386-freebsd/epsffit
+ bin/i386-freebsd/extractres
+ bin/i386-freebsd/fixdlsrps
+ bin/i386-freebsd/fixfmps
+ bin/i386-freebsd/fixmacps
+ bin/i386-freebsd/fixpsditps
+ bin/i386-freebsd/fixpspps
+ bin/i386-freebsd/fixscribeps
+ bin/i386-freebsd/fixtpps
+ bin/i386-freebsd/fixwfwps
+ bin/i386-freebsd/fixwpps
+ bin/i386-freebsd/fixwwps
+ bin/i386-freebsd/includeres
+ bin/i386-freebsd/psbook
+ bin/i386-freebsd/psmerge
+ bin/i386-freebsd/psnup
+ bin/i386-freebsd/psresize
+ bin/i386-freebsd/psselect
+ bin/i386-freebsd/pstops
+binfiles arch=win32 size=83619
+ bin/win32/epsffit.exe
+ bin/win32/extractres.bat
+ bin/win32/fixdlsrps.bat
+ bin/win32/fixfmps.bat
+ bin/win32/fixmacps.bat
+ bin/win32/fixpsditps.bat
+ bin/win32/fixpspps.bat
+ bin/win32/fixscribeps.bat
+ bin/win32/fixtpps.bat
+ bin/win32/fixwfwps.bat
+ bin/win32/fixwpps.bat
+ bin/win32/fixwwps.bat
+ bin/win32/includeres.bat
+ bin/win32/psbook.exe
+ bin/win32/psmerge.bat
+ bin/win32/psnup.exe
+ bin/win32/psresize.exe
+ bin/win32/psselect.exe
+ bin/win32/pstops.exe
+binfiles arch=i386-darwin size=159218
+ bin/i386-darwin/epsffit
+ bin/i386-darwin/extractres
+ bin/i386-darwin/fixdlsrps
+ bin/i386-darwin/fixfmps
+ bin/i386-darwin/fixmacps
+ bin/i386-darwin/fixpsditps
+ bin/i386-darwin/fixpspps
+ bin/i386-darwin/fixscribeps
+ bin/i386-darwin/fixtpps
+ bin/i386-darwin/fixwfwps
+ bin/i386-darwin/fixwpps
+ bin/i386-darwin/fixwwps
+ bin/i386-darwin/includeres
+ bin/i386-darwin/psbook
+ bin/i386-darwin/psmerge
+ bin/i386-darwin/psnup
+ bin/i386-darwin/psresize
+ bin/i386-darwin/psselect
+ bin/i386-darwin/pstops
+binfiles arch=powerpc-linux size=109074
+ bin/powerpc-linux/epsffit
+ bin/powerpc-linux/extractres
+ bin/powerpc-linux/fixdlsrps
+ bin/powerpc-linux/fixfmps
+ bin/powerpc-linux/fixmacps
+ bin/powerpc-linux/fixpsditps
+ bin/powerpc-linux/fixpspps
+ bin/powerpc-linux/fixscribeps
+ bin/powerpc-linux/fixtpps
+ bin/powerpc-linux/fixwfwps
+ bin/powerpc-linux/fixwpps
+ bin/powerpc-linux/fixwwps
+ bin/powerpc-linux/includeres
+ bin/powerpc-linux/psbook
+ bin/powerpc-linux/psmerge
+ bin/powerpc-linux/psnup
+ bin/powerpc-linux/psresize
+ bin/powerpc-linux/psselect
+ bin/powerpc-linux/pstops
+binfiles arch=powerpc-aix size=103931
+ bin/powerpc-aix/epsffit
+ bin/powerpc-aix/extractres
+ bin/powerpc-aix/fixdlsrps
+ bin/powerpc-aix/fixfmps
+ bin/powerpc-aix/fixmacps
+ bin/powerpc-aix/fixpsditps
+ bin/powerpc-aix/fixpspps
+ bin/powerpc-aix/fixscribeps
+ bin/powerpc-aix/fixtpps
+ bin/powerpc-aix/fixwfwps
+ bin/powerpc-aix/fixwpps
+ bin/powerpc-aix/fixwwps
+ bin/powerpc-aix/includeres
+ bin/powerpc-aix/psbook
+ bin/powerpc-aix/psmerge
+ bin/powerpc-aix/psnup
+ bin/powerpc-aix/psresize
+ bin/powerpc-aix/psselect
+ bin/powerpc-aix/pstops
+binfiles arch=powerpc-darwin size=150518
+ bin/powerpc-darwin/epsffit
+ bin/powerpc-darwin/extractres
+ bin/powerpc-darwin/fixdlsrps
+ bin/powerpc-darwin/fixfmps
+ bin/powerpc-darwin/fixmacps
+ bin/powerpc-darwin/fixpsditps
+ bin/powerpc-darwin/fixpspps
+ bin/powerpc-darwin/fixscribeps
+ bin/powerpc-darwin/fixtpps
+ bin/powerpc-darwin/fixwfwps
+ bin/powerpc-darwin/fixwpps
+ bin/powerpc-darwin/fixwwps
+ bin/powerpc-darwin/includeres
+ bin/powerpc-darwin/psbook
+ bin/powerpc-darwin/psmerge
+ bin/powerpc-darwin/psnup
+ bin/powerpc-darwin/psresize
+ bin/powerpc-darwin/psselect
+ bin/powerpc-darwin/pstops
+binfiles arch=x86_64-linux size=121558
+ bin/x86_64-linux/epsffit
+ bin/x86_64-linux/extractres
+ bin/x86_64-linux/fixdlsrps
+ bin/x86_64-linux/fixfmps
+ bin/x86_64-linux/fixmacps
+ bin/x86_64-linux/fixpsditps
+ bin/x86_64-linux/fixpspps
+ bin/x86_64-linux/fixscribeps
+ bin/x86_64-linux/fixtpps
+ bin/x86_64-linux/fixwfwps
+ bin/x86_64-linux/fixwpps
+ bin/x86_64-linux/fixwwps
+ bin/x86_64-linux/includeres
+ bin/x86_64-linux/psbook
+ bin/x86_64-linux/psmerge
+ bin/x86_64-linux/psnup
+ bin/x86_64-linux/psresize
+ bin/x86_64-linux/psselect
+ bin/x86_64-linux/pstops
+
+name bin-seetexk
+category TLCore
+revision 5403
+runfiles size=9511
+ texmf/doc/man/man1/dvibook.1
+ texmf/doc/man/man1/dviconcat.1
+ texmf/doc/man/man1/dviselect.1
+ texmf/doc/man/man1/dvitodvi.1
+binfiles arch=i386-openbsd size=135024
+ bin/i386-openbsd/dvibook
+ bin/i386-openbsd/dviconcat
+ bin/i386-openbsd/dviselect
+ bin/i386-openbsd/dvitodvi
+binfiles arch=i386-solaris size=133304
+ bin/i386-solaris/dvibook
+ bin/i386-solaris/dviconcat
+ bin/i386-solaris/dviselect
+ bin/i386-solaris/dvitodvi
+binfiles arch=i386-linux size=83176
+ bin/i386-linux/dvibook
+ bin/i386-linux/dviconcat
+ bin/i386-linux/dviselect
+ bin/i386-linux/dvitodvi
+binfiles arch=hppa-hpux size=197283
+ bin/hppa-hpux/dvibook
+ bin/hppa-hpux/dviconcat
+ bin/hppa-hpux/dviselect
+ bin/hppa-hpux/dvitodvi
+binfiles arch=mips-irix size=260124
+ bin/mips-irix/dvibook
+ bin/mips-irix/dviconcat
+ bin/mips-irix/dviselect
+ bin/mips-irix/dvitodvi
+binfiles arch=alpha-linux size=138528
+ bin/alpha-linux/dvibook
+ bin/alpha-linux/dviconcat
+ bin/alpha-linux/dviselect
+ bin/alpha-linux/dvitodvi
+binfiles arch=sparc-linux size=89384
+ bin/sparc-linux/dvibook
+ bin/sparc-linux/dviconcat
+ bin/sparc-linux/dviselect
+ bin/sparc-linux/dvitodvi
+binfiles arch=sparc-solaris size=201892
+ bin/sparc-solaris/dvibook
+ bin/sparc-solaris/dviconcat
+ bin/sparc-solaris/dviselect
+ bin/sparc-solaris/dvitodvi
+binfiles arch=i386-freebsd size=154916
+ bin/i386-freebsd/dvibook
+ bin/i386-freebsd/dviconcat
+ bin/i386-freebsd/dviselect
+ bin/i386-freebsd/dvitodvi
+binfiles arch=win32 size=79872
+ bin/win32/dvibook.exe
+ bin/win32/dviconcat.exe
+ bin/win32/dviselect.exe
+ bin/win32/dvitodvi.exe
+binfiles arch=i386-darwin size=134916
+ bin/i386-darwin/dvibook
+ bin/i386-darwin/dviconcat
+ bin/i386-darwin/dviselect
+ bin/i386-darwin/dvitodvi
+binfiles arch=powerpc-linux size=94964
+ bin/powerpc-linux/dvibook
+ bin/powerpc-linux/dviconcat
+ bin/powerpc-linux/dviselect
+ bin/powerpc-linux/dvitodvi
+binfiles arch=powerpc-aix size=151068
+ bin/powerpc-aix/dvibook
+ bin/powerpc-aix/dviconcat
+ bin/powerpc-aix/dviselect
+ bin/powerpc-aix/dvitodvi
+binfiles arch=powerpc-darwin size=129076
+ bin/powerpc-darwin/dvibook
+ bin/powerpc-darwin/dviconcat
+ bin/powerpc-darwin/dviselect
+ bin/powerpc-darwin/dvitodvi
+binfiles arch=x86_64-linux size=105624
+ bin/x86_64-linux/dvibook
+ bin/x86_64-linux/dviconcat
+ bin/x86_64-linux/dviselect
+ bin/x86_64-linux/dvitodvi
+
+name bin-t1utils
+category TLCore
+revision 5403
+docfiles size=10999
+ texmf/doc/man/man1/t1ascii.1
+ texmf/doc/man/man1/t1asm.1
+ texmf/doc/man/man1/t1binary.1
+ texmf/doc/man/man1/t1disasm.1
+ texmf/doc/man/man1/t1mac.1
+ texmf/doc/man/man1/t1unmac.1
+binfiles arch=i386-openbsd size=167384
+ bin/i386-openbsd/t1ascii
+ bin/i386-openbsd/t1asm
+ bin/i386-openbsd/t1binary
+ bin/i386-openbsd/t1disasm
+ bin/i386-openbsd/t1mac
+ bin/i386-openbsd/t1unmac
+binfiles arch=i386-solaris size=163392
+ bin/i386-solaris/t1ascii
+ bin/i386-solaris/t1asm
+ bin/i386-solaris/t1binary
+ bin/i386-solaris/t1disasm
+ bin/i386-solaris/t1mac
+ bin/i386-solaris/t1unmac
+binfiles arch=i386-linux size=146128
+ bin/i386-linux/t1ascii
+ bin/i386-linux/t1asm
+ bin/i386-linux/t1binary
+ bin/i386-linux/t1disasm
+ bin/i386-linux/t1mac
+ bin/i386-linux/t1unmac
+binfiles arch=hppa-hpux size=275595
+ bin/hppa-hpux/t1ascii
+ bin/hppa-hpux/t1asm
+ bin/hppa-hpux/t1binary
+ bin/hppa-hpux/t1disasm
+ bin/hppa-hpux/t1mac
+ bin/hppa-hpux/t1unmac
+binfiles arch=mips-irix size=341980
+ bin/mips-irix/t1ascii
+ bin/mips-irix/t1asm
+ bin/mips-irix/t1binary
+ bin/mips-irix/t1disasm
+ bin/mips-irix/t1mac
+ bin/mips-irix/t1unmac
+binfiles arch=alpha-linux size=236512
+ bin/alpha-linux/t1ascii
+ bin/alpha-linux/t1asm
+ bin/alpha-linux/t1binary
+ bin/alpha-linux/t1disasm
+ bin/alpha-linux/t1mac
+ bin/alpha-linux/t1unmac
+binfiles arch=sparc-linux size=162616
+ bin/sparc-linux/t1ascii
+ bin/sparc-linux/t1asm
+ bin/sparc-linux/t1binary
+ bin/sparc-linux/t1disasm
+ bin/sparc-linux/t1mac
+ bin/sparc-linux/t1unmac
+binfiles arch=sparc-solaris size=211368
+ bin/sparc-solaris/t1ascii
+ bin/sparc-solaris/t1asm
+ bin/sparc-solaris/t1binary
+ bin/sparc-solaris/t1disasm
+ bin/sparc-solaris/t1mac
+ bin/sparc-solaris/t1unmac
+binfiles arch=i386-freebsd size=164232
+ bin/i386-freebsd/t1ascii
+ bin/i386-freebsd/t1asm
+ bin/i386-freebsd/t1binary
+ bin/i386-freebsd/t1disasm
+ bin/i386-freebsd/t1mac
+ bin/i386-freebsd/t1unmac
+binfiles arch=win32 size=113664
+ bin/win32/t1ascii.exe
+ bin/win32/t1asm.exe
+ bin/win32/t1binary.exe
+ bin/win32/t1disasm.exe
+ bin/win32/t1mac.exe
+ bin/win32/t1unmac.exe
+binfiles arch=i386-darwin size=207764
+ bin/i386-darwin/t1ascii
+ bin/i386-darwin/t1asm
+ bin/i386-darwin/t1binary
+ bin/i386-darwin/t1disasm
+ bin/i386-darwin/t1mac
+ bin/i386-darwin/t1unmac
+binfiles arch=powerpc-linux size=181948
+ bin/powerpc-linux/t1ascii
+ bin/powerpc-linux/t1asm
+ bin/powerpc-linux/t1binary
+ bin/powerpc-linux/t1disasm
+ bin/powerpc-linux/t1mac
+ bin/powerpc-linux/t1unmac
+binfiles arch=powerpc-aix size=190054
+ bin/powerpc-aix/t1ascii
+ bin/powerpc-aix/t1asm
+ bin/powerpc-aix/t1binary
+ bin/powerpc-aix/t1disasm
+ bin/powerpc-aix/t1mac
+ bin/powerpc-aix/t1unmac
+binfiles arch=powerpc-darwin size=207324
+ bin/powerpc-darwin/t1ascii
+ bin/powerpc-darwin/t1asm
+ bin/powerpc-darwin/t1binary
+ bin/powerpc-darwin/t1disasm
+ bin/powerpc-darwin/t1mac
+ bin/powerpc-darwin/t1unmac
+binfiles arch=x86_64-linux size=194576
+ bin/x86_64-linux/t1ascii
+ bin/x86_64-linux/t1asm
+ bin/x86_64-linux/t1binary
+ bin/x86_64-linux/t1disasm
+ bin/x86_64-linux/t1mac
+ bin/x86_64-linux/t1unmac
+
+name bin-tetex
+category TLCore
+revision 5403
+docfiles size=393811
+ texmf/doc/man/man1/a2ping.1
+ texmf/doc/man/man1/allcm.1
+ texmf/doc/man/man1/allec.1
+ texmf/doc/man/man1/allneeded.1
+ texmf/doc/man/man1/dvi2fax.1
+ texmf/doc/man/man1/dvired.1
+ texmf/doc/man/man1/fmtutil-sys.1
+ texmf/doc/man/man1/fmtutil.1
+ texmf/doc/man/man1/fontinst.1
+ texmf/doc/man/man1/texlinks.1
+ texmf/doc/man/man1/updmap-sys.1
+ texmf/doc/man/man1/updmap.1
+ texmf/doc/man/man5/updmap.cfg.5
+ texmf/doc/tetex/TETEXDOC.pdf
+ texmf/doc/tetex/teTeX-FAQ
+runfiles size=237174
+ texmf/dvips/tetex/config.builtin35
+ texmf/dvips/tetex/config.dfaxhigh
+ texmf/dvips/tetex/config.dfaxlo
+ texmf/dvips/tetex/config.download35
+ texmf/dvips/tetex/config.gsftopk
+ texmf/dvips/tetex/config.outline
+ texmf/dvips/tetex/config.pdf
+ texmf/dvips/tetex/config.pk
+ texmf/dvips/tetex/config.www
+ texmf/fonts/enc/dvips/tetex/09fbbfac.enc
+ texmf/fonts/enc/dvips/tetex/0ef0afca.enc
+ texmf/fonts/enc/dvips/tetex/10037936.enc
+ texmf/fonts/enc/dvips/tetex/1b6d048e.enc
+ texmf/fonts/enc/dvips/tetex/71414f53.enc
+ texmf/fonts/enc/dvips/tetex/74afc74c.enc
+ texmf/fonts/enc/dvips/tetex/aae443f0.enc
+ texmf/fonts/enc/dvips/tetex/b6a4d7c7.enc
+ texmf/fonts/enc/dvips/tetex/bbad153f.enc
+ texmf/fonts/enc/dvips/tetex/d9b29452.enc
+ texmf/fonts/enc/dvips/tetex/f7b6d320.enc
+ texmf/fonts/enc/dvips/tetex/mtex.enc
+ texmf/fonts/map/dvipdfm/tetex/cm-dvipdfm-fix.map
+ texmf/fonts/map/dvips/tetex/dvipdfm35.map
+ texmf/fonts/map/dvips/tetex/dvips35.map
+ texmf/fonts/map/dvips/tetex/mathpple.map
+ texmf/fonts/map/dvips/tetex/mt-belleek.map
+ texmf/fonts/map/dvips/tetex/mt-plus.map
+ texmf/fonts/map/dvips/tetex/mt-yy.map
+ texmf/fonts/map/dvips/tetex/pdftex35.map
+ texmf/fonts/map/dvips/tetex/ps2pk35.map
+ texmf/scripts/tetex/texdoctk.pl
+ texmf/scripts/tetex/texi2html.pl
+ texmf/scripts/tetex/updmap.pl
+ texmf/web2c/updmap.cfg
+binfiles arch=i386-openbsd size=209477
+ bin/i386-openbsd/a2ping
+ bin/i386-openbsd/allcm
+ bin/i386-openbsd/allec
+ bin/i386-openbsd/allneeded
+ bin/i386-openbsd/dvi2fax
+ bin/i386-openbsd/dvired
+ bin/i386-openbsd/fmtutil
+ bin/i386-openbsd/fmtutil-sys
+ bin/i386-openbsd/fontinst
+ bin/i386-openbsd/kpsewhere
+ bin/i386-openbsd/ps4pdf
+ bin/i386-openbsd/texconfig-dialog
+ bin/i386-openbsd/texconfig-sys
+ bin/i386-openbsd/texlinks
+ bin/i386-openbsd/updmap
+ bin/i386-openbsd/updmap-sys
+binfiles arch=i386-solaris size=209477
+ bin/i386-solaris/a2ping
+ bin/i386-solaris/allcm
+ bin/i386-solaris/allec
+ bin/i386-solaris/allneeded
+ bin/i386-solaris/dvi2fax
+ bin/i386-solaris/dvired
+ bin/i386-solaris/fmtutil
+ bin/i386-solaris/fmtutil-sys
+ bin/i386-solaris/fontinst
+ bin/i386-solaris/kpsewhere
+ bin/i386-solaris/ps4pdf
+ bin/i386-solaris/texconfig-dialog
+ bin/i386-solaris/texconfig-sys
+ bin/i386-solaris/texlinks
+ bin/i386-solaris/updmap
+ bin/i386-solaris/updmap-sys
+binfiles arch=i386-linux size=210054
+ bin/i386-linux/a2ping
+ bin/i386-linux/allcm
+ bin/i386-linux/allec
+ bin/i386-linux/allneeded
+ bin/i386-linux/dvi2fax
+ bin/i386-linux/dvired
+ bin/i386-linux/fmtutil
+ bin/i386-linux/fmtutil-sys
+ bin/i386-linux/fontinst
+ bin/i386-linux/kpsewhere
+ bin/i386-linux/ps4pdf
+ bin/i386-linux/texconfig-dialog
+ bin/i386-linux/texconfig-sys
+ bin/i386-linux/texlinks
+ bin/i386-linux/updmap
+ bin/i386-linux/updmap-sys
+binfiles arch=hppa-hpux size=209477
+ bin/hppa-hpux/a2ping
+ bin/hppa-hpux/allcm
+ bin/hppa-hpux/allec
+ bin/hppa-hpux/allneeded
+ bin/hppa-hpux/dvi2fax
+ bin/hppa-hpux/dvired
+ bin/hppa-hpux/fmtutil
+ bin/hppa-hpux/fmtutil-sys
+ bin/hppa-hpux/fontinst
+ bin/hppa-hpux/kpsewhere
+ bin/hppa-hpux/ps4pdf
+ bin/hppa-hpux/texconfig-dialog
+ bin/hppa-hpux/texconfig-sys
+ bin/hppa-hpux/texlinks
+ bin/hppa-hpux/updmap
+ bin/hppa-hpux/updmap-sys
+binfiles arch=mips-irix size=209477
+ bin/mips-irix/a2ping
+ bin/mips-irix/allcm
+ bin/mips-irix/allec
+ bin/mips-irix/allneeded
+ bin/mips-irix/dvi2fax
+ bin/mips-irix/dvired
+ bin/mips-irix/fmtutil
+ bin/mips-irix/fmtutil-sys
+ bin/mips-irix/fontinst
+ bin/mips-irix/kpsewhere
+ bin/mips-irix/ps4pdf
+ bin/mips-irix/texconfig-dialog
+ bin/mips-irix/texconfig-sys
+ bin/mips-irix/texlinks
+ bin/mips-irix/updmap
+ bin/mips-irix/updmap-sys
+binfiles arch=alpha-linux size=209477
+ bin/alpha-linux/a2ping
+ bin/alpha-linux/allcm
+ bin/alpha-linux/allec
+ bin/alpha-linux/allneeded
+ bin/alpha-linux/dvi2fax
+ bin/alpha-linux/dvired
+ bin/alpha-linux/fmtutil
+ bin/alpha-linux/fmtutil-sys
+ bin/alpha-linux/fontinst
+ bin/alpha-linux/kpsewhere
+ bin/alpha-linux/ps4pdf
+ bin/alpha-linux/texconfig-dialog
+ bin/alpha-linux/texconfig-sys
+ bin/alpha-linux/texlinks
+ bin/alpha-linux/updmap
+ bin/alpha-linux/updmap-sys
+binfiles arch=sparc-linux size=209477
+ bin/sparc-linux/a2ping
+ bin/sparc-linux/allcm
+ bin/sparc-linux/allec
+ bin/sparc-linux/allneeded
+ bin/sparc-linux/dvi2fax
+ bin/sparc-linux/dvired
+ bin/sparc-linux/fmtutil
+ bin/sparc-linux/fmtutil-sys
+ bin/sparc-linux/fontinst
+ bin/sparc-linux/kpsewhere
+ bin/sparc-linux/ps4pdf
+ bin/sparc-linux/texconfig-dialog
+ bin/sparc-linux/texconfig-sys
+ bin/sparc-linux/texlinks
+ bin/sparc-linux/updmap
+ bin/sparc-linux/updmap-sys
+binfiles arch=sparc-solaris size=209477
+ bin/sparc-solaris/a2ping
+ bin/sparc-solaris/allcm
+ bin/sparc-solaris/allec
+ bin/sparc-solaris/allneeded
+ bin/sparc-solaris/dvi2fax
+ bin/sparc-solaris/dvired
+ bin/sparc-solaris/fmtutil
+ bin/sparc-solaris/fmtutil-sys
+ bin/sparc-solaris/fontinst
+ bin/sparc-solaris/kpsewhere
+ bin/sparc-solaris/ps4pdf
+ bin/sparc-solaris/texconfig-dialog
+ bin/sparc-solaris/texconfig-sys
+ bin/sparc-solaris/texlinks
+ bin/sparc-solaris/updmap
+ bin/sparc-solaris/updmap-sys
+binfiles arch=i386-freebsd size=209477
+ bin/i386-freebsd/a2ping
+ bin/i386-freebsd/allcm
+ bin/i386-freebsd/allec
+ bin/i386-freebsd/allneeded
+ bin/i386-freebsd/dvi2fax
+ bin/i386-freebsd/dvired
+ bin/i386-freebsd/fmtutil
+ bin/i386-freebsd/fmtutil-sys
+ bin/i386-freebsd/fontinst
+ bin/i386-freebsd/kpsewhere
+ bin/i386-freebsd/ps4pdf
+ bin/i386-freebsd/texconfig-dialog
+ bin/i386-freebsd/texconfig-sys
+ bin/i386-freebsd/texlinks
+ bin/i386-freebsd/updmap
+ bin/i386-freebsd/updmap-sys
+binfiles arch=win32 size=25600
+ bin/win32/fmtutil.exe
+ bin/win32/updmap.exe
+binfiles arch=i386-darwin size=209477
+ bin/i386-darwin/a2ping
+ bin/i386-darwin/allcm
+ bin/i386-darwin/allec
+ bin/i386-darwin/allneeded
+ bin/i386-darwin/dvi2fax
+ bin/i386-darwin/dvired
+ bin/i386-darwin/fmtutil
+ bin/i386-darwin/fmtutil-sys
+ bin/i386-darwin/fontinst
+ bin/i386-darwin/kpsewhere
+ bin/i386-darwin/ps4pdf
+ bin/i386-darwin/texconfig-dialog
+ bin/i386-darwin/texconfig-sys
+ bin/i386-darwin/texlinks
+ bin/i386-darwin/updmap
+ bin/i386-darwin/updmap-sys
+binfiles arch=powerpc-linux size=209477
+ bin/powerpc-linux/a2ping
+ bin/powerpc-linux/allcm
+ bin/powerpc-linux/allec
+ bin/powerpc-linux/allneeded
+ bin/powerpc-linux/dvi2fax
+ bin/powerpc-linux/dvired
+ bin/powerpc-linux/fmtutil
+ bin/powerpc-linux/fmtutil-sys
+ bin/powerpc-linux/fontinst
+ bin/powerpc-linux/kpsewhere
+ bin/powerpc-linux/ps4pdf
+ bin/powerpc-linux/texconfig-dialog
+ bin/powerpc-linux/texconfig-sys
+ bin/powerpc-linux/texlinks
+ bin/powerpc-linux/updmap
+ bin/powerpc-linux/updmap-sys
+binfiles arch=powerpc-aix size=209477
+ bin/powerpc-aix/a2ping
+ bin/powerpc-aix/allcm
+ bin/powerpc-aix/allec
+ bin/powerpc-aix/allneeded
+ bin/powerpc-aix/dvi2fax
+ bin/powerpc-aix/dvired
+ bin/powerpc-aix/fmtutil
+ bin/powerpc-aix/fmtutil-sys
+ bin/powerpc-aix/fontinst
+ bin/powerpc-aix/kpsewhere
+ bin/powerpc-aix/ps4pdf
+ bin/powerpc-aix/texconfig-dialog
+ bin/powerpc-aix/texconfig-sys
+ bin/powerpc-aix/texlinks
+ bin/powerpc-aix/updmap
+ bin/powerpc-aix/updmap-sys
+binfiles arch=powerpc-darwin size=209477
+ bin/powerpc-darwin/a2ping
+ bin/powerpc-darwin/allcm
+ bin/powerpc-darwin/allec
+ bin/powerpc-darwin/allneeded
+ bin/powerpc-darwin/dvi2fax
+ bin/powerpc-darwin/dvired
+ bin/powerpc-darwin/fmtutil
+ bin/powerpc-darwin/fmtutil-sys
+ bin/powerpc-darwin/fontinst
+ bin/powerpc-darwin/kpsewhere
+ bin/powerpc-darwin/ps4pdf
+ bin/powerpc-darwin/texconfig-dialog
+ bin/powerpc-darwin/texconfig-sys
+ bin/powerpc-darwin/texlinks
+ bin/powerpc-darwin/updmap
+ bin/powerpc-darwin/updmap-sys
+binfiles arch=x86_64-linux size=209477
+ bin/x86_64-linux/a2ping
+ bin/x86_64-linux/allcm
+ bin/x86_64-linux/allec
+ bin/x86_64-linux/allneeded
+ bin/x86_64-linux/dvi2fax
+ bin/x86_64-linux/dvired
+ bin/x86_64-linux/fmtutil
+ bin/x86_64-linux/fmtutil-sys
+ bin/x86_64-linux/fontinst
+ bin/x86_64-linux/kpsewhere
+ bin/x86_64-linux/ps4pdf
+ bin/x86_64-linux/texconfig-dialog
+ bin/x86_64-linux/texconfig-sys
+ bin/x86_64-linux/texlinks
+ bin/x86_64-linux/updmap
+ bin/x86_64-linux/updmap-sys
+
+name bin-tex
+category TLCore
+revision 5403
+depend bin-kpathsea
+execute BuildFormat tex
+docfiles size=13615
+ texmf/doc/man/man1/tex.1
+runfiles size=27076
+ texmf/fmtutil/format.tex.cnf
+ texmf/web2c/tex.pool
+binfiles arch=i386-openbsd size=272836
+ bin/i386-openbsd/tex
+binfiles arch=i386-solaris size=308068
+ bin/i386-solaris/tex
+binfiles arch=i386-linux size=263748
+ bin/i386-linux/tex
+binfiles arch=hppa-hpux size=353213
+ bin/hppa-hpux/tex
+binfiles arch=mips-irix size=522180
+ bin/mips-irix/tex
+binfiles arch=alpha-linux size=433640
+ bin/alpha-linux/tex
+binfiles arch=sparc-linux size=317972
+ bin/sparc-linux/tex
+binfiles arch=sparc-solaris size=458700
+ bin/sparc-solaris/tex
+binfiles arch=i386-freebsd size=283236
+ bin/i386-freebsd/tex
+binfiles arch=win32 size=241664
+ bin/win32/tex.dll
+ bin/win32/tex.exe
+binfiles arch=i386-darwin size=332176
+ bin/i386-darwin/tex
+binfiles arch=powerpc-linux size=328164
+ bin/powerpc-linux/tex
+binfiles arch=powerpc-aix size=347061
+ bin/powerpc-aix/tex
+binfiles arch=powerpc-darwin size=336996
+ bin/powerpc-darwin/tex
+binfiles arch=x86_64-linux size=308696
+ bin/x86_64-linux/tex
+
+name bin-tex4htk
+category TLCore
+revision 5403
+runfiles size=1342
+ texmf/scripts/tex4ht/htcopy.pl
+ texmf/scripts/tex4ht/htmove.pl
+binfiles arch=i386-openbsd size=228793
+ bin/i386-openbsd/ht
+ bin/i386-openbsd/htcontext
+ bin/i386-openbsd/htlatex
+ bin/i386-openbsd/htmex
+ bin/i386-openbsd/httex
+ bin/i386-openbsd/httexi
+ bin/i386-openbsd/mk4ht
+ bin/i386-openbsd/t4ht
+ bin/i386-openbsd/tex4ht
+binfiles arch=i386-solaris size=228321
+ bin/i386-solaris/ht
+ bin/i386-solaris/htcontext
+ bin/i386-solaris/htlatex
+ bin/i386-solaris/htmex
+ bin/i386-solaris/httex
+ bin/i386-solaris/httexi
+ bin/i386-solaris/mk4ht
+ bin/i386-solaris/t4ht
+ bin/i386-solaris/tex4ht
+binfiles arch=i386-linux size=219001
+ bin/i386-linux/ht
+ bin/i386-linux/htcontext
+ bin/i386-linux/htlatex
+ bin/i386-linux/htmex
+ bin/i386-linux/httex
+ bin/i386-linux/httexi
+ bin/i386-linux/mk4ht
+ bin/i386-linux/t4ht
+ bin/i386-linux/tex4ht
+binfiles arch=hppa-hpux size=295117
+ bin/hppa-hpux/ht
+ bin/hppa-hpux/htcontext
+ bin/hppa-hpux/htlatex
+ bin/hppa-hpux/htmex
+ bin/hppa-hpux/httex
+ bin/hppa-hpux/httexi
+ bin/hppa-hpux/mk4ht
+ bin/hppa-hpux/t4ht
+ bin/hppa-hpux/tex4ht
+binfiles arch=mips-irix size=376493
+ bin/mips-irix/ht
+ bin/mips-irix/htcontext
+ bin/mips-irix/htlatex
+ bin/mips-irix/htmex
+ bin/mips-irix/httex
+ bin/mips-irix/httexi
+ bin/mips-irix/mk4ht
+ bin/mips-irix/t4ht
+ bin/mips-irix/tex4ht
+binfiles arch=alpha-linux size=331569
+ bin/alpha-linux/ht
+ bin/alpha-linux/htcontext
+ bin/alpha-linux/htlatex
+ bin/alpha-linux/htmex
+ bin/alpha-linux/httex
+ bin/alpha-linux/httexi
+ bin/alpha-linux/mk4ht
+ bin/alpha-linux/t4ht
+ bin/alpha-linux/tex4ht
+binfiles arch=sparc-linux size=244873
+ bin/sparc-linux/ht
+ bin/sparc-linux/htcontext
+ bin/sparc-linux/htlatex
+ bin/sparc-linux/htmex
+ bin/sparc-linux/httex
+ bin/sparc-linux/httexi
+ bin/sparc-linux/mk4ht
+ bin/sparc-linux/t4ht
+ bin/sparc-linux/tex4ht
+binfiles arch=sparc-solaris size=383409
+ bin/sparc-solaris/ht
+ bin/sparc-solaris/htcontext
+ bin/sparc-solaris/htlatex
+ bin/sparc-solaris/htmex
+ bin/sparc-solaris/httex
+ bin/sparc-solaris/httexi
+ bin/sparc-solaris/mk4ht
+ bin/sparc-solaris/t4ht
+ bin/sparc-solaris/tex4ht
+binfiles arch=i386-freebsd size=227729
+ bin/i386-freebsd/ht
+ bin/i386-freebsd/htcontext
+ bin/i386-freebsd/htlatex
+ bin/i386-freebsd/htmex
+ bin/i386-freebsd/httex
+ bin/i386-freebsd/httexi
+ bin/i386-freebsd/mk4ht
+ bin/i386-freebsd/t4ht
+ bin/i386-freebsd/tex4ht
+binfiles arch=win32 size=215384
+ bin/win32/dbcontext.bat
+ bin/win32/dblatex.bat
+ bin/win32/dbmcontext.bat
+ bin/win32/dbmex.bat
+ bin/win32/dbmlatex.bat
+ bin/win32/dbmmex.bat
+ bin/win32/dbmtex.bat
+ bin/win32/dbmtexi.bat
+ bin/win32/dbtex.bat
+ bin/win32/dbtexi.bat
+ bin/win32/escontext.bat
+ bin/win32/eslatex.bat
+ bin/win32/esmex.bat
+ bin/win32/estex.bat
+ bin/win32/estexi.bat
+ bin/win32/ht.bat
+ bin/win32/htcmd.exe
+ bin/win32/htcontext.bat
+ bin/win32/htlatex.bat
+ bin/win32/htmex.bat
+ bin/win32/httex.bat
+ bin/win32/httexi.bat
+ bin/win32/jh1context.bat
+ bin/win32/jh1latex.bat
+ bin/win32/jh1mex.bat
+ bin/win32/jh1tex.bat
+ bin/win32/jh1texi.bat
+ bin/win32/jhcontext.bat
+ bin/win32/jhlatex.bat
+ bin/win32/jhmex.bat
+ bin/win32/jhtex.bat
+ bin/win32/jhtexi.bat
+ bin/win32/jmcontext.bat
+ bin/win32/jmlatex.bat
+ bin/win32/jmmex.bat
+ bin/win32/jmtex.bat
+ bin/win32/jmtexi.bat
+ bin/win32/jscontext.bat
+ bin/win32/jslatex.bat
+ bin/win32/jsmex.bat
+ bin/win32/jstex.bat
+ bin/win32/jstexi.bat
+ bin/win32/mk4ht
+ bin/win32/mk4ht.exe
+ bin/win32/mzcontext.bat
+ bin/win32/mzlatex.bat
+ bin/win32/mzmex.bat
+ bin/win32/mztex.bat
+ bin/win32/mztexi.bat
+ bin/win32/oocontext.bat
+ bin/win32/oolatex.bat
+ bin/win32/oomex.bat
+ bin/win32/ootex.bat
+ bin/win32/ootexi.bat
+ bin/win32/t4ht.exe
+ bin/win32/teicontext.bat
+ bin/win32/teilatex.bat
+ bin/win32/teimcontext.bat
+ bin/win32/teimex.bat
+ bin/win32/teimlatex.bat
+ bin/win32/teimmex.bat
+ bin/win32/teimtex.bat
+ bin/win32/teimtexi.bat
+ bin/win32/teitex.bat
+ bin/win32/teitexi.bat
+ bin/win32/tex4ht.exe
+ bin/win32/uxhcontext.bat
+ bin/win32/uxhlatex.bat
+ bin/win32/uxhmex.bat
+ bin/win32/uxhtex.bat
+ bin/win32/uxhtexi.bat
+ bin/win32/wcontext.bat
+ bin/win32/wlatex.bat
+ bin/win32/wmex.bat
+ bin/win32/wtex.bat
+ bin/win32/wtexi.bat
+ bin/win32/xhcontext.bat
+ bin/win32/xhlatex.bat
+ bin/win32/xhmcontext.bat
+ bin/win32/xhmex.bat
+ bin/win32/xhmlatex.bat
+ bin/win32/xhmmex.bat
+ bin/win32/xhmtex.bat
+ bin/win32/xhmtexi.bat
+ bin/win32/xhtex.bat
+ bin/win32/xhtexi.bat
+binfiles arch=i386-darwin size=262509
+ bin/i386-darwin/ht
+ bin/i386-darwin/htcontext
+ bin/i386-darwin/htlatex
+ bin/i386-darwin/htmex
+ bin/i386-darwin/httex
+ bin/i386-darwin/httexi
+ bin/i386-darwin/mk4ht
+ bin/i386-darwin/t4ht
+ bin/i386-darwin/tex4ht
+binfiles arch=powerpc-linux size=252353
+ bin/powerpc-linux/ht
+ bin/powerpc-linux/htcontext
+ bin/powerpc-linux/htlatex
+ bin/powerpc-linux/htmex
+ bin/powerpc-linux/httex
+ bin/powerpc-linux/httexi
+ bin/powerpc-linux/mk4ht
+ bin/powerpc-linux/t4ht
+ bin/powerpc-linux/tex4ht
+binfiles arch=powerpc-aix size=258041
+ bin/powerpc-aix/ht
+ bin/powerpc-aix/htcontext
+ bin/powerpc-aix/htlatex
+ bin/powerpc-aix/htmex
+ bin/powerpc-aix/httex
+ bin/powerpc-aix/httexi
+ bin/powerpc-aix/mk4ht
+ bin/powerpc-aix/t4ht
+ bin/powerpc-aix/tex4ht
+binfiles arch=powerpc-darwin size=259789
+ bin/powerpc-darwin/ht
+ bin/powerpc-darwin/htcontext
+ bin/powerpc-darwin/htlatex
+ bin/powerpc-darwin/htmex
+ bin/powerpc-darwin/httex
+ bin/powerpc-darwin/httexi
+ bin/powerpc-darwin/mk4ht
+ bin/powerpc-darwin/t4ht
+ bin/powerpc-darwin/tex4ht
+binfiles arch=x86_64-linux size=259953
+ bin/x86_64-linux/ht
+ bin/x86_64-linux/htcontext
+ bin/x86_64-linux/htlatex
+ bin/x86_64-linux/htmex
+ bin/x86_64-linux/httex
+ bin/x86_64-linux/httexi
+ bin/x86_64-linux/mk4ht
+ bin/x86_64-linux/t4ht
+ bin/x86_64-linux/tex4ht
+
+name bin-texconfig
+category TLCore
+revision 5263
+docfiles size=652
+ texmf/doc/man/man1/texconfig-sys.1
+ texmf/doc/man/man1/texconfig.1
+runfiles size=14255
+ texmf/texconfig/README
+ texmf/texconfig/g/generic
+ texmf/texconfig/generic
+ texmf/texconfig/tcfmgr
+ texmf/texconfig/tcfmgr.map
+ texmf/texconfig/v/vt100
+ texmf/texconfig/x/xterm
+binfiles arch=i386-openbsd size=44403
+ bin/i386-openbsd/texconfig
+binfiles arch=i386-solaris size=44403
+ bin/i386-solaris/texconfig
+binfiles arch=i386-linux size=44541
+ bin/i386-linux/texconfig
+binfiles arch=hppa-hpux size=44403
+ bin/hppa-hpux/texconfig
+binfiles arch=mips-irix size=44403
+ bin/mips-irix/texconfig
+binfiles arch=alpha-linux size=44403
+ bin/alpha-linux/texconfig
+binfiles arch=sparc-linux size=44403
+ bin/sparc-linux/texconfig
+binfiles arch=sparc-solaris size=44403
+ bin/sparc-solaris/texconfig
+binfiles arch=i386-freebsd size=44403
+ bin/i386-freebsd/texconfig
+binfiles arch=i386-darwin size=44403
+ bin/i386-darwin/texconfig
+binfiles arch=powerpc-linux size=44403
+ bin/powerpc-linux/texconfig
+binfiles arch=powerpc-aix size=44403
+ bin/powerpc-aix/texconfig
+binfiles arch=powerpc-darwin size=44403
+ bin/powerpc-darwin/texconfig
+binfiles arch=x86_64-linux size=44403
+ bin/x86_64-linux/texconfig
+
+name bin-texdoc
+category TLCore
+revision 5403
+depend bin-kpathsea
+docfiles size=11188
+ texmf/doc/man/man1/texdoc.1
+ texmf/doc/man/man1/texdoctk.1
+runfiles size=35509
+ texmf/texdoctk/texdocrc-win32.defaults
+ texmf/texdoctk/texdocrc.defaults
+ texmf/texdoctk/texdoctk.dat
+binfiles arch=i386-openbsd size=65769
+ bin/i386-openbsd/texdoc
+ bin/i386-openbsd/texdoctk
+binfiles arch=i386-solaris size=65769
+ bin/i386-solaris/texdoc
+ bin/i386-solaris/texdoctk
+binfiles arch=i386-linux size=65769
+ bin/i386-linux/texdoc
+ bin/i386-linux/texdoctk
+binfiles arch=hppa-hpux size=65769
+ bin/hppa-hpux/texdoc
+ bin/hppa-hpux/texdoctk
+binfiles arch=mips-irix size=65769
+ bin/mips-irix/texdoc
+ bin/mips-irix/texdoctk
+binfiles arch=alpha-linux size=65769
+ bin/alpha-linux/texdoc
+ bin/alpha-linux/texdoctk
+binfiles arch=sparc-linux size=65769
+ bin/sparc-linux/texdoc
+ bin/sparc-linux/texdoctk
+binfiles arch=sparc-solaris size=65769
+ bin/sparc-solaris/texdoc
+ bin/sparc-solaris/texdoctk
+binfiles arch=i386-freebsd size=65769
+ bin/i386-freebsd/texdoc
+ bin/i386-freebsd/texdoctk
+binfiles arch=win32 size=19968
+ bin/win32/texdoc.exe
+ bin/win32/texdoctk.exe
+binfiles arch=i386-darwin size=65769
+ bin/i386-darwin/texdoc
+ bin/i386-darwin/texdoctk
+binfiles arch=powerpc-linux size=65769
+ bin/powerpc-linux/texdoc
+ bin/powerpc-linux/texdoctk
+binfiles arch=powerpc-aix size=65769
+ bin/powerpc-aix/texdoc
+ bin/powerpc-aix/texdoctk
+binfiles arch=powerpc-darwin size=65769
+ bin/powerpc-darwin/texdoc
+ bin/powerpc-darwin/texdoctk
+binfiles arch=x86_64-linux size=65769
+ bin/x86_64-linux/texdoc
+ bin/x86_64-linux/texdoctk
+
+name bin-texinfo
+category TLCore
+revision 5403
+depend bin-kpathsea
+docfiles size=5987611
+ texmf/doc/info/fontname.info
+ texmf/doc/info/info-stnd.info
+ texmf/doc/info/info.info
+ texmf/doc/info/texdraw.info
+ texmf/doc/info/texi2html.info
+ texmf/doc/info/texinfo.info
+ texmf/doc/man/man1/info.1
+ texmf/doc/man/man1/infokey.1
+ texmf/doc/man/man1/install-info.1
+ texmf/doc/man/man1/makeinfo.1
+ texmf/doc/man/man1/texi2dvi.1
+ texmf/doc/man/man1/texi2html.1
+ texmf/doc/man/man1/texi2pdf.1
+ texmf/doc/man/man1/texindex.1
+ texmf/doc/man/man5/info.5
+ texmf/doc/man/man5/texinfo.5
+ texmf/doc/texi2html/texi2html.html
+ texmf/doc/texinfo/info-stnd.html
+ texmf/doc/texinfo/info-stnd.pdf
+ texmf/doc/texinfo/info.html
+ texmf/doc/texinfo/info.pdf
+ texmf/doc/texinfo/texinfo.html
+ texmf/doc/texinfo/texinfo.pdf
+binfiles arch=i386-openbsd size=1014816
+ bin/i386-openbsd/info
+ bin/i386-openbsd/infokey
+ bin/i386-openbsd/install-info
+ bin/i386-openbsd/makeinfo
+ bin/i386-openbsd/texi2dvi
+ bin/i386-openbsd/texi2html
+ bin/i386-openbsd/texi2pdf
+ bin/i386-openbsd/texindex
+binfiles arch=i386-solaris size=1052932
+ bin/i386-solaris/info
+ bin/i386-solaris/infokey
+ bin/i386-solaris/install-info
+ bin/i386-solaris/makeinfo
+ bin/i386-solaris/texi2dvi
+ bin/i386-solaris/texi2html
+ bin/i386-solaris/texi2pdf
+ bin/i386-solaris/texindex
+binfiles arch=i386-linux size=1000953
+ bin/i386-linux/info
+ bin/i386-linux/infokey
+ bin/i386-linux/install-info
+ bin/i386-linux/makeinfo
+ bin/i386-linux/texi2dvi
+ bin/i386-linux/texi2html
+ bin/i386-linux/texi2pdf
+ bin/i386-linux/texindex
+binfiles arch=hppa-hpux size=1197921
+ bin/hppa-hpux/info
+ bin/hppa-hpux/infokey
+ bin/hppa-hpux/install-info
+ bin/hppa-hpux/makeinfo
+ bin/hppa-hpux/texi2dvi
+ bin/hppa-hpux/texi2html
+ bin/hppa-hpux/texi2pdf
+ bin/hppa-hpux/texindex
+binfiles arch=mips-irix size=1357252
+ bin/mips-irix/info
+ bin/mips-irix/infokey
+ bin/mips-irix/install-info
+ bin/mips-irix/makeinfo
+ bin/mips-irix/texi2dvi
+ bin/mips-irix/texi2html
+ bin/mips-irix/texi2pdf
+ bin/mips-irix/texindex
+binfiles arch=alpha-linux size=1235100
+ bin/alpha-linux/info
+ bin/alpha-linux/infokey
+ bin/alpha-linux/install-info
+ bin/alpha-linux/makeinfo
+ bin/alpha-linux/texi2dvi
+ bin/alpha-linux/texi2html
+ bin/alpha-linux/texi2pdf
+ bin/alpha-linux/texindex
+binfiles arch=sparc-linux size=1049376
+ bin/sparc-linux/info
+ bin/sparc-linux/infokey
+ bin/sparc-linux/install-info
+ bin/sparc-linux/makeinfo
+ bin/sparc-linux/texi2dvi
+ bin/sparc-linux/texi2html
+ bin/sparc-linux/texi2pdf
+ bin/sparc-linux/texindex
+binfiles arch=sparc-solaris size=1217540
+ bin/sparc-solaris/info
+ bin/sparc-solaris/infokey
+ bin/sparc-solaris/install-info
+ bin/sparc-solaris/makeinfo
+ bin/sparc-solaris/texi2dvi
+ bin/sparc-solaris/texi2html
+ bin/sparc-solaris/texi2pdf
+ bin/sparc-solaris/texindex
+binfiles arch=i386-freebsd size=1011249
+ bin/i386-freebsd/info
+ bin/i386-freebsd/infokey
+ bin/i386-freebsd/install-info
+ bin/i386-freebsd/makeinfo
+ bin/i386-freebsd/texi2dvi
+ bin/i386-freebsd/texi2html
+ bin/i386-freebsd/texi2pdf
+ bin/i386-freebsd/texindex
+binfiles arch=win32 size=236544
+ bin/win32/install-info.exe
+ bin/win32/makeinfo.exe
+ bin/win32/texi2html.exe
+ bin/win32/texindex.exe
+binfiles arch=i386-darwin size=1093124
+ bin/i386-darwin/info
+ bin/i386-darwin/infokey
+ bin/i386-darwin/install-info
+ bin/i386-darwin/makeinfo
+ bin/i386-darwin/texi2dvi
+ bin/i386-darwin/texi2html
+ bin/i386-darwin/texi2pdf
+ bin/i386-darwin/texindex
+binfiles arch=powerpc-linux size=1084372
+ bin/powerpc-linux/info
+ bin/powerpc-linux/infokey
+ bin/powerpc-linux/install-info
+ bin/powerpc-linux/makeinfo
+ bin/powerpc-linux/texi2dvi
+ bin/powerpc-linux/texi2html
+ bin/powerpc-linux/texi2pdf
+ bin/powerpc-linux/texindex
+binfiles arch=powerpc-aix size=1174783
+ bin/powerpc-aix/info
+ bin/powerpc-aix/infokey
+ bin/powerpc-aix/install-info
+ bin/powerpc-aix/makeinfo
+ bin/powerpc-aix/texi2dvi
+ bin/powerpc-aix/texi2html
+ bin/powerpc-aix/texi2pdf
+ bin/powerpc-aix/texindex
+binfiles arch=powerpc-darwin size=1100472
+ bin/powerpc-darwin/info
+ bin/powerpc-darwin/infokey
+ bin/powerpc-darwin/install-info
+ bin/powerpc-darwin/makeinfo
+ bin/powerpc-darwin/texi2dvi
+ bin/powerpc-darwin/texi2html
+ bin/powerpc-darwin/texi2pdf
+ bin/powerpc-darwin/texindex
+binfiles arch=x86_64-linux size=1098312
+ bin/x86_64-linux/info
+ bin/x86_64-linux/infokey
+ bin/x86_64-linux/install-info
+ bin/x86_64-linux/makeinfo
+ bin/x86_64-linux/texi2dvi
+ bin/x86_64-linux/texi2html
+ bin/x86_64-linux/texi2pdf
+ bin/x86_64-linux/texindex
+
+name bin-texsis
+category TLCore
+revision 5403
+depend bin-tex
+execute BuildFormat texsis
+runfiles size=76
+ texmf/fmtutil/format.texsis.cnf
+binfiles arch=i386-openbsd size=6
+ bin/i386-openbsd/texsis
+binfiles arch=i386-solaris size=6
+ bin/i386-solaris/texsis
+binfiles arch=i386-linux size=6
+ bin/i386-linux/texsis
+binfiles arch=hppa-hpux size=6
+ bin/hppa-hpux/texsis
+binfiles arch=mips-irix size=6
+ bin/mips-irix/texsis
+binfiles arch=alpha-linux size=6
+ bin/alpha-linux/texsis
+binfiles arch=sparc-linux size=6
+ bin/sparc-linux/texsis
+binfiles arch=sparc-solaris size=6
+ bin/sparc-solaris/texsis
+binfiles arch=i386-freebsd size=6
+ bin/i386-freebsd/texsis
+binfiles arch=win32 size=2560
+ bin/win32/texsis.exe
+binfiles arch=i386-darwin size=6
+ bin/i386-darwin/texsis
+binfiles arch=powerpc-linux size=6
+ bin/powerpc-linux/texsis
+binfiles arch=powerpc-aix size=6
+ bin/powerpc-aix/texsis
+binfiles arch=powerpc-darwin size=6
+ bin/powerpc-darwin/texsis
+binfiles arch=x86_64-linux size=6
+ bin/x86_64-linux/texsis
+
+name bin-texware
+category TLCore
+revision 5403
+docfiles size=4175
+ texmf/doc/man/man1/dvitype.1
+ texmf/doc/man/man1/pooltype.1
+binfiles arch=i386-openbsd size=105864
+ bin/i386-openbsd/dvitype
+ bin/i386-openbsd/pooltype
+binfiles arch=i386-solaris size=113704
+ bin/i386-solaris/dvitype
+ bin/i386-solaris/pooltype
+binfiles arch=i386-linux size=94652
+ bin/i386-linux/dvitype
+ bin/i386-linux/pooltype
+binfiles arch=hppa-hpux size=156198
+ bin/hppa-hpux/dvitype
+ bin/hppa-hpux/pooltype
+binfiles arch=mips-irix size=200616
+ bin/mips-irix/dvitype
+ bin/mips-irix/pooltype
+binfiles arch=alpha-linux size=159560
+ bin/alpha-linux/dvitype
+ bin/alpha-linux/pooltype
+binfiles arch=sparc-linux size=116036
+ bin/sparc-linux/dvitype
+ bin/sparc-linux/pooltype
+binfiles arch=sparc-solaris size=239620
+ bin/sparc-solaris/dvitype
+ bin/sparc-solaris/pooltype
+binfiles arch=i386-freebsd size=109076
+ bin/i386-freebsd/dvitype
+ bin/i386-freebsd/pooltype
+binfiles arch=win32 size=36352
+ bin/win32/dvitype.exe
+ bin/win32/pooltype.exe
+binfiles arch=i386-darwin size=135792
+ bin/i386-darwin/dvitype
+ bin/i386-darwin/pooltype
+binfiles arch=powerpc-linux size=113124
+ bin/powerpc-linux/dvitype
+ bin/powerpc-linux/pooltype
+binfiles arch=powerpc-aix size=126229
+ bin/powerpc-aix/dvitype
+ bin/powerpc-aix/pooltype
+binfiles arch=powerpc-darwin size=132944
+ bin/powerpc-darwin/dvitype
+ bin/powerpc-darwin/pooltype
+binfiles arch=x86_64-linux size=118296
+ bin/x86_64-linux/dvitype
+ bin/x86_64-linux/pooltype
+
+name bin-thumbpdf
+category TLCore
+revision 5466
+docfiles size=2889
+ texmf/doc/man/man1/thumbpdf.1
+runfiles size=41746
+ texmf/scripts/thumbpdf/thumbpdf.pl
+binfiles arch=i386-openbsd size=41678
+ bin/i386-openbsd/thumbpdf
+binfiles arch=i386-solaris size=41678
+ bin/i386-solaris/thumbpdf
+binfiles arch=i386-linux size=41678
+ bin/i386-linux/thumbpdf
+binfiles arch=hppa-hpux size=41678
+ bin/hppa-hpux/thumbpdf
+binfiles arch=mips-irix size=41678
+ bin/mips-irix/thumbpdf
+binfiles arch=alpha-linux size=41678
+ bin/alpha-linux/thumbpdf
+binfiles arch=sparc-linux size=41678
+ bin/sparc-linux/thumbpdf
+binfiles arch=sparc-solaris size=41678
+ bin/sparc-solaris/thumbpdf
+binfiles arch=i386-freebsd size=41678
+ bin/i386-freebsd/thumbpdf
+binfiles arch=win32 size=7168
+ bin/win32/thumbpdf.exe
+binfiles arch=i386-darwin size=41678
+ bin/i386-darwin/thumbpdf
+binfiles arch=powerpc-linux size=41678
+ bin/powerpc-linux/thumbpdf
+binfiles arch=powerpc-aix size=41678
+ bin/powerpc-aix/thumbpdf
+binfiles arch=powerpc-darwin size=41678
+ bin/powerpc-darwin/thumbpdf
+binfiles arch=x86_64-linux size=41678
+ bin/x86_64-linux/thumbpdf
+
+name bin-tie
+category TLCore
+revision 5403
+depend bin-kpathsea
+docfiles size=1017
+ texmf/doc/man/man1/tie.1
+binfiles arch=i386-openbsd size=10404
+ bin/i386-openbsd/tie
+binfiles arch=i386-solaris size=9880
+ bin/i386-solaris/tie
+binfiles arch=i386-linux size=8648
+ bin/i386-linux/tie
+binfiles arch=hppa-hpux size=24663
+ bin/hppa-hpux/tie
+binfiles arch=mips-irix size=20180
+ bin/mips-irix/tie
+binfiles arch=alpha-linux size=16400
+ bin/alpha-linux/tie
+binfiles arch=sparc-linux size=10416
+ bin/sparc-linux/tie
+binfiles arch=sparc-solaris size=14516
+ bin/sparc-solaris/tie
+binfiles arch=i386-freebsd size=8796
+ bin/i386-freebsd/tie
+binfiles arch=win32 size=8192
+ bin/win32/tie.exe
+binfiles arch=i386-darwin size=17556
+ bin/i386-darwin/tie
+binfiles arch=powerpc-linux size=10648
+ bin/powerpc-linux/tie
+binfiles arch=powerpc-aix size=8503
+ bin/powerpc-aix/tie
+binfiles arch=powerpc-darwin size=18024
+ bin/powerpc-darwin/tie
+binfiles arch=x86_64-linux size=11560
+ bin/x86_64-linux/tie
+
+name bin-tifftools
+category TLCore
+revision 5403
+binfiles arch=win32 size=308736
+ bin/win32/tiff2png.exe
+
+name bin-tpic2pdftex
+category TLCore
+revision 3920
+docfiles size=72069
+ texmf/doc/tpic2pdftex/Makefile
+ texmf/doc/tpic2pdftex/beamerexample.pdf
+ texmf/doc/tpic2pdftex/beamerexample.pic
+ texmf/doc/tpic2pdftex/example.pdf
+ texmf/doc/tpic2pdftex/example.pic
+binfiles arch=i386-openbsd size=11068
+ bin/i386-openbsd/tpic2pdftex
+binfiles arch=i386-solaris size=11068
+ bin/i386-solaris/tpic2pdftex
+binfiles arch=i386-linux size=11068
+ bin/i386-linux/tpic2pdftex
+binfiles arch=hppa-hpux size=11068
+ bin/hppa-hpux/tpic2pdftex
+binfiles arch=mips-irix size=11068
+ bin/mips-irix/tpic2pdftex
+binfiles arch=alpha-linux size=11068
+ bin/alpha-linux/tpic2pdftex
+binfiles arch=sparc-linux size=11068
+ bin/sparc-linux/tpic2pdftex
+binfiles arch=sparc-solaris size=11068
+ bin/sparc-solaris/tpic2pdftex
+binfiles arch=i386-freebsd size=11068
+ bin/i386-freebsd/tpic2pdftex
+binfiles arch=i386-darwin size=11068
+ bin/i386-darwin/tpic2pdftex
+binfiles arch=powerpc-linux size=11068
+ bin/powerpc-linux/tpic2pdftex
+binfiles arch=powerpc-aix size=11068
+ bin/powerpc-aix/tpic2pdftex
+binfiles arch=powerpc-darwin size=11068
+ bin/powerpc-darwin/tpic2pdftex
+binfiles arch=x86_64-linux size=11068
+ bin/x86_64-linux/tpic2pdftex
+
+name bin-ttf2pt1
+category TLCore
+revision 5403
+docfiles size=29649
+ texmf/doc/man/man1/ttf2pt1.1
+binfiles arch=win32 size=437760
+ bin/win32/ttf2pt1.exe
+
+name bin-ttfutils
+category TLCore
+revision 5403
+docfiles size=104729
+ texmf/doc/man/man1/ttf2afm.1
+ texmf/doc/man/man1/ttf2pk.1
+ texmf/doc/man/man1/ttf2tfm.1
+ texmf/doc/man/man1/ttfdump.1
+ texmf/doc/ttf2pk/ttf2pk.doc
+ texmf/doc/ttf2pk/ttf2pk.txt
+ texmf/doc/ttf2pk/ttf2tfm.txt
+runfiles size=867175
+ texmf/fonts/enc/ttf2pk/base/T1-WGL4.enc
+ texmf/fonts/map/ttf2pk/config/ttfonts.map
+ texmf/fonts/sfd/Big5.sfd
+ texmf/fonts/sfd/DNP.sfd
+ texmf/fonts/sfd/EUC.sfd
+ texmf/fonts/sfd/HKSCS.sfd
+ texmf/fonts/sfd/KS-HLaTeX.sfd
+ texmf/fonts/sfd/SJIS.sfd
+ texmf/fonts/sfd/UBg5plus.sfd
+ texmf/fonts/sfd/UBig5.sfd
+ texmf/fonts/sfd/UGB.sfd
+ texmf/fonts/sfd/UGBK.sfd
+ texmf/fonts/sfd/UJIS.sfd
+ texmf/fonts/sfd/UKS-HLaTeX.sfd
+ texmf/fonts/sfd/UKS.sfd
+ texmf/fonts/sfd/Unicode.sfd
+ texmf/ttf2pk/VPS.rpl
+ texmf/ttf2pk/ttf2pk.cfg
+binfiles arch=i386-openbsd size=503308
+ bin/i386-openbsd/ttf2afm
+ bin/i386-openbsd/ttf2pk
+ bin/i386-openbsd/ttf2tfm
+binfiles arch=i386-solaris size=536296
+ bin/i386-solaris/ttf2afm
+ bin/i386-solaris/ttf2pk
+ bin/i386-solaris/ttf2tfm
+binfiles arch=i386-linux size=487888
+ bin/i386-linux/ttf2afm
+ bin/i386-linux/ttf2pk
+ bin/i386-linux/ttf2tfm
+binfiles arch=hppa-hpux size=666332
+ bin/hppa-hpux/ttf2afm
+ bin/hppa-hpux/ttf2pk
+ bin/hppa-hpux/ttf2tfm
+binfiles arch=mips-irix size=935932
+ bin/mips-irix/ttf2afm
+ bin/mips-irix/ttf2pk
+ bin/mips-irix/ttf2tfm
+binfiles arch=alpha-linux size=819008
+ bin/alpha-linux/ttf2afm
+ bin/alpha-linux/ttf2pk
+ bin/alpha-linux/ttf2tfm
+binfiles arch=sparc-linux size=563340
+ bin/sparc-linux/ttf2afm
+ bin/sparc-linux/ttf2pk
+ bin/sparc-linux/ttf2tfm
+binfiles arch=sparc-solaris size=844240
+ bin/sparc-solaris/ttf2afm
+ bin/sparc-solaris/ttf2pk
+ bin/sparc-solaris/ttf2tfm
+binfiles arch=i386-freebsd size=505584
+ bin/i386-freebsd/ttf2afm
+ bin/i386-freebsd/ttf2pk
+ bin/i386-freebsd/ttf2tfm
+binfiles arch=win32 size=334336
+ bin/win32/ttf2afm.exe
+ bin/win32/ttf2pk.exe
+ bin/win32/ttf2tfm.exe
+ bin/win32/ttfdump.exe
+binfiles arch=i386-darwin size=577964
+ bin/i386-darwin/ttf2afm
+ bin/i386-darwin/ttf2pk
+ bin/i386-darwin/ttf2tfm
+binfiles arch=powerpc-linux size=550028
+ bin/powerpc-linux/ttf2afm
+ bin/powerpc-linux/ttf2pk
+ bin/powerpc-linux/ttf2tfm
+binfiles arch=powerpc-aix size=699454
+ bin/powerpc-aix/ttf2afm
+ bin/powerpc-aix/ttf2pk
+ bin/powerpc-aix/ttf2tfm
+binfiles arch=powerpc-darwin size=547336
+ bin/powerpc-darwin/ttf2afm
+ bin/powerpc-darwin/ttf2pk
+ bin/powerpc-darwin/ttf2tfm
+binfiles arch=x86_64-linux size=630192
+ bin/x86_64-linux/ttf2afm
+ bin/x86_64-linux/ttf2pk
+ bin/x86_64-linux/ttf2tfm
+
+name bin-vlna
+category TLCore
+revision 5403
+binfiles arch=win32 size=9216
+ bin/win32/vlna.exe
+
+name bin-vpe
+category TLCore
+revision 5402
+depend vpe
+runfiles size=9479
+ texmf/scripts/vpe/vpe.pl
+binfiles arch=i386-openbsd size=9479
+ bin/i386-openbsd/vpe
+binfiles arch=i386-solaris size=9479
+ bin/i386-solaris/vpe
+binfiles arch=i386-linux size=9479
+ bin/i386-linux/vpe
+binfiles arch=hppa-hpux size=9479
+ bin/hppa-hpux/vpe
+binfiles arch=mips-irix size=9479
+ bin/mips-irix/vpe
+binfiles arch=alpha-linux size=9479
+ bin/alpha-linux/vpe
+binfiles arch=sparc-linux size=9479
+ bin/sparc-linux/vpe
+binfiles arch=sparc-solaris size=9479
+ bin/sparc-solaris/vpe
+binfiles arch=i386-freebsd size=9479
+ bin/i386-freebsd/vpe
+binfiles arch=win32 size=7168
+ bin/win32/vpe.exe
+binfiles arch=i386-darwin size=9479
+ bin/i386-darwin/vpe
+binfiles arch=powerpc-linux size=9479
+ bin/powerpc-linux/vpe
+binfiles arch=powerpc-aix size=9479
+ bin/powerpc-aix/vpe
+binfiles arch=powerpc-darwin size=9479
+ bin/powerpc-darwin/vpe
+binfiles arch=x86_64-linux size=9479
+ bin/x86_64-linux/vpe
+
+name bin-web
+category TLCore
+revision 5403
+depend bin-kpathsea
+docfiles size=7384
+ texmf/doc/man/man1/tangle.1
+ texmf/doc/man/man1/weave.1
+binfiles arch=i386-openbsd size=191880
+ bin/i386-openbsd/tangle
+ bin/i386-openbsd/weave
+binfiles arch=i386-solaris size=210604
+ bin/i386-solaris/tangle
+ bin/i386-solaris/weave
+binfiles arch=i386-linux size=174012
+ bin/i386-linux/tangle
+ bin/i386-linux/weave
+binfiles arch=hppa-hpux size=275241
+ bin/hppa-hpux/tangle
+ bin/hppa-hpux/weave
+binfiles arch=mips-irix size=369512
+ bin/mips-irix/tangle
+ bin/mips-irix/weave
+binfiles arch=alpha-linux size=315192
+ bin/alpha-linux/tangle
+ bin/alpha-linux/weave
+binfiles arch=sparc-linux size=216004
+ bin/sparc-linux/tangle
+ bin/sparc-linux/weave
+binfiles arch=sparc-solaris size=400828
+ bin/sparc-solaris/tangle
+ bin/sparc-solaris/weave
+binfiles arch=i386-freebsd size=204264
+ bin/i386-freebsd/tangle
+ bin/i386-freebsd/weave
+binfiles arch=win32 size=75776
+ bin/win32/tangle.exe
+ bin/win32/weave.exe
+binfiles arch=i386-darwin size=234840
+ bin/i386-darwin/tangle
+ bin/i386-darwin/weave
+binfiles arch=powerpc-linux size=221276
+ bin/powerpc-linux/tangle
+ bin/powerpc-linux/weave
+binfiles arch=powerpc-aix size=243156
+ bin/powerpc-aix/tangle
+ bin/powerpc-aix/weave
+binfiles arch=powerpc-darwin size=236184
+ bin/powerpc-darwin/tangle
+ bin/powerpc-darwin/weave
+binfiles arch=x86_64-linux size=218856
+ bin/x86_64-linux/tangle
+ bin/x86_64-linux/weave
+
+name bin-winutils
+category TLCore
+revision 5403
+binfiles arch=win32 size=2338816
+ bin/win32/aftopl.exe
+ bin/win32/bmeps.exe
+ bin/win32/cjpeg.exe
+ bin/win32/djpeg.exe
+ bin/win32/glosstex.exe
+ bin/win32/jbig2.exe
+ bin/win32/mkbitmap.exe
+ bin/win32/nkf.exe
+ bin/win32/sam2p.exe
+ bin/win32/texview.exe
+ bin/win32/todos.exe
+ bin/win32/tomac.exe
+ bin/win32/tounix.exe
+ bin/win32/type1afm.exe
+ bin/win32/unzip.exe
+ bin/win32/wget.exe
+
+name bin-wordcount
+category TLCore
+revision 4713
+depend wordcount
+binfiles arch=i386-linux size=2914
+ bin/i386-linux/wordcount.sh
+
+name bin-xdvi
+category TLCore
+revision 5391
+docfiles size=129703
+ texmf/doc/man/man1/oxdvi.1
+ texmf/doc/man/man1/xdvi.1
+ texmf/doc/man/man1/xdvizilla.1
+runfiles size=32428
+ texmf/xdvi/XDvi
+ texmf/xdvi/pixmaps/toolbar.xpm
+ texmf/xdvi/pixmaps/toolbar2.xpm
+ texmf/xdvi/xdvi.cfg
+binfiles arch=i386-openbsd size=729854
+ bin/i386-openbsd/oxdvi
+ bin/i386-openbsd/xdvi
+ bin/i386-openbsd/xdvi-xaw.bin
+ bin/i386-openbsd/xdvizilla
+binfiles arch=i386-solaris size=771446
+ bin/i386-solaris/oxdvi
+ bin/i386-solaris/xdvi
+ bin/i386-solaris/xdvi-xaw.bin
+ bin/i386-solaris/xdvizilla
+binfiles arch=i386-linux size=712038
+ bin/i386-linux/oxdvi
+ bin/i386-linux/xdvi
+ bin/i386-linux/xdvi-xaw.bin
+ bin/i386-linux/xdvizilla
+binfiles arch=hppa-hpux size=963264
+ bin/hppa-hpux/oxdvi
+ bin/hppa-hpux/xdvi
+ bin/hppa-hpux/xdvi-xaw.bin
+ bin/hppa-hpux/xdvizilla
+binfiles arch=mips-irix size=1252048
+ bin/mips-irix/oxdvi
+ bin/mips-irix/xdvi
+ bin/mips-irix/xdvi-motif.bin
+ bin/mips-irix/xdvizilla
+binfiles arch=alpha-linux size=1115298
+ bin/alpha-linux/oxdvi
+ bin/alpha-linux/xdvi
+ bin/alpha-linux/xdvi-xaw.bin
+ bin/alpha-linux/xdvizilla
+binfiles arch=sparc-linux size=801838
+ bin/sparc-linux/oxdvi
+ bin/sparc-linux/xdvi
+ bin/sparc-linux/xdvi-xaw.bin
+ bin/sparc-linux/xdvizilla
+binfiles arch=sparc-solaris size=1241412
+ bin/sparc-solaris/oxdvi
+ bin/sparc-solaris/xdvi
+ bin/sparc-solaris/xdvi-motif.bin
+ bin/sparc-solaris/xdvizilla
+binfiles arch=i386-freebsd size=721214
+ bin/i386-freebsd/oxdvi
+ bin/i386-freebsd/xdvi
+ bin/i386-freebsd/xdvi-xaw.bin
+ bin/i386-freebsd/xdvizilla
+binfiles arch=i386-darwin size=852494
+ bin/i386-darwin/oxdvi
+ bin/i386-darwin/xdvi
+ bin/i386-darwin/xdvi-xaw.bin
+ bin/i386-darwin/xdvizilla
+binfiles arch=powerpc-linux size=844282
+ bin/powerpc-linux/oxdvi
+ bin/powerpc-linux/xdvi
+ bin/powerpc-linux/xdvi-xaw.bin
+ bin/powerpc-linux/xdvizilla
+binfiles arch=powerpc-aix size=1007771
+ bin/powerpc-aix/oxdvi
+ bin/powerpc-aix/xdvi
+ bin/powerpc-aix/xdvi-motif.bin
+ bin/powerpc-aix/xdvizilla
+binfiles arch=powerpc-darwin size=833726
+ bin/powerpc-darwin/oxdvi
+ bin/powerpc-darwin/xdvi
+ bin/powerpc-darwin/xdvi-xaw.bin
+ bin/powerpc-darwin/xdvizilla
+binfiles arch=x86_64-linux size=883266
+ bin/x86_64-linux/oxdvi
+ bin/x86_64-linux/xdvi
+ bin/x86_64-linux/xdvi-xaw.bin
+ bin/x86_64-linux/xdvizilla
+
+name bin-xetex
+category TLCore
+revision 5403
+execute BuildFormat xetex
+runfiles size=31673
+ texmf/fmtutil/format.xetex.cnf
+ texmf/web2c/xetex.pool
+binfiles arch=i386-openbsd size=8445725
+ bin/i386-openbsd/xdvipdfmx
+ bin/i386-openbsd/xelatex
+ bin/i386-openbsd/xetex
+binfiles arch=i386-solaris size=9450637
+ bin/i386-solaris/xdvipdfmx
+ bin/i386-solaris/xelatex
+ bin/i386-solaris/xetex
+binfiles arch=i386-linux size=9070729
+ bin/i386-linux/xdvipdfmx
+ bin/i386-linux/xelatex
+ bin/i386-linux/xetex
+binfiles arch=hppa-hpux size=9981271
+ bin/hppa-hpux/xdvipdfmx
+ bin/hppa-hpux/xelatex
+ bin/hppa-hpux/xetex
+binfiles arch=mips-irix size=11039549
+ bin/mips-irix/xdvipdfmx
+ bin/mips-irix/xelatex
+ bin/mips-irix/xetex
+binfiles arch=alpha-linux size=10942709
+ bin/alpha-linux/xdvipdfmx
+ bin/alpha-linux/xelatex
+ bin/alpha-linux/xetex
+binfiles arch=sparc-linux size=9154961
+ bin/sparc-linux/xdvipdfmx
+ bin/sparc-linux/xelatex
+ bin/sparc-linux/xetex
+binfiles arch=sparc-solaris size=10253629
+ bin/sparc-solaris/xdvipdfmx
+ bin/sparc-solaris/xelatex
+ bin/sparc-solaris/xetex
+binfiles arch=i386-freebsd size=8793177
+ bin/i386-freebsd/xdvipdfmx
+ bin/i386-freebsd/xelatex
+ bin/i386-freebsd/xetex
+binfiles arch=win32 size=15006124
+ bin/win32/TECkit_x86.dll
+ bin/win32/cache/readme.txt
+ bin/win32/conf/conf.d/10-autohint.conf
+ bin/win32/conf/conf.d/10-no-sub-pixel.conf
+ bin/win32/conf/conf.d/10-sub-pixel-bgr.conf
+ bin/win32/conf/conf.d/10-sub-pixel-rgb.conf
+ bin/win32/conf/conf.d/10-sub-pixel-vbgr.conf
+ bin/win32/conf/conf.d/10-sub-pixel-vrgb.conf
+ bin/win32/conf/conf.d/10-unhinted.conf
+ bin/win32/conf/conf.d/20-fix-globaladvance.conf
+ bin/win32/conf/conf.d/20-lohit-gujarati.conf
+ bin/win32/conf/conf.d/20-unhint-small-vera.conf
+ bin/win32/conf/conf.d/30-amt-aliases.conf
+ bin/win32/conf/conf.d/30-urw-aliases.conf
+ bin/win32/conf/conf.d/40-generic.conf
+ bin/win32/conf/conf.d/49-sansserif.conf
+ bin/win32/conf/conf.d/50-user.conf
+ bin/win32/conf/conf.d/51-local.conf
+ bin/win32/conf/conf.d/60-latin.conf
+ bin/win32/conf/conf.d/65-fonts-persian.conf
+ bin/win32/conf/conf.d/65-nonlatin.conf
+ bin/win32/conf/conf.d/69-unifont.conf
+ bin/win32/conf/conf.d/70-no-bitmaps.conf
+ bin/win32/conf/conf.d/70-yes-bitmaps.conf
+ bin/win32/conf/conf.d/80-delicious.conf
+ bin/win32/conf/conf.d/90-synthetic.conf
+ bin/win32/conf/conf.d/README
+ bin/win32/conf/fonts.conf
+ bin/win32/conf/fonts.dtd
+ bin/win32/fc-cache.exe
+ bin/win32/fc-case.exe
+ bin/win32/fc-cat.exe
+ bin/win32/fc-glyphname.exe
+ bin/win32/fc-lang.exe
+ bin/win32/fc-list.exe
+ bin/win32/fc-match.exe
+ bin/win32/icudt34.dll
+ bin/win32/icule34.dll
+ bin/win32/icuuc34.dll
+ bin/win32/xdvipdfmx.exe
+ bin/win32/xelatex.exe
+ bin/win32/xetex.dll
+ bin/win32/xetex.exe
+binfiles arch=i386-darwin size=8861685
+ bin/i386-darwin/T1Wrap
+ bin/i386-darwin/xdv2pdf
+ bin/i386-darwin/xdvipdfmx
+ bin/i386-darwin/xelatex
+ bin/i386-darwin/xetex
+binfiles arch=powerpc-linux size=9343813
+ bin/powerpc-linux/xdvipdfmx
+ bin/powerpc-linux/xelatex
+ bin/powerpc-linux/xetex
+binfiles arch=powerpc-aix size=9976806
+ bin/powerpc-aix/xdvipdfmx
+ bin/powerpc-aix/xelatex
+ bin/powerpc-aix/xetex
+binfiles arch=powerpc-darwin size=8911493
+ bin/powerpc-darwin/T1Wrap
+ bin/powerpc-darwin/xdv2pdf
+ bin/powerpc-darwin/xdvipdfmx
+ bin/powerpc-darwin/xelatex
+ bin/powerpc-darwin/xetex
+binfiles arch=x86_64-linux size=9851333
+ bin/x86_64-linux/xdvipdfmx
+ bin/x86_64-linux/xelatex
+ bin/x86_64-linux/xetex
+
+name bin-xmltex
+category TLCore
+revision 5403
+depend bin-pdftex
+depend bin-tex
+execute BuildFormat xmltex
+runfiles size=120
+ texmf/fmtutil/format.xmltex.cnf
+binfiles arch=i386-openbsd size=78
+ bin/i386-openbsd/giftopng
+ bin/i386-openbsd/pdfxmltex
+ bin/i386-openbsd/xmltex
+binfiles arch=i386-solaris size=78
+ bin/i386-solaris/giftopng
+ bin/i386-solaris/pdfxmltex
+ bin/i386-solaris/xmltex
+binfiles arch=i386-linux size=78
+ bin/i386-linux/giftopng
+ bin/i386-linux/pdfxmltex
+ bin/i386-linux/xmltex
+binfiles arch=hppa-hpux size=78
+ bin/hppa-hpux/giftopng
+ bin/hppa-hpux/pdfxmltex
+ bin/hppa-hpux/xmltex
+binfiles arch=mips-irix size=78
+ bin/mips-irix/giftopng
+ bin/mips-irix/pdfxmltex
+ bin/mips-irix/xmltex
+binfiles arch=alpha-linux size=78
+ bin/alpha-linux/giftopng
+ bin/alpha-linux/pdfxmltex
+ bin/alpha-linux/xmltex
+binfiles arch=sparc-linux size=78
+ bin/sparc-linux/giftopng
+ bin/sparc-linux/pdfxmltex
+ bin/sparc-linux/xmltex
+binfiles arch=sparc-solaris size=78
+ bin/sparc-solaris/giftopng
+ bin/sparc-solaris/pdfxmltex
+ bin/sparc-solaris/xmltex
+binfiles arch=i386-freebsd size=78
+ bin/i386-freebsd/giftopng
+ bin/i386-freebsd/pdfxmltex
+ bin/i386-freebsd/xmltex
+binfiles arch=win32 size=5120
+ bin/win32/pdfxmltex.exe
+ bin/win32/xmltex.exe
+binfiles arch=i386-darwin size=78
+ bin/i386-darwin/giftopng
+ bin/i386-darwin/pdfxmltex
+ bin/i386-darwin/xmltex
+binfiles arch=powerpc-linux size=78
+ bin/powerpc-linux/giftopng
+ bin/powerpc-linux/pdfxmltex
+ bin/powerpc-linux/xmltex
+binfiles arch=powerpc-aix size=78
+ bin/powerpc-aix/giftopng
+ bin/powerpc-aix/pdfxmltex
+ bin/powerpc-aix/xmltex
+binfiles arch=powerpc-darwin size=78
+ bin/powerpc-darwin/giftopng
+ bin/powerpc-darwin/pdfxmltex
+ bin/powerpc-darwin/xmltex
+binfiles arch=x86_64-linux size=78
+ bin/x86_64-linux/giftopng
+ bin/x86_64-linux/pdfxmltex
+ bin/x86_64-linux/xmltex
+
+name bin-xpdf
+category TLCore
+revision 5403
+binfiles arch=win32 size=2250752
+ bin/win32/pdffonts.exe
+ bin/win32/pdfimages.exe
+ bin/win32/pdfinfo.exe
+ bin/win32/pdftops.exe
+ bin/win32/pdftotext.exe
+
+name binomexp
+category Package
+revision 3355
+shortdesc Calculate Pascal's triangle.
+longdesc The package calculates and prints rows of Pascal's triangle. It
+longdesc may be used: – simply to print successive rows of the
+longdesc triangle, or – to print the rows inside an array or tabular.
+docfiles size=82676
+ texmf-dist/doc/latex/binomexp/README details="Readme"
+ texmf-dist/doc/latex/binomexp/binomexp.pdf details="Package documentation"
+srcfiles size=15941
+ texmf-dist/source/latex/binomexp/binomexp.dtx
+ texmf-dist/source/latex/binomexp/binomexp.ins
+runfiles size=6695
+ texmf-dist/tex/latex/binomexp/binomexp.sty
+catalogue-version 1.0
+catalogue-date 2007-03-05 14:17:42 +0100
+catalogue-ctan /macros/latex/contrib/binomexp
+catalogue-license lppl
+
+name biocon
+category Package
+revision 1487
+shortdesc Typesetting biological species names
+longdesc The biocon—biological conventions—package aids the
+longdesc typesetting of some biological conventions. At the moment, it
+longdesc makes a good job of typesetting species names (and ranks below
+longdesc the species level). A distinction is made between the Plant,
+longdesc Fungi, Animalia and Bacteria kingdoms. There are default
+longdesc settings for the way species names are typeset, but they can be
+longdesc customized. Different default styles are used in different
+longdesc situations.
+docfiles size=64497
+ texmf-dist/doc/latex/biocon/README details="Readme"
+ texmf-dist/doc/latex/biocon/manual.dvi
+ texmf-dist/doc/latex/biocon/manual.tex
+ texmf-dist/doc/latex/biocon/source.dvi
+ texmf-dist/doc/latex/biocon/source.tex
+srcfiles size=18634
+ texmf-dist/source/latex/biocon/COPYING
+ texmf-dist/source/latex/biocon/INSTALL
+ texmf-dist/source/latex/biocon/biocon.nw
+runfiles size=6959
+ texmf-dist/bibtex/bib/biocon/literature.bib
+ texmf-dist/tex/latex/biocon/biocon.sty
+catalogue-version
+catalogue-date 2007-01-23 22:34:44 +0100
+catalogue-ctan /macros/latex/contrib/biocon
+catalogue-license gpl
+
+name bitfield
+category Package
+revision 714
+shortdesc Draw bit field data structure diagrams (obsolete).
+longdesc Use of this package is no longer recommended, since all its
+longdesc facilities are now better provided by the bytefield package.
+srcfiles size=21039
+ texmf-dist/source/latex/bitfield/bitfield.dtx
+ texmf-dist/source/latex/bitfield/bitfield.ins
+runfiles size=4558
+ texmf-dist/tex/latex/bitfield/bitfield.sty
+catalogue-version
+catalogue-date 2006-12-29 23:44:34 +0100
+catalogue-ctan /obsolete/macros/latex/contrib/bitfield
+catalogue-license lppl
+
+name bizcard
+category Package
+revision 1487
+shortdesc Typeset business cards.
+longdesc This is an adaption for current LaTeX of a LaTeX 2.09 style by
+longdesc Silvano Balemi. It produces cards at the normal US card size,
+longdesc 76.2mm x 50.8mm.
+docfiles size=6816
+ texmf-dist/doc/latex/bizcard/bizex.dvi
+ texmf-dist/doc/latex/bizcard/bizex.tex
+srcfiles size=12687
+ texmf-dist/source/latex/bizcard/bizcard.drv
+ texmf-dist/source/latex/bizcard/bizcard.dtx
+ texmf-dist/source/latex/bizcard/bizcard.ins
+runfiles size=3465
+ texmf-dist/tex/latex/bizcard/bizcard.sty
+catalogue-version 1.1
+catalogue-date 2006-10-03 09:07:21 +0200
+catalogue-ctan /macros/latex/contrib/bizcard
+catalogue-license gpl
+
+name blacklettert1
+category Package
+revision 716
+shortdesc T1-encoded versions of Haralambous old German fonts.
+longdesc This package provides virtual fonts for T1-like variants of
+longdesc Yannis Haralambous's old German fonts Gothic, Schwabacher and
+longdesc Fraktur (which are also available in Adobe type 1 format). The
+longdesc package includes LaTeX macros to embed the fonts into the LaTeX
+longdesc font selection scheme.
+docfiles size=110008
+ texmf-dist/doc/fonts/blacklettert1/COPYING
+ texmf-dist/doc/fonts/blacklettert1/INSTALL
+ texmf-dist/doc/fonts/blacklettert1/README
+ texmf-dist/doc/fonts/blacklettert1/blacklettert1.pdf
+srcfiles size=597294
+ texmf-dist/source/fonts/blacklettert1/Makefile
+ texmf-dist/source/fonts/blacklettert1/blacklettert1.dtx
+ texmf-dist/source/fonts/blacklettert1/blacklettert1.ins
+ texmf-dist/source/fonts/blacklettert1/cmbsy10.pl
+ texmf-dist/source/fonts/blacklettert1/cmbx10.pl
+ texmf-dist/source/fonts/blacklettert1/cmmi10.pl
+ texmf-dist/source/fonts/blacklettert1/cmmib10.pl
+ texmf-dist/source/fonts/blacklettert1/cmr10.pl
+ texmf-dist/source/fonts/blacklettert1/cmr7.pl
+ texmf-dist/source/fonts/blacklettert1/cmsy10.pl
+ texmf-dist/source/fonts/blacklettert1/cmu10.pl
+ texmf-dist/source/fonts/blacklettert1/ecbx1000.pl
+ texmf-dist/source/fonts/blacklettert1/ecrm0700.pl
+ texmf-dist/source/fonts/blacklettert1/ecrm1000.pl
+ texmf-dist/source/fonts/blacklettert1/yfrak.pl
+ texmf-dist/source/fonts/blacklettert1/ygoth.pl
+ texmf-dist/source/fonts/blacklettert1/yswab.pl
+runfiles size=38354
+ texmf-dist/fonts/tfm/public/blacklettert1/tfrak.tfm
+ texmf-dist/fonts/tfm/public/blacklettert1/tfrakls.tfm
+ texmf-dist/fonts/tfm/public/blacklettert1/tgoth.tfm
+ texmf-dist/fonts/tfm/public/blacklettert1/tswab.tfm
+ texmf-dist/fonts/vf/public/blacklettert1/tfrak.vf
+ texmf-dist/fonts/vf/public/blacklettert1/tfrakls.vf
+ texmf-dist/fonts/vf/public/blacklettert1/tgoth.vf
+ texmf-dist/fonts/vf/public/blacklettert1/tswab.vf
+ texmf-dist/tex/latex/blacklettert1/t1yfrak.fd
+catalogue-version
+catalogue-date 2007-01-28 14:56:47 +0100
+catalogue-ctan /fonts/gothic/blacklettert1
+catalogue-license dfsg
+
+name blindtext
+category Package
+revision 3109
+shortdesc Producing 'blind' text for testing.
+longdesc The package provides the commands \blindtext and \Blindtext for
+longdesc creating ‘blind’ text useful in testing new classes and
+longdesc packages, and \blinddocument, \Blinddocument for creating an
+longdesc entire random document with sections, lists, etc. The package
+longdesc supports three languages, english, (n)german and latin; the
+longdesc latin option provides a short “lorem ipsum” (for a fuller
+longdesc lorem ipsum text, see the lipsum package).
+docfiles size=3479641
+ texmf-dist/doc/latex/blindtext/ClassesEn.pdf details="Usage example (English):" language="en"
+ texmf-dist/doc/latex/blindtext/ClassesGe.pdf details="Usage example (German):" language="de"
+ texmf-dist/doc/latex/blindtext/README
+ texmf-dist/doc/latex/blindtext/blindtext.pdf details="Source listing:"
+srcfiles size=29500
+ texmf-dist/source/latex/blindtext/blindtext.dtx
+ texmf-dist/source/latex/blindtext/blindtext.ins
+runfiles size=14018
+ texmf-dist/tex/latex/blindtext/blindtext.sty
+catalogue-version 1.7
+catalogue-date 2007-01-02 21:59:28 +0100
+catalogue-ctan /macros/latex/contrib/blindtext
+catalogue-license lppl
+
+name blockdraw_mp
+category Package
+revision 5381
+shortdesc Block diagrams and bond graphs, with MetaPost.
+longdesc A set of simple MetaPost macros for the task. While the task is
+longdesc not itself difficult to program, it is felt that many users
+longdesc will be happy to have a library for the job..
+docfiles size=341653
+ texmf-dist/doc/metapost/blockdraw_mp/README details="Readme"
+ texmf-dist/doc/metapost/blockdraw_mp/blockdraw_mp.pdf
+ texmf-dist/doc/metapost/blockdraw_mp/blockdraw_mp.tex
+ texmf-dist/doc/metapost/blockdraw_mp/bonddemo.pdf
+ texmf-dist/doc/metapost/blockdraw_mp/cascadedemo.pdf
+ texmf-dist/doc/metapost/blockdraw_mp/tiddetext.sty
+ texmf-dist/doc/metapost/blockdraw_mp/tighttoc.sty
+runfiles size=22882
+ texmf-dist/metapost/blockdraw_mp/blockdraw.mp
+ texmf-dist/metapost/blockdraw_mp/bonddemo.mp
+ texmf-dist/metapost/blockdraw_mp/bondgraph.mp
+ texmf-dist/metapost/blockdraw_mp/cascadedemo.mp
+ texmf-dist/metapost/blockdraw_mp/docblockprefs.mp
+ texmf-dist/metapost/blockdraw_mp/shiftoff.mp
+catalogue-version
+catalogue-date 2007-01-22 14:58:13 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/blockdraw_mp
+catalogue-license lppl
+
+name boites
+category Package
+revision 1487
+shortdesc Boxes that may break across pages
+longdesc Defines environments that allow page breaks inside framed boxes
+longdesc whose edges may be variously fancy. The bundle includes a few
+longdesc examples (shaded box, box with a wavy line on its side, etc).
+docfiles size=40101
+ texmf-dist/doc/latex/boites/README
+ texmf-dist/doc/latex/boites/boites_exemples.dvi
+ texmf-dist/doc/latex/boites/boites_exemples.tex
+srcfiles size=722
+ texmf-dist/source/latex/boites/Makefile
+ texmf-dist/source/latex/boites/ligne_qui_ondule_sur_la_gauche.eps
+runfiles size=11688
+ texmf-dist/tex/latex/boites/boites.sty
+ texmf-dist/tex/latex/boites/boites_exemples.sty
+catalogue-version
+catalogue-date 2006-10-28 11:53:23 +0200
+catalogue-ctan /macros/latex/contrib/boites
+catalogue-license gpl
+
+name boldtensors
+category Package
+revision 4621
+shortdesc Bold latin and greek characters through simple prefix characters.
+longdesc This package provides bold latin and greek characters within
+longdesc \mathversion{normal}, by using ~ and " as prefix characters.
+docfiles size=64505
+ texmf-dist/doc/latex/boldtensors/boldtensors.pdf details="Package documentation"
+ texmf-dist/doc/latex/boldtensors/boldtensors.tex
+runfiles size=9841
+ texmf-dist/tex/latex/boldtensors/boldtensors.sty
+catalogue-version
+catalogue-date 2007-07-05 00:39:39 +0200
+catalogue-ctan /macros/latex/contrib/boldtensors
+catalogue-license gpl
+
+name bookest
+category Package
+revision 4402
+shortdesc Extended book class.
+longdesc The class extends the standard book class, in the areas of
+longdesc colour scheme management, document layout, headings and
+longdesc footers, front page layout, and other minor items.
+docfiles size=286706
+ texmf-dist/doc/latex/bookest/README details="Readme"
+ texmf-dist/doc/latex/bookest/bookestdoc-en.pdf details="Package documentation (English)" language="en"
+ texmf-dist/doc/latex/bookest/bookestdoc-en.tex
+ texmf-dist/doc/latex/bookest/bookestdoc-it.pdf details="Package documentation (Italian)" language="it"
+ texmf-dist/doc/latex/bookest/bookestdoc-it.tex
+runfiles size=17363
+ texmf-dist/tex/latex/bookest/bookest.cls
+catalogue-version 1.0.4
+catalogue-date 2007-05-22 17:23:36 +0200
+catalogue-ctan /macros/latex/contrib/bookest
+catalogue-license lppl
+
+name bookhands
+category Package
+revision 719
+shortdesc A collection of book-hand fonts.
+longdesc This is a set of book-hand (MetaFont) fonts and packages
+longdesc covering manuscript scripts from the 1st century until
+longdesc Gutenberg and Caxton. The included hands are: Square Capitals
+longdesc (1st century onwards); Roman Rustic (1st–6th centuries);
+longdesc Insular Minuscule (6th cenury onwards); Carolingian Minuscule
+longdesc (8th–12th centuries); Early Gothic (11th–12th centuries);
+longdesc Gothic Textura Quadrata (13th–15th centuries); Gothic Textura
+longdesc Prescisus vel sine pedibus (13th century onwards); Rotunda
+longdesc (13–15th centuries); Humanist Minuscule (14th century
+longdesc onwards); Uncial (3rd–6th centuries); Half Uncial (3rd–9th
+longdesc centuries); Artificial Uncial (6th–10th centuries); and
+longdesc Insular Majuscule (6th–9th centuries).
+docfiles size=1356423
+ texmf-dist/doc/fonts/bookhands/README.PRW
+ texmf-dist/doc/fonts/bookhands/README.auncial
+ texmf-dist/doc/fonts/bookhands/README.carolmin
+ texmf-dist/doc/fonts/bookhands/README.egothic
+ texmf-dist/doc/fonts/bookhands/README.humanist
+ texmf-dist/doc/fonts/bookhands/README.huncial
+ texmf-dist/doc/fonts/bookhands/README.inslrmaj
+ texmf-dist/doc/fonts/bookhands/README.inslrmin
+ texmf-dist/doc/fonts/bookhands/README.pgothic
+ texmf-dist/doc/fonts/bookhands/README.rotunda
+ texmf-dist/doc/fonts/bookhands/README.rustic
+ texmf-dist/doc/fonts/bookhands/README.sqrcaps
+ texmf-dist/doc/fonts/bookhands/README.tgothic
+ texmf-dist/doc/fonts/bookhands/README.uncial
+ texmf-dist/doc/fonts/bookhands/auncial-allfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/auncial-allfont.tex
+ texmf-dist/doc/fonts/bookhands/auncial-tryfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/auncial-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/bsamples.ps.gz
+ texmf-dist/doc/fonts/bookhands/bsamples.tex
+ texmf-dist/doc/fonts/bookhands/carolmin-allfont.tex
+ texmf-dist/doc/fonts/bookhands/carolmin-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/egothic-allfont.tex
+ texmf-dist/doc/fonts/bookhands/egothic-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/humanist-allfont.tex
+ texmf-dist/doc/fonts/bookhands/humanist-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/huncial-allfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/huncial-allfont.tex
+ texmf-dist/doc/fonts/bookhands/huncial-tryfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/huncial-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/inslrmaj-allfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/inslrmaj-allfont.tex
+ texmf-dist/doc/fonts/bookhands/inslrmaj-tryfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/inslrmaj-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/inslrmin-allfont.tex
+ texmf-dist/doc/fonts/bookhands/inslrmin-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/pgothic-allfont.tex
+ texmf-dist/doc/fonts/bookhands/pgothic-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/rotunda-allfont.tex
+ texmf-dist/doc/fonts/bookhands/rotunda-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/rustic-allfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/rustic-allfont.tex
+ texmf-dist/doc/fonts/bookhands/rustic-tryfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/rustic-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/sqrcaps-allfont.tex
+ texmf-dist/doc/fonts/bookhands/sqrcaps-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/tgothic-allfont.tex
+ texmf-dist/doc/fonts/bookhands/tgothic-tryfont.tex
+ texmf-dist/doc/fonts/bookhands/uncial-allfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/uncial-allfont.tex
+ texmf-dist/doc/fonts/bookhands/uncial-tryfont.ps.gz
+ texmf-dist/doc/fonts/bookhands/uncial-tryfont.tex
+srcfiles size=1722222
+ texmf-dist/source/latex/bookhands/auncial/auncial.dtx
+ texmf-dist/source/latex/bookhands/auncial/auncial.ins
+ texmf-dist/source/latex/bookhands/carolmin/carolmin.dtx
+ texmf-dist/source/latex/bookhands/carolmin/carolmin.ins
+ texmf-dist/source/latex/bookhands/egothic/egothic.dtx
+ texmf-dist/source/latex/bookhands/egothic/egothic.ins
+ texmf-dist/source/latex/bookhands/humanist/humanist.dtx
+ texmf-dist/source/latex/bookhands/humanist/humanist.ins
+ texmf-dist/source/latex/bookhands/huncial/huncial.dtx
+ texmf-dist/source/latex/bookhands/huncial/huncial.ins
+ texmf-dist/source/latex/bookhands/inslrmaj/inslrmaj.dtx
+ texmf-dist/source/latex/bookhands/inslrmaj/inslrmaj.ins
+ texmf-dist/source/latex/bookhands/inslrmin/inslrmin.dtx
+ texmf-dist/source/latex/bookhands/inslrmin/inslrmin.ins
+ texmf-dist/source/latex/bookhands/pgothic/pgothic.dtx
+ texmf-dist/source/latex/bookhands/pgothic/pgothic.ins
+ texmf-dist/source/latex/bookhands/rotunda/rotunda.dtx
+ texmf-dist/source/latex/bookhands/rotunda/rotunda.ins
+ texmf-dist/source/latex/bookhands/rustic/rustic.dtx
+ texmf-dist/source/latex/bookhands/rustic/rustic.ins
+ texmf-dist/source/latex/bookhands/sqrcaps/sqrcaps.dtx
+ texmf-dist/source/latex/bookhands/sqrcaps/sqrcaps.ins
+ texmf-dist/source/latex/bookhands/tgothic/tgothic.dtx
+ texmf-dist/source/latex/bookhands/tgothic/tgothic.ins
+ texmf-dist/source/latex/bookhands/uncial/uncial.dtx
+ texmf-dist/source/latex/bookhands/uncial/uncial.ins
+runfiles size=1123631
+ texmf-dist/fonts/source/public/bookhands/auncl10.mf
+ texmf-dist/fonts/source/public/bookhands/auncl17.mf
+ texmf-dist/fonts/source/public/bookhands/auncl7.mf
+ texmf-dist/fonts/source/public/bookhands/aunclb10.mf
+ texmf-dist/fonts/source/public/bookhands/aunclb17.mf
+ texmf-dist/fonts/source/public/bookhands/aunclb7.mf
+ texmf-dist/fonts/source/public/bookhands/auncldig.mf
+ texmf-dist/fonts/source/public/bookhands/auncll.mf
+ texmf-dist/fonts/source/public/bookhands/auncllig.mf
+ texmf-dist/fonts/source/public/bookhands/aunclpunct.mf
+ texmf-dist/fonts/source/public/bookhands/auncltitle.mf
+ texmf-dist/fonts/source/public/bookhands/aunclu.mf
+ texmf-dist/fonts/source/public/bookhands/cmin10.mf
+ texmf-dist/fonts/source/public/bookhands/cmin17.mf
+ texmf-dist/fonts/source/public/bookhands/cmin7.mf
+ texmf-dist/fonts/source/public/bookhands/cminb10.mf
+ texmf-dist/fonts/source/public/bookhands/cminb17.mf
+ texmf-dist/fonts/source/public/bookhands/cminb7.mf
+ texmf-dist/fonts/source/public/bookhands/cmindig.mf
+ texmf-dist/fonts/source/public/bookhands/cminl.mf
+ texmf-dist/fonts/source/public/bookhands/cminlig.mf
+ texmf-dist/fonts/source/public/bookhands/cminpunct.mf
+ texmf-dist/fonts/source/public/bookhands/cmintitle.mf
+ texmf-dist/fonts/source/public/bookhands/cminu.mf
+ texmf-dist/fonts/source/public/bookhands/egoth10.mf
+ texmf-dist/fonts/source/public/bookhands/egoth17.mf
+ texmf-dist/fonts/source/public/bookhands/egoth7.mf
+ texmf-dist/fonts/source/public/bookhands/egothb10.mf
+ texmf-dist/fonts/source/public/bookhands/egothb17.mf
+ texmf-dist/fonts/source/public/bookhands/egothb7.mf
+ texmf-dist/fonts/source/public/bookhands/egothdig.mf
+ texmf-dist/fonts/source/public/bookhands/egothl.mf
+ texmf-dist/fonts/source/public/bookhands/egothlig.mf
+ texmf-dist/fonts/source/public/bookhands/egothpunct.mf
+ texmf-dist/fonts/source/public/bookhands/egothtitle.mf
+ texmf-dist/fonts/source/public/bookhands/egothu.mf
+ texmf-dist/fonts/source/public/bookhands/hmin10.mf
+ texmf-dist/fonts/source/public/bookhands/hmin17.mf
+ texmf-dist/fonts/source/public/bookhands/hmin7.mf
+ texmf-dist/fonts/source/public/bookhands/hminb10.mf
+ texmf-dist/fonts/source/public/bookhands/hminb17.mf
+ texmf-dist/fonts/source/public/bookhands/hminb7.mf
+ texmf-dist/fonts/source/public/bookhands/hmindig.mf
+ texmf-dist/fonts/source/public/bookhands/hminl.mf
+ texmf-dist/fonts/source/public/bookhands/hminlig.mf
+ texmf-dist/fonts/source/public/bookhands/hminpunct.mf
+ texmf-dist/fonts/source/public/bookhands/hmintitle.mf
+ texmf-dist/fonts/source/public/bookhands/hminu.mf
+ texmf-dist/fonts/source/public/bookhands/huncl10.mf
+ texmf-dist/fonts/source/public/bookhands/huncl17.mf
+ texmf-dist/fonts/source/public/bookhands/huncl7.mf
+ texmf-dist/fonts/source/public/bookhands/hunclb10.mf
+ texmf-dist/fonts/source/public/bookhands/hunclb17.mf
+ texmf-dist/fonts/source/public/bookhands/hunclb7.mf
+ texmf-dist/fonts/source/public/bookhands/huncldig.mf
+ texmf-dist/fonts/source/public/bookhands/huncll.mf
+ texmf-dist/fonts/source/public/bookhands/huncllig.mf
+ texmf-dist/fonts/source/public/bookhands/hunclpunct.mf
+ texmf-dist/fonts/source/public/bookhands/huncltitle.mf
+ texmf-dist/fonts/source/public/bookhands/hunclu.mf
+ texmf-dist/fonts/source/public/bookhands/imaj10.mf
+ texmf-dist/fonts/source/public/bookhands/imaj17.mf
+ texmf-dist/fonts/source/public/bookhands/imaj7.mf
+ texmf-dist/fonts/source/public/bookhands/imajb10.mf
+ texmf-dist/fonts/source/public/bookhands/imajb17.mf
+ texmf-dist/fonts/source/public/bookhands/imajb7.mf
+ texmf-dist/fonts/source/public/bookhands/imajdig.mf
+ texmf-dist/fonts/source/public/bookhands/imajl.mf
+ texmf-dist/fonts/source/public/bookhands/imajlig.mf
+ texmf-dist/fonts/source/public/bookhands/imajpunct.mf
+ texmf-dist/fonts/source/public/bookhands/imajtitle.mf
+ texmf-dist/fonts/source/public/bookhands/imaju.mf
+ texmf-dist/fonts/source/public/bookhands/imin10.mf
+ texmf-dist/fonts/source/public/bookhands/imin17.mf
+ texmf-dist/fonts/source/public/bookhands/imin7.mf
+ texmf-dist/fonts/source/public/bookhands/iminb10.mf
+ texmf-dist/fonts/source/public/bookhands/iminb17.mf
+ texmf-dist/fonts/source/public/bookhands/iminb7.mf
+ texmf-dist/fonts/source/public/bookhands/imindig.mf
+ texmf-dist/fonts/source/public/bookhands/iminl.mf
+ texmf-dist/fonts/source/public/bookhands/iminlig.mf
+ texmf-dist/fonts/source/public/bookhands/iminpunct.mf
+ texmf-dist/fonts/source/public/bookhands/imintitle.mf
+ texmf-dist/fonts/source/public/bookhands/iminu.mf
+ texmf-dist/fonts/source/public/bookhands/pgoth10.mf
+ texmf-dist/fonts/source/public/bookhands/pgoth17.mf
+ texmf-dist/fonts/source/public/bookhands/pgoth7.mf
+ texmf-dist/fonts/source/public/bookhands/pgothb10.mf
+ texmf-dist/fonts/source/public/bookhands/pgothb17.mf
+ texmf-dist/fonts/source/public/bookhands/pgothb7.mf
+ texmf-dist/fonts/source/public/bookhands/pgothdig.mf
+ texmf-dist/fonts/source/public/bookhands/pgothl.mf
+ texmf-dist/fonts/source/public/bookhands/pgothlig.mf
+ texmf-dist/fonts/source/public/bookhands/pgothpunct.mf
+ texmf-dist/fonts/source/public/bookhands/pgothtitle.mf
+ texmf-dist/fonts/source/public/bookhands/pgothu.mf
+ texmf-dist/fonts/source/public/bookhands/rtnd10.mf
+ texmf-dist/fonts/source/public/bookhands/rtnd17.mf
+ texmf-dist/fonts/source/public/bookhands/rtnd7.mf
+ texmf-dist/fonts/source/public/bookhands/rtndb10.mf
+ texmf-dist/fonts/source/public/bookhands/rtndb17.mf
+ texmf-dist/fonts/source/public/bookhands/rtndb7.mf
+ texmf-dist/fonts/source/public/bookhands/rtnddig.mf
+ texmf-dist/fonts/source/public/bookhands/rtndl.mf
+ texmf-dist/fonts/source/public/bookhands/rtndlig.mf
+ texmf-dist/fonts/source/public/bookhands/rtndpunct.mf
+ texmf-dist/fonts/source/public/bookhands/rtndtitle.mf
+ texmf-dist/fonts/source/public/bookhands/rtndu.mf
+ texmf-dist/fonts/source/public/bookhands/rust10.mf
+ texmf-dist/fonts/source/public/bookhands/rust17.mf
+ texmf-dist/fonts/source/public/bookhands/rust7.mf
+ texmf-dist/fonts/source/public/bookhands/rustb10.mf
+ texmf-dist/fonts/source/public/bookhands/rustb17.mf
+ texmf-dist/fonts/source/public/bookhands/rustb7.mf
+ texmf-dist/fonts/source/public/bookhands/rustdig.mf
+ texmf-dist/fonts/source/public/bookhands/rustl.mf
+ texmf-dist/fonts/source/public/bookhands/rustlig.mf
+ texmf-dist/fonts/source/public/bookhands/rustpunct.mf
+ texmf-dist/fonts/source/public/bookhands/rusttitle.mf
+ texmf-dist/fonts/source/public/bookhands/rustu.mf
+ texmf-dist/fonts/source/public/bookhands/sqrc10.mf
+ texmf-dist/fonts/source/public/bookhands/sqrc17.mf
+ texmf-dist/fonts/source/public/bookhands/sqrc7.mf
+ texmf-dist/fonts/source/public/bookhands/sqrcb10.mf
+ texmf-dist/fonts/source/public/bookhands/sqrcb17.mf
+ texmf-dist/fonts/source/public/bookhands/sqrcb7.mf
+ texmf-dist/fonts/source/public/bookhands/sqrcdig.mf
+ texmf-dist/fonts/source/public/bookhands/sqrcl.mf
+ texmf-dist/fonts/source/public/bookhands/sqrclig.mf
+ texmf-dist/fonts/source/public/bookhands/sqrcpunct.mf
+ texmf-dist/fonts/source/public/bookhands/sqrctitle.mf
+ texmf-dist/fonts/source/public/bookhands/sqrcu.mf
+ texmf-dist/fonts/source/public/bookhands/tgoth10.mf
+ texmf-dist/fonts/source/public/bookhands/tgoth17.mf
+ texmf-dist/fonts/source/public/bookhands/tgoth7.mf
+ texmf-dist/fonts/source/public/bookhands/tgothb10.mf
+ texmf-dist/fonts/source/public/bookhands/tgothb17.mf
+ texmf-dist/fonts/source/public/bookhands/tgothb7.mf
+ texmf-dist/fonts/source/public/bookhands/tgothdig.mf
+ texmf-dist/fonts/source/public/bookhands/tgothl.mf
+ texmf-dist/fonts/source/public/bookhands/tgothlig.mf
+ texmf-dist/fonts/source/public/bookhands/tgothpunct.mf
+ texmf-dist/fonts/source/public/bookhands/tgothtitle.mf
+ texmf-dist/fonts/source/public/bookhands/tgothu.mf
+ texmf-dist/fonts/source/public/bookhands/uncl10.mf
+ texmf-dist/fonts/source/public/bookhands/uncl17.mf
+ texmf-dist/fonts/source/public/bookhands/uncl7.mf
+ texmf-dist/fonts/source/public/bookhands/unclb10.mf
+ texmf-dist/fonts/source/public/bookhands/unclb17.mf
+ texmf-dist/fonts/source/public/bookhands/unclb7.mf
+ texmf-dist/fonts/source/public/bookhands/uncldig.mf
+ texmf-dist/fonts/source/public/bookhands/uncll.mf
+ texmf-dist/fonts/source/public/bookhands/uncllig.mf
+ texmf-dist/fonts/source/public/bookhands/unclpunct.mf
+ texmf-dist/fonts/source/public/bookhands/uncltitle.mf
+ texmf-dist/fonts/source/public/bookhands/unclu.mf
+ texmf-dist/tex/latex/bookhands/allauncl.sty
+ texmf-dist/tex/latex/bookhands/allcmin.sty
+ texmf-dist/tex/latex/bookhands/allegoth.sty
+ texmf-dist/tex/latex/bookhands/allhmin.sty
+ texmf-dist/tex/latex/bookhands/allhuncl.sty
+ texmf-dist/tex/latex/bookhands/allimaj.sty
+ texmf-dist/tex/latex/bookhands/allimin.sty
+ texmf-dist/tex/latex/bookhands/allpgoth.sty
+ texmf-dist/tex/latex/bookhands/allrtnd.sty
+ texmf-dist/tex/latex/bookhands/allrust.sty
+ texmf-dist/tex/latex/bookhands/allsqrc.sty
+ texmf-dist/tex/latex/bookhands/alltgoth.sty
+ texmf-dist/tex/latex/bookhands/alluncl.sty
+ texmf-dist/tex/latex/bookhands/auncial.sty
+ texmf-dist/tex/latex/bookhands/carolmin.sty
+ texmf-dist/tex/latex/bookhands/egothic.sty
+ texmf-dist/tex/latex/bookhands/humanist.sty
+ texmf-dist/tex/latex/bookhands/huncial.sty
+ texmf-dist/tex/latex/bookhands/inslrmaj.sty
+ texmf-dist/tex/latex/bookhands/inslrmin.sty
+ texmf-dist/tex/latex/bookhands/ot1auncl.fd
+ texmf-dist/tex/latex/bookhands/ot1cmin.fd
+ texmf-dist/tex/latex/bookhands/ot1egoth.fd
+ texmf-dist/tex/latex/bookhands/ot1hmin.fd
+ texmf-dist/tex/latex/bookhands/ot1huncl.fd
+ texmf-dist/tex/latex/bookhands/ot1imaj.fd
+ texmf-dist/tex/latex/bookhands/ot1imin.fd
+ texmf-dist/tex/latex/bookhands/ot1pgoth.fd
+ texmf-dist/tex/latex/bookhands/ot1rtnd.fd
+ texmf-dist/tex/latex/bookhands/ot1rust.fd
+ texmf-dist/tex/latex/bookhands/ot1sqrc.fd
+ texmf-dist/tex/latex/bookhands/ot1tgoth.fd
+ texmf-dist/tex/latex/bookhands/ot1uncl.fd
+ texmf-dist/tex/latex/bookhands/pgothic.sty
+ texmf-dist/tex/latex/bookhands/rotunda.sty
+ texmf-dist/tex/latex/bookhands/rustic.sty
+ texmf-dist/tex/latex/bookhands/sqrcaps.sty
+ texmf-dist/tex/latex/bookhands/t1auncl.fd
+ texmf-dist/tex/latex/bookhands/t1cmin.fd
+ texmf-dist/tex/latex/bookhands/t1egoth.fd
+ texmf-dist/tex/latex/bookhands/t1hmin.fd
+ texmf-dist/tex/latex/bookhands/t1huncl.fd
+ texmf-dist/tex/latex/bookhands/t1imaj.fd
+ texmf-dist/tex/latex/bookhands/t1imin.fd
+ texmf-dist/tex/latex/bookhands/t1pgoth.fd
+ texmf-dist/tex/latex/bookhands/t1rtnd.fd
+ texmf-dist/tex/latex/bookhands/t1rust.fd
+ texmf-dist/tex/latex/bookhands/t1sqrc.fd
+ texmf-dist/tex/latex/bookhands/t1tgoth.fd
+ texmf-dist/tex/latex/bookhands/t1uncl.fd
+ texmf-dist/tex/latex/bookhands/tgothic.sty
+ texmf-dist/tex/latex/bookhands/uncial.sty
+catalogue-version
+catalogue-date 2007-09-14 14:06:35 +0200
+catalogue-ctan /fonts/bookhands
+catalogue-license lppl
+
+name booklet
+category Package
+revision 720
+shortdesc Aids for printing simple booklets.
+longdesc Pages of a document processed with the booklet package will be
+longdesc reordered and scalled so that they can be printed as four pages
+longdesc per physical sheet of paper, two pages per side. The resulting
+longdesc sheets will, when folded in half, assemble into a booklet.
+longdesc Instructions on producing the manual itself as a booklet are
+longdesc included.
+docfiles size=259318
+ texmf-dist/doc/latex/booklet/README details="Readme"
+ texmf-dist/doc/latex/booklet/booklet.pdf details="Package documentation"
+srcfiles size=89466
+ texmf-dist/source/latex/booklet/booklet.dtx
+ texmf-dist/source/latex/booklet/booklet.ins
+runfiles size=10262
+ texmf-dist/tex/latex/booklet/bkltprnt.sty
+ texmf-dist/tex/latex/booklet/booklet.sty
+catalogue-version 0.7a
+catalogue-date 2006-12-29 23:44:34 +0100
+catalogue-ctan /macros/latex/contrib/booklet
+catalogue-license lppl
+
+name bookman
+category Package
+revision 2488
+runfiles size=1288015
+ texmf-dist/dvips/bookman/config.ubk
+ texmf-dist/fonts/afm/adobe/bookman/pbkd8a.afm
+ texmf-dist/fonts/afm/adobe/bookman/pbkdi8a.afm
+ texmf-dist/fonts/afm/adobe/bookman/pbkl8a.afm
+ texmf-dist/fonts/afm/adobe/bookman/pbkli8a.afm
+ texmf-dist/fonts/afm/urw/bookman/ubkd8a.afm
+ texmf-dist/fonts/afm/urw/bookman/ubkdi8a.afm
+ texmf-dist/fonts/afm/urw/bookman/ubkl8a.afm
+ texmf-dist/fonts/afm/urw/bookman/ubkli8a.afm
+ texmf-dist/fonts/map/dvips/bookman/ubk.map
+ texmf-dist/fonts/tfm/adobe/bookman/pbkd.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkd7t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkd8c.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkd8r.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkd8t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdc.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdc7t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdc8t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdi.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdi7t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdi8c.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdi8r.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdi8t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdo.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdo7t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdo8c.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdo8r.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkdo8t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkl.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkl7t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkl8c.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkl8r.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkl8t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbklc.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbklc7t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbklc8t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkli.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkli7t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkli8c.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkli8r.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbkli8t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbklo.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbklo7t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbklo8c.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbklo8r.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/pbklo8t.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/rpbkd.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/rpbkdi.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/rpbkl.tfm
+ texmf-dist/fonts/tfm/adobe/bookman/rpbkli.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/bookman/pbkd8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/bookman/pbkdc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/bookman/pbkdi8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/bookman/pbkl8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/bookman/pbklc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/bookman/pbkli8z.tfm
+ texmf-dist/fonts/tfm/groff/bookman/pbkd8g.tfm
+ texmf-dist/fonts/tfm/groff/bookman/pbkdi8g.tfm
+ texmf-dist/fonts/tfm/groff/bookman/pbkl8g.tfm
+ texmf-dist/fonts/tfm/groff/bookman/pbkli8g.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkb7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkb8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkb8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkb8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbi7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbi8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbi8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbi8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkbo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkd7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkd8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkd8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkd8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdi7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdi8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdi8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdi8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkdo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkl7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkl8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkl8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkl8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubklc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubklc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkli7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkli8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkli8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkli8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubklo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubklo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubklo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubklo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkr7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkr8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkr8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkr8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkrc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkrc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkri7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkri8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkri8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkri8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkro7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkro8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkro8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/bookman/ubkro8t.tfm
+ texmf-dist/fonts/type1/urw/bookman/ubkd8a.pfb
+ texmf-dist/fonts/type1/urw/bookman/ubkd8a.pfm
+ texmf-dist/fonts/type1/urw/bookman/ubkdi8a.pfb
+ texmf-dist/fonts/type1/urw/bookman/ubkdi8a.pfm
+ texmf-dist/fonts/type1/urw/bookman/ubkl8a.pfb
+ texmf-dist/fonts/type1/urw/bookman/ubkl8a.pfm
+ texmf-dist/fonts/type1/urw/bookman/ubkli8a.pfb
+ texmf-dist/fonts/type1/urw/bookman/ubkli8a.pfm
+ texmf-dist/fonts/vf/adobe/bookman/pbkd.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkd7t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkd8c.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkd8t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdc.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdc7t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdc8t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdi.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdi7t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdi8c.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdi8t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdo.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdo7t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdo8c.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkdo8t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkl.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkl7t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkl8c.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkl8t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbklc.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbklc7t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbklc8t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkli.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkli7t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkli8c.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbkli8t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbklo.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbklo7t.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbklo8c.vf
+ texmf-dist/fonts/vf/adobe/bookman/pbklo8t.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/bookman/pbkd8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/bookman/pbkdc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/bookman/pbkdi8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/bookman/pbkl8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/bookman/pbklc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/bookman/pbkli8z.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkb7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkb8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkb8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkbc7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkbc8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkbi7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkbi8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkbi8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkbo7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkbo8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkbo8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkd7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkd8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkd8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkdc7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkdc8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkdi7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkdi8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkdi8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkdo7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkdo8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkdo8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkl7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkl8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkl8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubklc7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubklc8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkli7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkli8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkli8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubklo7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubklo8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubklo8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkr7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkr8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkr8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkrc7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkrc8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkri7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkri8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkri8t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkro7t.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkro8c.vf
+ texmf-dist/fonts/vf/urw35vf/bookman/ubkro8t.vf
+ texmf-dist/tex/latex/bookman/8rubk.fd
+ texmf-dist/tex/latex/bookman/omlubk.fd
+ texmf-dist/tex/latex/bookman/omsubk.fd
+ texmf-dist/tex/latex/bookman/ot1ubk.fd
+ texmf-dist/tex/latex/bookman/t1ubk.fd
+ texmf-dist/tex/latex/bookman/ts1ubk.fd
+
+name booktabs
+category Package
+revision 722
+shortdesc Publication quality tables in LaTeX
+longdesc The package enhances the quality of tables in LaTeX, providing
+longdesc extra commands as well as behind-the-scenes optimisation.
+longdesc Guidelines are given as to what constitutes a good table in
+longdesc this context. From version 1.61, the package offers longtable
+longdesc compatibility.
+docfiles size=213381
+ texmf-dist/doc/latex/booktabs/COPYING
+ texmf-dist/doc/latex/booktabs/README details="Readme"
+ texmf-dist/doc/latex/booktabs/booktabs.pdf details="Package documentation"
+srcfiles size=47217
+ texmf-dist/source/latex/booktabs/booktabs.dtx
+ texmf-dist/source/latex/booktabs/booktabs.ins
+runfiles size=6345
+ texmf-dist/tex/latex/booktabs/booktabs.sty
+catalogue-version 1.61803
+catalogue-date 2006-12-29 23:44:34 +0100
+catalogue-ctan /macros/latex/contrib/booktabs
+catalogue-license gpl
+
+name bophook
+category Package
+revision 723
+shortdesc Provides an At-Begin-Page hook.
+longdesc Using the \AtBeginPage hook, you can add material in the
+longdesc background of a page. \PageLayout can be used to give page
+longdesc makeup commands to be executed on every page (e.g., depend on
+longdesc the page style).
+srcfiles size=10111
+ texmf-dist/source/latex/bophook/bophook.dtx
+ texmf-dist/source/latex/bophook/bophook.ins
+runfiles size=3127
+ texmf-dist/tex/latex/bophook/bophook.sty
+catalogue-version 0.02
+catalogue-date 2006-12-31 16:08:10 +0100
+catalogue-ctan /macros/latex/contrib/bophook
+catalogue-license lppl
+
+name borceux
+category Package
+revision 613
+shortdesc Diagram macros by François Borceux.
+longdesc The macros support the construction of diagrams, such as those
+longdesc that appear in category theory texts. The user gives the list
+longdesc of vertices and arrows to be included, just as when composing a
+longdesc matrix, and the program takes care of computing the dimensions
+longdesc of the arrows and realizing the pagesetting. All the user has
+longdesc to do about the arrows is to specify their type (monomorphism,
+longdesc pair of adjoint arrows, etc.) and their direction (north,
+longdesc south-east, etc.); 12 types and 32 directions are available.
+docfiles size=51226
+ texmf-dist/doc/generic/borceux/Diagram_Mode_d_Emploi
+ texmf-dist/doc/generic/borceux/Diagram_Read_Me
+srcfiles size=24839
+ texmf-dist/source/generic/borceux/compatibility/OldDiagram
+ texmf-dist/source/generic/borceux/compatibility/OldMaxiDiagram
+ texmf-dist/source/generic/borceux/compatibility/OldMicroDiagram
+ texmf-dist/source/generic/borceux/compatibility/OldMiniDiagram
+ texmf-dist/source/generic/borceux/compatibility/OldMultipleArrows
+runfiles size=771633
+ texmf-dist/tex/generic/borceux/Diagram
+ texmf-dist/tex/generic/borceux/MaxiDiagram
+ texmf-dist/tex/generic/borceux/MicroDiagram
+ texmf-dist/tex/generic/borceux/MiniDiagram
+ texmf-dist/tex/generic/borceux/MultipleArrows
+catalogue-version
+catalogue-date 2006-10-08 18:12:11 +0200
+catalogue-ctan /macros/generic/diagrams/borceux
+catalogue-license unknown
+
+name boxhandler
+category Package
+revision 1954
+shortdesc Flexible Captioning and Deferred Box/List Printing.
+longdesc This package provides a powerful, yet simple, interface for
+longdesc managing and manipulating the captions of boxed objects (e.g.,
+longdesc tables and figures). In addition to providing wide flexibility
+longdesc in the presentation style of the captions, this package, when
+longdesc used in combination with conditionally compiled LaTeX source
+longdesc codes, provides the ability to defer or preempt the
+longdesc presentation of figures, tables, and their associated lists. In
+longdesc this way, one can, for example, by changing a single line of
+longdesc source code in the .tex file, change the output of LaTeX from a
+longdesc technical report with tables and figures interspersed in the
+longdesc text, to a journal-manuscript submission, with figures
+longdesc collected at the end of document, as well as lof and lot
+longdesc deferred or preempted.
+docfiles size=225863
+ texmf-dist/doc/latex/boxhandler/README details="README file"
+ texmf-dist/doc/latex/boxhandler/boxhandler.pdf details="Package documentation:"
+srcfiles size=81746
+ texmf-dist/source/latex/boxhandler/boxhandler.dtx
+ texmf-dist/source/latex/boxhandler/boxhandler.ins
+runfiles size=19780
+ texmf-dist/tex/latex/boxhandler/boxhandler.sty
+catalogue-version 1.10
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/boxhandler
+catalogue-license lppl
+
+name bpchem
+category Package
+revision 724
+shortdesc Typeset chemical names, formulae, etc.
+longdesc The package provides support for typesetting simple chemical
+longdesc formulae, those long IUPAC compound names, and some chemical
+longdesc idioms. It also supports the labelling of compounds and
+longdesc reference to labelled compounds.
+srcfiles size=15515
+ texmf-dist/source/latex/bpchem/bpchem.dtx
+ texmf-dist/source/latex/bpchem/bpchem.ins
+runfiles size=7426
+ texmf-dist/tex/latex/bpchem/bpchem.sty
+catalogue-version v1.06
+catalogue-date 2006-12-01 14:16:52 +0100
+catalogue-ctan /macros/latex/contrib/bpchem
+catalogue-license lppl
+
+name braille
+category Package
+revision 1487
+shortdesc Support for braille.
+longdesc This package allows the user to produce Braille documents on
+longdesc paper for the blind without knowing Braille (which can take
+longdesc years to learn). Python scripts grade1.py and grade2.py convert
+longdesc ordinary text to grade 1 and 2 braille tags; then, the LaTeX
+longdesc package braille.sty takes the tags and prints out corresponding
+longdesc braille symbols.
+docfiles size=198743
+ texmf-dist/doc/latex/braille/README.braille details="Readme"
+ texmf-dist/doc/latex/braille/braille.html details="Package documentation (HTML)"
+ texmf-dist/doc/latex/braille/braillegif1.gif
+ texmf-dist/doc/latex/braille/braillegif2.gif
+ texmf-dist/doc/latex/braille/summary.dvi
+ texmf-dist/doc/latex/braille/summary.tex
+srcfiles size=7747
+ texmf-dist/source/latex/braille/grade1.py
+ texmf-dist/source/latex/braille/grade2.py
+runfiles size=17679
+ texmf-dist/tex/latex/braille/braille.sty
+catalogue-version
+catalogue-date 2006-12-31 11:53:07 +0100
+catalogue-ctan /macros/latex/contrib/braille
+catalogue-license lppl
+
+name breakurl
+category Package
+revision 2240
+shortdesc Line-breakable \url-like links in hyperref when compiling via dvips/ps2pdf.
+longdesc This package provides a command much like hyperref’s \url
+longdesc that typesets a URL using a typewriter-like font. However, if
+longdesc the dvips driver is being used, the original \url doesn’t
+longdesc allow line breaks in the middle of the created link: the link
+longdesc comes in one atomic piece. This package allows such line breaks
+longdesc in the generated links.
+docfiles size=116074
+ texmf-dist/doc/latex/breakurl/README details="Package README"
+ texmf-dist/doc/latex/breakurl/breakurl.pdf details="Package documentation"
+srcfiles size=28252
+ texmf-dist/source/latex/breakurl/breakurl.dtx
+ texmf-dist/source/latex/breakurl/breakurl.ins
+runfiles size=7201
+ texmf-dist/tex/latex/breakurl/breakurl.sty
+catalogue-version 1.20
+catalogue-date 2006-09-14 18:16:41 +0200
+catalogue-ctan /macros/latex/contrib/breakurl
+catalogue-license lppl
+
+name breqn
+category Package
+revision 1487
+shortdesc Automatic line breaking of displayed equations.
+longdesc The package provides solutions to a number of common
+longdesc difficulties in writing displayed equations and getting high-
+longdesc quality output. For example, it is a well-known inconvenience
+longdesc that if an equation must be broken into more than one line,
+longdesc ‘left...right’ constructs cannot span lines. The breqn
+longdesc package makes them work as one would expect whether or not
+longdesc there is an intervening line break. The single most ambitious
+longdesc goal of the breqn package, however, is to support automatic
+longdesc linebreaking of displayed equations. Such linebreaking cannot
+longdesc be done without substantial changes under the hood in the way
+longdesc formulae are processed; the code must be watched carefully,
+longdesc keeping an eye on possible glitches. The package is not
+longdesc currently available from CTAN, but may be retrieved from its
+longdesc home directory; it is also available in the major TeX
+longdesc distributions.
+docfiles size=65136
+ texmf-dist/doc/latex/breqn/breqndoc.dvi
+ texmf-dist/doc/latex/breqn/eqbreaks.dvi
+ texmf-dist/doc/latex/breqn/eqlayouts.dvi
+ texmf-dist/doc/latex/breqn/readme-094.txt
+runfiles size=99400
+ texmf-dist/tex/latex/breqn/breqn.sty
+ texmf-dist/tex/latex/breqn/cmbase.sym
+ texmf-dist/tex/latex/breqn/flexisym.sty
+ texmf-dist/tex/latex/breqn/mathstyle.sty
+ texmf-dist/tex/latex/breqn/msabm.sym
+catalogue-version
+catalogue-date 2007-01-21 00:04:50 +0100
+catalogue-ctan
+catalogue-license unknown
+
+name bridge
+category Package
+revision 728
+shortdesc Typesetting bridge diagrams.
+longdesc The file contains an article that sets out macros for
+longdesc typesetting bridge in LaTeX (2.09).
+runfiles size=63
+ texmf-dist/tex/latex/bridge/bridge.tex
+catalogue-version
+catalogue-date 2007-01-30 17:40:56 +0100
+catalogue-ctan /macros/latex209/contrib/misc/bridge.tex
+catalogue-license unknown
+
+name brushscr
+category Package
+revision 1487
+shortdesc A handwriting script font.
+longdesc The BrushScript font is distributed in Adobe Type-1 format,
+longdesc that simulates hand-written characters. The font is available
+longdesc in italic shape only. The package includes the files needed by
+longdesc LaTeX in order to use that font. The file AAA_readme.tex fully
+longdesc describes the package and sample.tex illustrates its use.
+execute addMap pbsi.map
+docfiles size=21803
+ texmf-dist/doc/latex/brushscr/AAA_readme.bbl
+ texmf-dist/doc/latex/brushscr/AAA_readme.blg
+ texmf-dist/doc/latex/brushscr/AAA_readme.dvi
+ texmf-dist/doc/latex/brushscr/AAA_readme.tex
+ texmf-dist/doc/latex/brushscr/README
+ texmf-dist/doc/latex/brushscr/example.dvi
+ texmf-dist/doc/latex/brushscr/example.tex
+ texmf-dist/doc/latex/brushscr/generate.tex
+ texmf-dist/doc/latex/brushscr/kern.txt
+ texmf-dist/doc/latex/brushscr/sample.dvi
+ texmf-dist/doc/latex/brushscr/sample.tex
+srcfiles size=1227
+ texmf-dist/source/latex/brushscr/Makefile
+ texmf-dist/source/latex/brushscr/pbsi.mtx
+runfiles size=63519
+ texmf-dist/dvips/brushscr/config.pbsi
+ texmf-dist/fonts/afm/public/brushscr/BrushScriptX-Italic.afm
+ texmf-dist/fonts/map/dvips/brushscr/pbsi.map
+ texmf-dist/fonts/tfm/public/brushscr/pbsi.tfm
+ texmf-dist/fonts/tfm/public/brushscr/pbsi8r.tfm
+ texmf-dist/fonts/tfm/public/brushscr/pbsi8t.tfm
+ texmf-dist/fonts/type1/public/brushscr/BrushScriptX-Italic.pfb
+ texmf-dist/fonts/vf/public/brushscr/pbsi8t.vf
+ texmf-dist/tex/latex/brushscr/pbsi.sty
+ texmf-dist/tex/latex/brushscr/t1pbsi.fd
+catalogue-version
+catalogue-date 2006-12-21 23:43:15 +0100
+catalogue-ctan /fonts/brushscr
+catalogue-license pd
+
+name bullcntr
+category Package
+revision 5104
+shortdesc Display list item counter as regular pattern of bullets.
+longdesc The bullcntr package defines the command bullcntr, which can be
+longdesc thought of as an analogue of the \fnsymbol command: like the
+longdesc latter, it displays the value of a counter lying between 1 and
+longdesc 9, but uses, for the purpose, a regular pattern of bullets.
+docfiles size=876699
+ texmf-dist/doc/latex/bullcntr/00readme.txt
+ texmf-dist/doc/latex/bullcntr/README details="Readme"
+ texmf-dist/doc/latex/bullcntr/bullcntr-man.pdf details="Package documentation"
+ texmf-dist/doc/latex/bullcntr/bullcntr-man.tex
+ texmf-dist/doc/latex/bullcntr/bullcntr-sam.tex
+ texmf-dist/doc/latex/bullcntr/bullenum-sam.tex
+ texmf-dist/doc/latex/bullcntr/manifest.txt
+srcfiles size=65809
+ texmf-dist/source/latex/bullcntr/bullcntr.dtx
+ texmf-dist/source/latex/bullcntr/bullcntr.ins
+runfiles size=9318
+ texmf-dist/tex/latex/bullcntr/bullcntr.sty
+ texmf-dist/tex/latex/bullcntr/bullenum.sty
+catalogue-version 0.04
+catalogue-date 2007-03-30 17:54:30 +0200
+catalogue-ctan /macros/latex/contrib/bullcntr
+catalogue-license lppl
+
+name burmese
+category Package
+revision 730
+shortdesc Basic Support for Writing Burmese.
+longdesc This package provides basic support for writing Burmese. The
+longdesc package provides a preprocessor (written in Perl), an Adobe
+longdesc Type 1 font, and LaTeX macros.
+execute addMap burmese.map
+docfiles size=73686
+ texmf-dist/doc/fonts/burmese/burmguide.pdf
+srcfiles size=14123
+ texmf-dist/source/latex/burmese/birm.pl
+runfiles size=59564
+ texmf-dist/fonts/map/dvips/burmese/burmese.map
+ texmf-dist/fonts/tfm/public/burmese/burm.tfm
+ texmf-dist/fonts/type1/public/burmese/burm.pfb
+ texmf-dist/tex/latex/burmese/birm.sty
+ texmf-dist/tex/latex/burmese/ubirm.fd
+catalogue-version
+catalogue-date 2006-12-21 23:43:15 +0100
+catalogue-ctan /language/burmese
+catalogue-license lppl
+
+name bussproofs
+category Package
+revision 2382
+shortdesc Proof trees in the style of the sequent calculus.
+longdesc The package allows the construction of proof trees in the style
+longdesc of the sequent calculus and many other proof systems. One novel
+longdesc feature of the macros is they support the horizontal alignment
+longdesc according to some centre point specified with the command
+longdesc \fCenter. This is the style often used in sequent calculus
+longdesc proofs. The package works in a Plain TeX document, as well as
+longdesc in LaTeX; an exposition of the commands available is given in
+longdesc the package file itself.
+docfiles size=58723
+ texmf-dist/doc/latex/bussproofs/testbp2.pdf details="Test/example of use"
+ texmf-dist/doc/latex/bussproofs/testbp2.tex
+runfiles size=32380
+ texmf-dist/tex/latex/bussproofs/bussproofs.sty
+catalogue-version 1.0
+catalogue-date 2007-03-05 14:17:42 +0100
+catalogue-ctan /macros/latex/contrib/bussproofs
+catalogue-license lppl1.3
+
+name bytefield
+category Package
+revision 731
+shortdesc Create illustrations for network protocol specifications.
+longdesc The bytefield package helps the user create illustrations for
+longdesc network protocol specifications and anything else that utilizes
+longdesc fields of data. These illustrations show how the bits and bytes
+longdesc are laid out in a packet or in memory.
+docfiles size=503167
+ texmf-dist/doc/latex/bytefield/README details="Readme"
+ texmf-dist/doc/latex/bytefield/bytefield.pdf details="Package documentation"
+ texmf-dist/doc/latex/bytefield/example.pdf details="Example of use"
+ texmf-dist/doc/latex/bytefield/example.tex
+srcfiles size=57806
+ texmf-dist/source/latex/bytefield/bytefield.dtx
+ texmf-dist/source/latex/bytefield/bytefield.ins
+runfiles size=9872
+ texmf-dist/tex/latex/bytefield/bytefield.sty
+catalogue-version 1.2a
+catalogue-date 2006-12-21 23:43:15 +0100
+catalogue-ctan /macros/latex/contrib/bytefield
+catalogue-license lppl
+
+name c-pascal
+category Package
+revision 613
+shortdesc Typeset Python, C and Pascal programs.
+longdesc A TeX macro package for easy typesetting programs in Python, C
+longdesc and Pascal. Program source files may also be input.
+docfiles size=9825
+ texmf-dist/doc/generic/c-pascal/demo1.tex
+ texmf-dist/doc/generic/c-pascal/demo2.tex
+ texmf-dist/doc/generic/c-pascal/prog/guess.pas
+ texmf-dist/doc/generic/c-pascal/prog/sun.c
+ texmf-dist/doc/generic/c-pascal/readme.eng
+ texmf-dist/doc/generic/c-pascal/readme.pol
+runfiles size=13595
+ texmf-dist/tex/generic/c-pascal/cap.tex
+ texmf-dist/tex/generic/c-pascal/cap_c.tex
+ texmf-dist/tex/generic/c-pascal/cap_comm.tex
+ texmf-dist/tex/generic/c-pascal/cap_pas.tex
+catalogue-version 1.2
+catalogue-date 2007-07-20 21:31:18 +0200
+catalogue-ctan /macros/generic/c_pascal
+catalogue-license pd
+
+name c90enc
+category Package
+revision 2361
+runfiles size=3900
+ texmf-dist/fonts/enc/dvips/c90enc/c90.enc
+
+name calendar
+category Package
+revision 1487
+shortdesc A package for calendars and timetables.
+longdesc Includes, for example, a package which organizes date items in
+longdesc a format suitable for conference schedules, itineraries,
+longdesc academic teaching timetables and the like. Developments of the
+longdesc bundle appear as evautofl and evweek
+docfiles size=193598
+ texmf-dist/doc/latex/calendar/autofilo.dvi
+ texmf-dist/doc/latex/calendar/calendar.dvi
+ texmf-dist/doc/latex/calendar/calguide.dvi
+ texmf-dist/doc/latex/calendar/calguide.tex
+ texmf-dist/doc/latex/calendar/dates.dvi
+ texmf-dist/doc/latex/calendar/demodate.tex
+ texmf-dist/doc/latex/calendar/demoevnt.dvi
+ texmf-dist/doc/latex/calendar/demoevnt.tex
+ texmf-dist/doc/latex/calendar/demohlst.tex
+ texmf-dist/doc/latex/calendar/demohml.dvi
+ texmf-dist/doc/latex/calendar/demohml.tex
+ texmf-dist/doc/latex/calendar/demohmth.tex
+ texmf-dist/doc/latex/calendar/demomont.dvi
+ texmf-dist/doc/latex/calendar/demomont.tex
+ texmf-dist/doc/latex/calendar/demoover.tex
+ texmf-dist/doc/latex/calendar/demotsht.dvi
+ texmf-dist/doc/latex/calendar/demotsht.tex
+ texmf-dist/doc/latex/calendar/demottbl.dvi
+ texmf-dist/doc/latex/calendar/demottbl.tex
+ texmf-dist/doc/latex/calendar/demowkly.dvi
+ texmf-dist/doc/latex/calendar/demowkly.tex
+ texmf-dist/doc/latex/calendar/demoyrly.dvi
+ texmf-dist/doc/latex/calendar/demoyrly.tex
+ texmf-dist/doc/latex/calendar/dotemacs.tex
+ texmf-dist/doc/latex/calendar/dvipshpplotq.tex
+ texmf-dist/doc/latex/calendar/evntlist.dvi
+ texmf-dist/doc/latex/calendar/htmlstuf.dvi
+ texmf-dist/doc/latex/calendar/mkaddr.dvi
+ texmf-dist/doc/latex/calendar/monthly.dvi
+ texmf-dist/doc/latex/calendar/overword.dvi
+ texmf-dist/doc/latex/calendar/timesht.dvi
+ texmf-dist/doc/latex/calendar/timetabl.dvi
+ texmf-dist/doc/latex/calendar/weekly.dvi
+ texmf-dist/doc/latex/calendar/yearly.dvi
+srcfiles size=338407
+ texmf-dist/source/latex/calendar/CATALOG
+ texmf-dist/source/latex/calendar/MANIFEST
+ texmf-dist/source/latex/calendar/README
+ texmf-dist/source/latex/calendar/allcal.ins
+ texmf-dist/source/latex/calendar/autofilo.dtx
+ texmf-dist/source/latex/calendar/bigdemo.tgz
+ texmf-dist/source/latex/calendar/caldemos.dtx
+ texmf-dist/source/latex/calendar/calendar.dtx
+ texmf-dist/source/latex/calendar/dates.dtx
+ texmf-dist/source/latex/calendar/demo1997.cld
+ texmf-dist/source/latex/calendar/demoapt.cld
+ texmf-dist/source/latex/calendar/demoaptr.cld
+ texmf-dist/source/latex/calendar/demoevt.cld
+ texmf-dist/source/latex/calendar/demoevtr.cld
+ texmf-dist/source/latex/calendar/demohlst.htm
+ texmf-dist/source/latex/calendar/demohml.htm
+ texmf-dist/source/latex/calendar/demohmth.htm
+ texmf-dist/source/latex/calendar/demolist.cld
+ texmf-dist/source/latex/calendar/evntlist.dtx
+ texmf-dist/source/latex/calendar/htmlstuf.dtx
+ texmf-dist/source/latex/calendar/mkaddr.Frank
+ texmf-dist/source/latex/calendar/mkaddr.dtx
+ texmf-dist/source/latex/calendar/mkaddr.tcl
+ texmf-dist/source/latex/calendar/monthly.dtx
+ texmf-dist/source/latex/calendar/overword.dtx
+ texmf-dist/source/latex/calendar/plotutil.dtx
+ texmf-dist/source/latex/calendar/timesht.dtx
+ texmf-dist/source/latex/calendar/timetabl.dtx
+ texmf-dist/source/latex/calendar/weekly.dtx
+ texmf-dist/source/latex/calendar/yearly.dtx
+runfiles size=135628
+ texmf-dist/tex/latex/calendar/autofilo.sty
+ texmf-dist/tex/latex/calendar/calendar.sty
+ texmf-dist/tex/latex/calendar/calopts.cfg
+ texmf-dist/tex/latex/calendar/dates.cfg
+ texmf-dist/tex/latex/calendar/dates.sty
+ texmf-dist/tex/latex/calendar/evntlist.sty
+ texmf-dist/tex/latex/calendar/filoaddr.cls
+ texmf-dist/tex/latex/calendar/hlist.sty
+ texmf-dist/tex/latex/calendar/hml.sty
+ texmf-dist/tex/latex/calendar/hmonth.sty
+ texmf-dist/tex/latex/calendar/hpplotsz.sty
+ texmf-dist/tex/latex/calendar/margins.sty
+ texmf-dist/tex/latex/calendar/monthly.sty
+ texmf-dist/tex/latex/calendar/overword.sty
+ texmf-dist/tex/latex/calendar/timesht.sty
+ texmf-dist/tex/latex/calendar/timetabl.sty
+ texmf-dist/tex/latex/calendar/weekly.cls
+ texmf-dist/tex/latex/calendar/yearly.sty
+ texmf-dist/tex/plain/calendar/a5.sty
+ texmf-dist/tex/plain/calendar/a6.sty
+ texmf-dist/tex/plain/calendar/block.sty
+ texmf-dist/tex/plain/calendar/calend0.tex
+ texmf-dist/tex/plain/calendar/calend1.tex
+ texmf-dist/tex/plain/calendar/feasts.tex
+ texmf-dist/tex/plain/calendar/moon.tex
+ texmf-dist/tex/plain/calendar/sun.tex
+ texmf-dist/tex/plain/calendar/wall.sty
+catalogue-version 3.1
+catalogue-date 2006-12-31 11:53:07 +0100
+catalogue-ctan /macros/latex/contrib/calendar
+catalogue-license nosell
+
+name calligra
+category Package
+revision 101
+shortdesc Calligraphic font.
+longdesc A calligraphic font in the handwriting style of the author,
+longdesc Peter Vanroose. The font is supplied as MetaFont source A LaTeX
+longdesc package for using this font is available in fundus.
+runfiles size=301667
+ texmf-dist/fonts/source/public/calligra/callig15.mf
+ texmf-dist/fonts/source/public/calligra/calligra.mf
+ texmf-dist/fonts/tfm/public/calligra/callig15.tfm
+catalogue-version
+catalogue-date 2006-12-31 11:53:07 +0100
+catalogue-ctan /fonts/calligra
+catalogue-license unknown
+
+name calrsfs
+category Package
+revision 733
+shortdesc Copperplate calligraphic letters in LaTeX.
+longdesc Provides a maths interface to the rsfs fonts.
+docfiles size=809
+ texmf-dist/doc/fonts/calrsfs/readme details="Readme"
+runfiles size=614
+ texmf-dist/tex/latex/calrsfs/OMSrsfs.fd
+ texmf-dist/tex/latex/calrsfs/calrsfs.sty
+catalogue-version
+catalogue-date 2006-12-31 11:53:07 +0100
+catalogue-ctan /macros/latex/contrib/calrsfs
+catalogue-license unknown
+
+name calxxxx
+category Package
+revision 734
+shortdesc Prints a card-size calendar for any year.
+longdesc Prints a card-size calendar for any year, AD or BC, with
+longdesc Gregorian or Julian leap rules (useful for years before
+longdesc adoption of Gregorian rules). Cal2000.tex prints a calendar for
+longdesc years 1990--2020.
+docfiles size=9111
+ texmf-dist/doc/latex/calxxxx/readme.tex
+runfiles size=13447
+ texmf-dist/tex/latex/calxxxx/cal2000.tex
+ texmf-dist/tex/latex/calxxxx/calxxxx.tex
+catalogue-version
+catalogue-date 2006-12-31 11:53:07 +0100
+catalogue-ctan /macros/latex/contrib/calxxxx
+catalogue-license pd
+
+name camel
+category Package
+revision 1487
+shortdesc Prototype work on future citation engine.
+longdesc Comprehensive bibliography manager (developed as a
+longdesc demonstration engine for the work on citations for LaTeX3).
+docfiles size=435835
+ texmf-dist/doc/latex/camel/camel.dvi
+ texmf-dist/doc/latex/camel/index.dvi
+ texmf-dist/doc/latex/camel/law.dvi
+ texmf-dist/doc/latex/camel/sample.dvi
+ texmf-dist/doc/latex/camel/sample.tex
+ texmf-dist/doc/latex/camel/test.dvi
+ texmf-dist/doc/latex/camel/test.tex
+srcfiles size=316350
+ texmf-dist/source/latex/camel/CATALOG
+ texmf-dist/source/latex/camel/MANIFEST
+ texmf-dist/source/latex/camel/README
+ texmf-dist/source/latex/camel/bibtex.ch
+ texmf-dist/source/latex/camel/camel.dtx
+ texmf-dist/source/latex/camel/camel.ins
+ texmf-dist/source/latex/camel/law.cit
+ texmf-dist/source/latex/camel/law.cst
+ texmf-dist/source/latex/camel/law.dtx
+ texmf-dist/source/latex/camel/law.ins
+ texmf-dist/source/latex/camel/sample.adx
+ texmf-dist/source/latex/camel/sample.ldx
+ texmf-dist/source/latex/camel/sample.ndx
+runfiles size=93586
+ texmf-dist/bibtex/bib/camel/camel.bib
+ texmf-dist/bibtex/bst/camel/law.bst
+ texmf-dist/makeindex/camel/camel.ist
+ texmf-dist/tex/latex/camel/camel.sty
+catalogue-version 1.0t
+catalogue-date 2006-12-31 11:53:07 +0100
+catalogue-ctan /macros/latex/contrib/camel
+catalogue-license unknown
+
+name captcont
+category Package
+revision 4923
+shortdesc Retain float number across several floats.
+longdesc The captcont package provides the ability to continue the
+longdesc numbering in your float environment (figure, table, etc.) with
+longdesc minimal overhead. This package adds three commands: \caption*,
+longdesc \captcont, and \captcont*. Along with the \caption command,
+longdesc these give full control over the caption numbering, caption
+longdesc text and the entries in the list-of pages. The \caption and
+longdesc \captcont commands generate list-of page entries. The \caption
+longdesc and \caption* commands increment the figure or table counter.
+longdesc Captcont also fully supports the subfigure package.
+docfiles size=141893
+ texmf-dist/doc/latex/captcont/README details="Readme"
+ texmf-dist/doc/latex/captcont/captcont.pdf details="Package documentation"
+ texmf-dist/doc/latex/captcont/ltxdoc.cfg
+ texmf-dist/doc/latex/captcont/test.tex
+srcfiles size=40341
+ texmf-dist/source/latex/captcont/Makefile
+ texmf-dist/source/latex/captcont/captcont.dtx
+ texmf-dist/source/latex/captcont/captcont.ins
+runfiles size=4698
+ texmf-dist/tex/latex/captcont/captcont.sty
+catalogue-version 2.0
+catalogue-date 2006-12-31 11:53:07 +0100
+catalogue-ctan /macros/latex/contrib/captcont
+catalogue-license lppl
+
+name caption
+category Package
+revision 5342
+shortdesc Customising captions in floating environments.
+longdesc The caption package provides many ways to customise the
+longdesc captions in floating environments like figure and table, and
+longdesc cooperates with many other packages. Includes rotating
+longdesc captions, sideways captions, continued captions (for tables or
+longdesc figures that come in several parts). A list of compatibility
+longdesc notes, for other packages, is provided in the documentation.
+longdesc The package also provides the "caption outside float" facility,
+longdesc in the same way that simpler packages like capt-of do. The
+longdesc package supersedes caption2.
+docfiles size=2021708
+ texmf-dist/doc/latex/caption/README
+ texmf-dist/doc/latex/caption/caption-deu.pdf details="German documentation:" language="de"
+ texmf-dist/doc/latex/caption/caption-deu.tex
+ texmf-dist/doc/latex/caption/caption-eng.pdf details="English documentation:" language="en"
+ texmf-dist/doc/latex/caption/caption-eng.tex
+ texmf-dist/doc/latex/caption/caption-rus.pdf details="Russian documentation:" language="ru"
+ texmf-dist/doc/latex/caption/caption-rus.tex
+ texmf-dist/doc/latex/caption/caption.pdf
+ texmf-dist/doc/latex/caption/caption2.pdf
+ texmf-dist/doc/latex/caption/ltcaption.pdf
+srcfiles size=314222
+ texmf-dist/source/latex/caption/caption.dtx
+ texmf-dist/source/latex/caption/caption.ins
+ texmf-dist/source/latex/caption/caption2.dtx
+ texmf-dist/source/latex/caption/ltcaption.dtx
+runfiles size=120558
+ texmf-dist/tex/latex/caption/caption.sty
+ texmf-dist/tex/latex/caption/caption2.sty
+ texmf-dist/tex/latex/caption/caption3.sty
+ texmf-dist/tex/latex/caption/ltcaption.sty
+catalogue-version 3.1e
+catalogue-date 2007-11-04 20:28:53 +0100
+catalogue-ctan /macros/latex/contrib/caption
+catalogue-license lppl
+
+name carlisle
+category Package
+revision 1716
+docfiles size=404308
+ texmf-dist/doc/latex/carlisle/README
+ texmf-dist/doc/latex/carlisle/fix2col.pdf
+ texmf-dist/doc/latex/carlisle/ltx1.tex
+ texmf-dist/doc/latex/carlisle/ltxtable.pdf
+ texmf-dist/doc/latex/carlisle/typehtml.pdf
+srcfiles size=91619
+ texmf-dist/source/latex/carlisle/fix2col.dtx
+ texmf-dist/source/latex/carlisle/fix2col.ins
+ texmf-dist/source/latex/carlisle/ltxtable.tex
+ texmf-dist/source/latex/carlisle/typehtml.dtx
+ texmf-dist/source/latex/carlisle/typehtml.ins
+runfiles size=139761
+ texmf-dist/tex/latex/carlisle/blkarray.sty
+ texmf-dist/tex/latex/carlisle/comma.sty
+ texmf-dist/tex/latex/carlisle/dotlessj.sty
+ texmf-dist/tex/latex/carlisle/fix2col.sty
+ texmf-dist/tex/latex/carlisle/ltxtable.sty
+ texmf-dist/tex/latex/carlisle/mylatex.ltx
+ texmf-dist/tex/latex/carlisle/nopageno.sty
+ texmf-dist/tex/latex/carlisle/plain.sty
+ texmf-dist/tex/latex/carlisle/remreset.sty
+ texmf-dist/tex/latex/carlisle/scalefnt.sty
+ texmf-dist/tex/latex/carlisle/slashed.sty
+ texmf-dist/tex/latex/carlisle/typehtml.sty
+
+name carolmin-ps
+category Package
+revision 5356
+execute addMap cmin.map
+docfiles size=338
+ texmf-dist/doc/fonts/carolmin-ps/README
+runfiles size=139462
+ texmf-dist/fonts/afm/public/carolmin-ps/cmin10.afm
+ texmf-dist/fonts/afm/public/carolmin-ps/cmin17.afm
+ texmf-dist/fonts/afm/public/carolmin-ps/cmin7.afm
+ texmf-dist/fonts/afm/public/carolmin-ps/cminb10.afm
+ texmf-dist/fonts/afm/public/carolmin-ps/cminb17.afm
+ texmf-dist/fonts/afm/public/carolmin-ps/cminb7.afm
+ texmf-dist/fonts/map/dvips/carolmin-ps/cmin.map
+ texmf-dist/fonts/type1/public/carolmin-ps/cmin10.pfb
+ texmf-dist/fonts/type1/public/carolmin-ps/cmin17.pfb
+ texmf-dist/fonts/type1/public/carolmin-ps/cmin7.pfb
+ texmf-dist/fonts/type1/public/carolmin-ps/cminb10.pfb
+ texmf-dist/fonts/type1/public/carolmin-ps/cminb17.pfb
+ texmf-dist/fonts/type1/public/carolmin-ps/cminb7.pfb
+
+name casyl
+category Package
+revision 1487
+shortdesc Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics.
+longdesc The bundle constitutes a font (as MetaFont source) and LaTeX
+longdesc macros for their use within a document.
+docfiles size=8192
+ texmf-dist/doc/latex/casyl/casyldoc.dvi
+ texmf-dist/doc/latex/casyl/casyldoc.tex
+runfiles size=20865
+ texmf-dist/fonts/source/public/casyl/casyll10.mf
+ texmf-dist/fonts/tfm/public/casyl/casyll10.tfm
+ texmf-dist/tex/latex/casyl/casyltex.sty
+catalogue-version 1.0
+catalogue-date 2006-12-31 11:53:07 +0100
+catalogue-ctan /language/casyl
+catalogue-license unknown
+
+name cb
+category Package
+revision 101
+execute addMixedMap cbgreek.map
+docfiles size=1267
+ texmf-dist/doc/fonts/cb/README
+runfiles size=6310177
+ texmf-dist/fonts/enc/dvips/cb/CB.enc
+ texmf-dist/fonts/enc/dvips/cb/gmtr.enc
+ texmf-dist/fonts/map/dvips/cb/cbgreek.map
+ texmf-dist/fonts/source/public/cb/cbaccent.mf
+ texmf-dist/fonts/source/public/cb/cbbase.mf
+ texmf-dist/fonts/source/public/cb/cbdigits.mf
+ texmf-dist/fonts/source/public/cb/cbgreek.mf
+ texmf-dist/fonts/source/public/cb/cbgrk.mf
+ texmf-dist/fonts/source/public/cb/cblig.mf
+ texmf-dist/fonts/source/public/cb/cbligit.mf
+ texmf-dist/fonts/source/public/cb/cbligrm.mf
+ texmf-dist/fonts/source/public/cb/cbligsc.mf
+ texmf-dist/fonts/source/public/cb/cbligtt.mf
+ texmf-dist/fonts/source/public/cb/cblower.mf
+ texmf-dist/fonts/source/public/cb/cbmetre.mf
+ texmf-dist/fonts/source/public/cb/cbpunct.mf
+ texmf-dist/fonts/source/public/cb/cbspline.mf
+ texmf-dist/fonts/source/public/cb/cbupper.mf
+ texmf-dist/fonts/source/public/cb/glic.mf
+ texmf-dist/fonts/source/public/cb/glic1000.mf
+ texmf-dist/fonts/source/public/cb/glii.mf
+ texmf-dist/fonts/source/public/cb/glii1000.mf
+ texmf-dist/fonts/source/public/cb/glin.mf
+ texmf-dist/fonts/source/public/cb/glin1000.mf
+ texmf-dist/fonts/source/public/cb/glio.mf
+ texmf-dist/fonts/source/public/cb/glio1000.mf
+ texmf-dist/fonts/source/public/cb/gliu.mf
+ texmf-dist/fonts/source/public/cb/gliu1000.mf
+ texmf-dist/fonts/source/public/cb/gljc.mf
+ texmf-dist/fonts/source/public/cb/gljc1000.mf
+ texmf-dist/fonts/source/public/cb/gljn.mf
+ texmf-dist/fonts/source/public/cb/gljn1000.mf
+ texmf-dist/fonts/source/public/cb/gljo.mf
+ texmf-dist/fonts/source/public/cb/gljo1000.mf
+ texmf-dist/fonts/source/public/cb/glmc.mf
+ texmf-dist/fonts/source/public/cb/glmc1000.mf
+ texmf-dist/fonts/source/public/cb/glmi.mf
+ texmf-dist/fonts/source/public/cb/glmi1000.mf
+ texmf-dist/fonts/source/public/cb/glmn.mf
+ texmf-dist/fonts/source/public/cb/glmn1000.mf
+ texmf-dist/fonts/source/public/cb/glmo.mf
+ texmf-dist/fonts/source/public/cb/glmo1000.mf
+ texmf-dist/fonts/source/public/cb/glmu.mf
+ texmf-dist/fonts/source/public/cb/glmu1000.mf
+ texmf-dist/fonts/source/public/cb/gltc.mf
+ texmf-dist/fonts/source/public/cb/gltc1000.mf
+ texmf-dist/fonts/source/public/cb/gltn.mf
+ texmf-dist/fonts/source/public/cb/gltn1000.mf
+ texmf-dist/fonts/source/public/cb/glto.mf
+ texmf-dist/fonts/source/public/cb/glto1000.mf
+ texmf-dist/fonts/source/public/cb/glwc.mf
+ texmf-dist/fonts/source/public/cb/glwc1000.mf
+ texmf-dist/fonts/source/public/cb/glwi.mf
+ texmf-dist/fonts/source/public/cb/glwi1000.mf
+ texmf-dist/fonts/source/public/cb/glwn.mf
+ texmf-dist/fonts/source/public/cb/glwn1000.mf
+ texmf-dist/fonts/source/public/cb/glwo.mf
+ texmf-dist/fonts/source/public/cb/glwo1000.mf
+ texmf-dist/fonts/source/public/cb/glwu.mf
+ texmf-dist/fonts/source/public/cb/glwu1000.mf
+ texmf-dist/fonts/source/public/cb/glxc.mf
+ texmf-dist/fonts/source/public/cb/glxc1000.mf
+ texmf-dist/fonts/source/public/cb/glxi.mf
+ texmf-dist/fonts/source/public/cb/glxi1000.mf
+ texmf-dist/fonts/source/public/cb/glxn.mf
+ texmf-dist/fonts/source/public/cb/glxn1000.mf
+ texmf-dist/fonts/source/public/cb/glxo.mf
+ texmf-dist/fonts/source/public/cb/glxo1000.mf
+ texmf-dist/fonts/source/public/cb/glxu.mf
+ texmf-dist/fonts/source/public/cb/glxu1000.mf
+ texmf-dist/fonts/source/public/cb/gmmn.mf
+ texmf-dist/fonts/source/public/cb/gmmn1000.mf
+ texmf-dist/fonts/source/public/cb/gmmo.mf
+ texmf-dist/fonts/source/public/cb/gmmo1000.mf
+ texmf-dist/fonts/source/public/cb/gmtr.mf
+ texmf-dist/fonts/source/public/cb/gmtr1000.mf
+ texmf-dist/fonts/source/public/cb/gmxn.mf
+ texmf-dist/fonts/source/public/cb/gmxn1000.mf
+ texmf-dist/fonts/source/public/cb/gmxo.mf
+ texmf-dist/fonts/source/public/cb/gmxo1000.mf
+ texmf-dist/fonts/source/public/cb/gomc.mf
+ texmf-dist/fonts/source/public/cb/gomc1000.mf
+ texmf-dist/fonts/source/public/cb/gomi.mf
+ texmf-dist/fonts/source/public/cb/gomi1000.mf
+ texmf-dist/fonts/source/public/cb/gomn.mf
+ texmf-dist/fonts/source/public/cb/gomn1000.mf
+ texmf-dist/fonts/source/public/cb/gomo.mf
+ texmf-dist/fonts/source/public/cb/gomo1000.mf
+ texmf-dist/fonts/source/public/cb/gomu.mf
+ texmf-dist/fonts/source/public/cb/gomu1000.mf
+ texmf-dist/fonts/source/public/cb/goxc.mf
+ texmf-dist/fonts/source/public/cb/goxc1000.mf
+ texmf-dist/fonts/source/public/cb/goxi.mf
+ texmf-dist/fonts/source/public/cb/goxi1000.mf
+ texmf-dist/fonts/source/public/cb/goxn.mf
+ texmf-dist/fonts/source/public/cb/goxn1000.mf
+ texmf-dist/fonts/source/public/cb/goxo.mf
+ texmf-dist/fonts/source/public/cb/goxo1000.mf
+ texmf-dist/fonts/source/public/cb/goxu.mf
+ texmf-dist/fonts/source/public/cb/goxu1000.mf
+ texmf-dist/fonts/source/public/cb/grbl.mf
+ texmf-dist/fonts/source/public/cb/grbl1000.mf
+ texmf-dist/fonts/source/public/cb/grmc.mf
+ texmf-dist/fonts/source/public/cb/grmc1000.mf
+ texmf-dist/fonts/source/public/cb/grmi.mf
+ texmf-dist/fonts/source/public/cb/grmi1000.mf
+ texmf-dist/fonts/source/public/cb/grml.mf
+ texmf-dist/fonts/source/public/cb/grml1000.mf
+ texmf-dist/fonts/source/public/cb/grmn.mf
+ texmf-dist/fonts/source/public/cb/grmn1000.mf
+ texmf-dist/fonts/source/public/cb/grmo.mf
+ texmf-dist/fonts/source/public/cb/grmo1000.mf
+ texmf-dist/fonts/source/public/cb/grmu.mf
+ texmf-dist/fonts/source/public/cb/grmu1000.mf
+ texmf-dist/fonts/source/public/cb/grxc.mf
+ texmf-dist/fonts/source/public/cb/grxc1000.mf
+ texmf-dist/fonts/source/public/cb/grxi.mf
+ texmf-dist/fonts/source/public/cb/grxi1000.mf
+ texmf-dist/fonts/source/public/cb/grxl.mf
+ texmf-dist/fonts/source/public/cb/grxl1000.mf
+ texmf-dist/fonts/source/public/cb/grxn.mf
+ texmf-dist/fonts/source/public/cb/grxn1000.mf
+ texmf-dist/fonts/source/public/cb/grxo.mf
+ texmf-dist/fonts/source/public/cb/grxo1000.mf
+ texmf-dist/fonts/source/public/cb/grxu.mf
+ texmf-dist/fonts/source/public/cb/grxu1000.mf
+ texmf-dist/fonts/source/public/cb/gsmc.mf
+ texmf-dist/fonts/source/public/cb/gsmc1000.mf
+ texmf-dist/fonts/source/public/cb/gsmi.mf
+ texmf-dist/fonts/source/public/cb/gsmi1000.mf
+ texmf-dist/fonts/source/public/cb/gsmn.mf
+ texmf-dist/fonts/source/public/cb/gsmn1000.mf
+ texmf-dist/fonts/source/public/cb/gsmo.mf
+ texmf-dist/fonts/source/public/cb/gsmo1000.mf
+ texmf-dist/fonts/source/public/cb/gsmu.mf
+ texmf-dist/fonts/source/public/cb/gsmu1000.mf
+ texmf-dist/fonts/source/public/cb/gsxc.mf
+ texmf-dist/fonts/source/public/cb/gsxc1000.mf
+ texmf-dist/fonts/source/public/cb/gsxi.mf
+ texmf-dist/fonts/source/public/cb/gsxi1000.mf
+ texmf-dist/fonts/source/public/cb/gsxn.mf
+ texmf-dist/fonts/source/public/cb/gsxn1000.mf
+ texmf-dist/fonts/source/public/cb/gsxo.mf
+ texmf-dist/fonts/source/public/cb/gsxo1000.mf
+ texmf-dist/fonts/source/public/cb/gsxu.mf
+ texmf-dist/fonts/source/public/cb/gsxu1000.mf
+ texmf-dist/fonts/source/public/cb/gttc.mf
+ texmf-dist/fonts/source/public/cb/gttc1000.mf
+ texmf-dist/fonts/source/public/cb/gtti.mf
+ texmf-dist/fonts/source/public/cb/gtti1000.mf
+ texmf-dist/fonts/source/public/cb/gttn.mf
+ texmf-dist/fonts/source/public/cb/gttn1000.mf
+ texmf-dist/fonts/source/public/cb/gtto.mf
+ texmf-dist/fonts/source/public/cb/gtto1000.mf
+ texmf-dist/fonts/source/public/cb/gttu.mf
+ texmf-dist/fonts/source/public/cb/gttu1000.mf
+ texmf-dist/fonts/tfm/public/cb/glic1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glii1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glin1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glio1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gliu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gljc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gljn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gljo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glmc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glmi1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glmn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glmo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glmu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gltc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gltn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glto1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glwc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glwi1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glwn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glwo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glwu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glxc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glxi1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glxn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glxo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/glxu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gmmn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gmmo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gmtr1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gmxn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gmxo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gomc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gomi1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gomn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gomo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gomu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/goxc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/goxi1000.tfm
+ texmf-dist/fonts/tfm/public/cb/goxn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/goxo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/goxu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grbl1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grmc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grmi1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grml1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grmn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grmo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grmu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grxc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grxi1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grxl1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grxn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grxo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/grxu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsmc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsmi1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsmn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsmo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsmu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsxc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsxi1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsxn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsxo1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gsxu1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gttc1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gtti1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gttn1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gtto1000.tfm
+ texmf-dist/fonts/tfm/public/cb/gttu1000.tfm
+ texmf-dist/fonts/type1/public/cb/glic1000.pfb
+ texmf-dist/fonts/type1/public/cb/glii1000.pfb
+ texmf-dist/fonts/type1/public/cb/glin1000.pfb
+ texmf-dist/fonts/type1/public/cb/glio1000.pfb
+ texmf-dist/fonts/type1/public/cb/gliu1000.pfb
+ texmf-dist/fonts/type1/public/cb/gljc1000.pfb
+ texmf-dist/fonts/type1/public/cb/gljn1000.pfb
+ texmf-dist/fonts/type1/public/cb/gljo1000.pfb
+ texmf-dist/fonts/type1/public/cb/glmc1000.pfb
+ texmf-dist/fonts/type1/public/cb/glmi1000.pfb
+ texmf-dist/fonts/type1/public/cb/glmn1000.pfb
+ texmf-dist/fonts/type1/public/cb/glmo1000.pfb
+ texmf-dist/fonts/type1/public/cb/glmu1000.pfb
+ texmf-dist/fonts/type1/public/cb/gltc1000.pfb
+ texmf-dist/fonts/type1/public/cb/gltn1000.pfb
+ texmf-dist/fonts/type1/public/cb/glto1000.pfb
+ texmf-dist/fonts/type1/public/cb/glwc1000.pfb
+ texmf-dist/fonts/type1/public/cb/glwi1000.pfb
+ texmf-dist/fonts/type1/public/cb/glwn1000.pfb
+ texmf-dist/fonts/type1/public/cb/glwo1000.pfb
+ texmf-dist/fonts/type1/public/cb/glwu1000.pfb
+ texmf-dist/fonts/type1/public/cb/glxc1000.pfb
+ texmf-dist/fonts/type1/public/cb/glxi1000.pfb
+ texmf-dist/fonts/type1/public/cb/glxn1000.pfb
+ texmf-dist/fonts/type1/public/cb/glxo1000.pfb
+ texmf-dist/fonts/type1/public/cb/glxu1000.pfb
+ texmf-dist/fonts/type1/public/cb/gmmn1000.pfb
+ texmf-dist/fonts/type1/public/cb/gmmo1000.pfb
+ texmf-dist/fonts/type1/public/cb/gmtr1000.pfb
+ texmf-dist/fonts/type1/public/cb/gmxn1000.pfb
+ texmf-dist/fonts/type1/public/cb/gmxo1000.pfb
+ texmf-dist/fonts/type1/public/cb/gomc1000.pfb
+ texmf-dist/fonts/type1/public/cb/gomi1000.pfb
+ texmf-dist/fonts/type1/public/cb/gomn1000.pfb
+ texmf-dist/fonts/type1/public/cb/gomo1000.pfb
+ texmf-dist/fonts/type1/public/cb/gomu1000.pfb
+ texmf-dist/fonts/type1/public/cb/goxc1000.pfb
+ texmf-dist/fonts/type1/public/cb/goxi1000.pfb
+ texmf-dist/fonts/type1/public/cb/goxn1000.pfb
+ texmf-dist/fonts/type1/public/cb/goxo1000.pfb
+ texmf-dist/fonts/type1/public/cb/goxu1000.pfb
+ texmf-dist/fonts/type1/public/cb/grbl1000.pfb
+ texmf-dist/fonts/type1/public/cb/grmc1000.pfb
+ texmf-dist/fonts/type1/public/cb/grmi1000.pfb
+ texmf-dist/fonts/type1/public/cb/grmn1000.pfb
+ texmf-dist/fonts/type1/public/cb/grmo1000.pfb
+ texmf-dist/fonts/type1/public/cb/grmu1000.pfb
+ texmf-dist/fonts/type1/public/cb/grxc1000.pfb
+ texmf-dist/fonts/type1/public/cb/grxi1000.pfb
+ texmf-dist/fonts/type1/public/cb/grxn1000.pfb
+ texmf-dist/fonts/type1/public/cb/grxo1000.pfb
+ texmf-dist/fonts/type1/public/cb/grxu1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsmc1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsmi1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsmn1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsmo1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsmu1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsxc1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsxi1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsxn1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsxo1000.pfb
+ texmf-dist/fonts/type1/public/cb/gsxu1000.pfb
+ texmf-dist/fonts/type1/public/cb/gttc1000.pfb
+ texmf-dist/fonts/type1/public/cb/gtti1000.pfb
+ texmf-dist/fonts/type1/public/cb/gttn1000.pfb
+ texmf-dist/fonts/type1/public/cb/gtto1000.pfb
+ texmf-dist/fonts/type1/public/cb/gttu1000.pfb
+
+name cbcoptic
+category Package
+revision 740
+shortdesc Coptic fonts and LaTeX macros for general usage and for philology.
+longdesc CBcoptic is a bundle of files for typesetting Coptic
+longdesc philological text with the proper fonts and hyphenation. The
+longdesc fonts are based on, but much extend, the fonts of the original
+longdesc coptic bundle. The CBcoptic bundle includes font description
+longdesc files, MetaFont sources and equivalent Adobe Type 1 fonts in
+longdesc pfb format. The bundle also includes a package that provides
+longdesc some macros of philological interest.
+docfiles size=219935
+ texmf-dist/doc/latex/cbcoptic/README
+ texmf-dist/doc/latex/cbcoptic/coptfont.pdf
+ texmf-dist/doc/latex/cbcoptic/testcop.tex
+ texmf-dist/doc/latex/cbcoptic/testcopOK.pdf
+runfiles size=267260
+ texmf-dist/fonts/source/public/cbcoptic/coptbase.mf
+ texmf-dist/fonts/source/public/cbcoptic/copti.mf
+ texmf-dist/fonts/source/public/cbcoptic/copto.mf
+ texmf-dist/fonts/tfm/public/cbcoptic/copti.tfm
+ texmf-dist/fonts/tfm/public/cbcoptic/copto.tfm
+ texmf-dist/fonts/type1/public/cbcoptic/copti.pfb
+ texmf-dist/fonts/type1/public/cbcoptic/copto.pfb
+ texmf-dist/tex/latex/cbcoptic/coptic.sty
+ texmf-dist/tex/latex/cbcoptic/lcopcoptic.fd
+ texmf-dist/tex/latex/cbcoptic/prnthyph.sty
+catalogue-version
+catalogue-date 2007-01-31 23:04:11 +0100
+catalogue-ctan /language/coptic/cbcoptic
+catalogue-license lppl
+
+name cc-pl
+category Package
+revision 101
+shortdesc Polish extension of Computer Concrete fonts.
+longdesc These MetaFont sources rely on the availability of the MetaFont
+longdesc ‘Polish’ fonts and of the MetaFont sources of the original
+longdesc Concrete fonts. Adobe Type 1 versions of the fonts are
+longdesc available in package cc-plps.
+execute addMixedMap ccpl.map
+docfiles size=3675
+ texmf-dist/doc/fonts/cc-pl/00readme
+ texmf-dist/doc/fonts/cc-pl/README
+runfiles size=514758
+ texmf-dist/fonts/enc/dvips/cc-pl/cc-pl.enc
+ texmf-dist/fonts/map/dvips/cc-pl/ccpl.map
+ texmf-dist/fonts/source/public/cc-pl/fic_mic.mf
+ texmf-dist/fonts/source/public/cc-pl/g300pc.mfj
+ texmf-dist/fonts/source/public/cc-pl/g600pc.mfj
+ texmf-dist/fonts/source/public/cc-pl/pccsc10.mf
+ texmf-dist/fonts/source/public/cc-pl/pcmi10.mf
+ texmf-dist/fonts/source/public/cc-pl/pcr10.mf
+ texmf-dist/fonts/source/public/cc-pl/pcr5.mf
+ texmf-dist/fonts/source/public/cc-pl/pcr6.mf
+ texmf-dist/fonts/source/public/cc-pl/pcr7.mf
+ texmf-dist/fonts/source/public/cc-pl/pcr8.mf
+ texmf-dist/fonts/source/public/cc-pl/pcr9.mf
+ texmf-dist/fonts/source/public/cc-pl/pcsl10.mf
+ texmf-dist/fonts/source/public/cc-pl/pcslc9.mf
+ texmf-dist/fonts/source/public/cc-pl/pcti10.mf
+ texmf-dist/fonts/tfm/public/cc-pl/pccsc10.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcmi10.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcr10.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcr5.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcr6.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcr7.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcr8.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcr9.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcsl10.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcslc9.tfm
+ texmf-dist/fonts/tfm/public/cc-pl/pcti10.tfm
+ texmf-dist/fonts/type1/public/cc-pl/pccsc10.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcmi10.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcr10.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcr5.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcr6.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcr7.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcr8.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcr9.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcsl10.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcslc9.pfb
+ texmf-dist/fonts/type1/public/cc-pl/pcti10.pfb
+catalogue-version 1.02.1
+catalogue-date 2007-03-20 00:06:44 +0100
+catalogue-ctan /language/polish/cc-pl.zip
+catalogue-license pd
+
+name ccaption
+category Package
+revision 2411
+shortdesc Continuation headings and legends for floats.
+longdesc A package providing commands for ‘continuation captions’,
+longdesc unnumbered captions, and also a non-specific legend heading for
+longdesc any environment. Methods are also provided to define captions
+longdesc for use outside float (e.g., figure and table) environments,
+longdesc and to define new float environments and Lists of Floats. Tools
+longdesc are provided for specifying your own captioning styles.
+docfiles size=391839
+ texmf-dist/doc/latex/ccaption/README details="Readme"
+ texmf-dist/doc/latex/ccaption/ccaption.pdf details="Package documentation"
+srcfiles size=148425
+ texmf-dist/source/latex/ccaption/ccaption.dtx
+ texmf-dist/source/latex/ccaption/ccaption.ins
+runfiles size=23122
+ texmf-dist/tex/latex/ccaption/ccaption.sty
+catalogue-version 3.2a
+catalogue-date 2006-12-31 16:08:10 +0100
+catalogue-ctan /macros/latex/contrib/ccaption
+catalogue-license lppl
+
+name ccfonts
+category Package
+revision 742
+shortdesc Support for Concrete text and math fonts in LaTeX.
+longdesc LaTeX font definition files for the Concrete fonts and a LaTeX
+longdesc package for typesetting documents using Concrete as the default
+longdesc font family. The files support OT1, T1, TS1, and Concrete
+longdesc mathematics including AMS fonts (Ulrik Vieth's concmath).
+docfiles size=4544
+ texmf-dist/doc/latex/ccfonts/readme details="Readme"
+srcfiles size=17238
+ texmf-dist/source/latex/ccfonts/cc.fdd
+ texmf-dist/source/latex/ccfonts/ccfonts.dtx
+ texmf-dist/source/latex/ccfonts/ccfonts.ins
+runfiles size=6550
+ texmf-dist/tex/latex/ccfonts/ccfonts.sty
+ texmf-dist/tex/latex/ccfonts/t1ccr.fd
+ texmf-dist/tex/latex/ccfonts/ts1ccr.fd
+catalogue-version 1.1
+catalogue-date 2006-12-31 16:08:10 +0100
+catalogue-ctan /macros/latex/contrib/ccfonts
+catalogue-license lppl
+
+name cchess
+category Package
+revision 743
+shortdesc Chinese chess.
+longdesc Macros and a font for typesetting Chinese Chess board diagrams.
+longdesc The font is distributed as MetaFont source.
+runfiles size=52681
+ texmf-dist/fonts/source/public/cchess/cchess46.mf
+ texmf-dist/fonts/source/public/cchess/ccpieces.mf
+ texmf-dist/fonts/tfm/public/cchess/cchess46.tfm
+ texmf-dist/tex/latex/cchess/cchess.sty
+catalogue-version
+catalogue-date 2006-12-31 16:08:10 +0100
+catalogue-ctan /macros/latex/contrib/cchess
+catalogue-license unknown
+
+name cclicenses
+category Package
+revision 5017
+docfiles size=95406
+ texmf-dist/doc/latex/cclicenses/README
+ texmf-dist/doc/latex/cclicenses/cclicenses_short.pdf
+srcfiles size=11350
+ texmf-dist/source/latex/cclicenses/cclicenses.dtx
+ texmf-dist/source/latex/cclicenses/cclicenses.ins
+runfiles size=4225
+ texmf-dist/tex/latex/cclicenses/cclicenses.sty
+
+name cd
+category Package
+revision 1487
+shortdesc Typeset CD covers.
+docfiles size=95715
+ texmf-dist/doc/latex/cd/CD.dvi
+ texmf-dist/doc/latex/cd/CD.tex
+ texmf-dist/doc/latex/cd/CDList.tex
+ texmf-dist/doc/latex/cd/README details="Readme"
+ texmf-dist/doc/latex/cd/cd.pdf details="Package documentation"
+ texmf-dist/doc/latex/cd/example.dat
+srcfiles size=27938
+ texmf-dist/source/latex/cd/cd.dtx
+ texmf-dist/source/latex/cd/cd.ins
+runfiles size=14277
+ texmf-dist/tex/latex/cd/cd.cls
+catalogue-version
+catalogue-date 2007-01-31 23:04:11 +0100
+catalogue-ctan /macros/latex/contrib/cd
+catalogue-license unknown
+
+name cd-cover
+category Package
+revision 745
+docfiles size=975
+ texmf-dist/doc/latex/cd-cover/README
+srcfiles size=46270
+ texmf-dist/source/latex/cd-cover/cd-cover.dtx
+ texmf-dist/source/latex/cd-cover/cd-cover.ins
+runfiles size=17379
+ texmf-dist/tex/latex/cd-cover/cd-cover.cls
+ texmf-dist/tex/latex/cd-cover/cd-cover.sty
+
+name cdpbundl
+category Package
+revision 2411
+docfiles size=692929
+ texmf-dist/doc/latex/cdpbundl/00readme.txt
+ texmf-dist/doc/latex/cdpbundl/README
+ texmf-dist/doc/latex/cdpbundl/manifest.txt
+ texmf-dist/doc/latex/cdpbundl/overview.pdf
+srcfiles size=241674
+ texmf-dist/source/latex/cdpbundl/cdpbundl.dtx
+ texmf-dist/source/latex/cdpbundl/cdpbundl.ins
+runfiles size=93849
+ texmf-dist/tex/latex/cdpbundl/adiseal.sty
+ texmf-dist/tex/latex/cdpbundl/articoletteracdp.cls
+ texmf-dist/tex/latex/cdpbundl/cdpaddon.sty
+ texmf-dist/tex/latex/cdpbundl/cdpshues-example.def
+ texmf-dist/tex/latex/cdpbundl/cdpshues.cfg
+ texmf-dist/tex/latex/cdpbundl/epson-stylus-740.def
+ texmf-dist/tex/latex/cdpbundl/hp-laserjet-4500.def
+ texmf-dist/tex/latex/cdpbundl/lettcdpadi.cls
+ texmf-dist/tex/latex/cdpbundl/letteracdp.cls
+
+name cellspace
+category Package
+revision 1869
+shortdesc Ensure minimal spacing of table cells.
+longdesc It is well known that high or deep cells tend to touch the
+longdesc \hlines of a tabular. This package provides a modifier S acting
+longdesc on usual column types so that to ensure a minimal distance that
+longdesc can be controlled through two parameters \cellspacetoplimit and
+longdesc \cellspacebottomlimit. The approach employed by this package is
+longdesc noticeably simpler than that of tabls, which considers the
+longdesc dimensions of each entire row; whereas you can ask the
+longdesc cellspace only to look at the cells of potentially difficult
+longdesc columns.
+docfiles size=486349
+ texmf-dist/doc/latex/cellspace/README details="Readme"
+ texmf-dist/doc/latex/cellspace/cellspace.pdf details="Package documentation"
+ texmf-dist/doc/latex/cellspace/cellspace.tex
+runfiles size=4609
+ texmf-dist/tex/latex/cellspace/cellspace.sty
+catalogue-version 1.5
+catalogue-date 2007-03-05 14:17:42 +0100
+catalogue-ctan /macros/latex/contrib/cellspace
+catalogue-license lppl
+
+name cellular
+category Package
+revision 621
+shortdesc Cellular table construction.
+longdesc Cellular tables are ruled tables with spanned cells; the
+longdesc present package achieves that, and includes several tricks for
+longdesc dealing with the idiosyncracies of printers of the time when it
+longdesc was written.
+docfiles size=4890
+ texmf-dist/doc/plain/cellular/cellular.doc
+ texmf-dist/doc/plain/cellular/origin
+runfiles size=25112
+ texmf-dist/tex/plain/cellular/cell1.tex
+ texmf-dist/tex/plain/cellular/cell2.tex
+ texmf-dist/tex/plain/cellular/cell3.tex
+ texmf-dist/tex/plain/cellular/cell4.tex
+ texmf-dist/tex/plain/cellular/cellular.tex
+catalogue-version
+catalogue-date 2006-12-31 16:08:10 +0100
+catalogue-ctan /macros/plain/contrib/cellular
+catalogue-license unknown
+
+name changebar
+category Package
+revision 747
+shortdesc Generate changebars in LaTeX documents.
+longdesc Identify areas of text to be marked with changebars with the
+longdesc \cbstart and \cbend commands; the bars may be coloured. The
+longdesc package uses 'drivers' to place the bars; the available drivers
+longdesc can work with dvitoln03, dvitops, dvips, the emTeX and TeXtures
+longdesc DVI drivers, and VTeX and PDFTeX.
+docfiles size=732332
+ texmf-dist/doc/latex/changebar/00readme.txt details="Readme"
+ texmf-dist/doc/latex/changebar/catalog.txt
+ texmf-dist/doc/latex/changebar/cbtest1-ltx.pdf
+ texmf-dist/doc/latex/changebar/cbtest1-pdf.pdf
+ texmf-dist/doc/latex/changebar/cbtest1.tex
+ texmf-dist/doc/latex/changebar/cbtest2-ltx.pdf
+ texmf-dist/doc/latex/changebar/cbtest2-pdf.pdf
+ texmf-dist/doc/latex/changebar/cbtest2.tex
+ texmf-dist/doc/latex/changebar/changebar.bug
+ texmf-dist/doc/latex/changebar/changebar.pdf details="Package documentation"
+ texmf-dist/doc/latex/changebar/chbar.1
+ texmf-dist/doc/latex/changebar/chbar.sh
+ texmf-dist/doc/latex/changebar/manifest.txt
+srcfiles size=114074
+ texmf-dist/source/latex/changebar/changebar.dtx
+ texmf-dist/source/latex/changebar/changebar.ins
+runfiles size=30507
+ texmf-dist/tex/latex/changebar/changebar.sty
+catalogue-version 3.5c
+catalogue-date 2006-12-31 16:08:10 +0100
+catalogue-ctan /macros/latex/contrib/changebar
+catalogue-license lppl
+
+name changes
+category Package
+revision 5161
+shortdesc Manual change markup.
+longdesc The changes-package allows the user to manually markup changes
+longdesc of text, such as additions, deletions, or replacements. Changed
+longdesc text is shown in a different colour; deleted text is crossed
+longdesc out. The package allows free defining of additional authors and
+longdesc their associated colour. It also allows you to define a markup
+longdesc for authors or annotations.
+docfiles size=539712
+ texmf-dist/doc/latex/changes/README details="Readme"
+ texmf-dist/doc/latex/changes/changes.example1.tex
+ texmf-dist/doc/latex/changes/changes.example2.tex
+ texmf-dist/doc/latex/changes/changes.example3.tex
+ texmf-dist/doc/latex/changes/changes.pdf details="Package documentation" language="de"
+ texmf-dist/doc/latex/changes/changes_eng.pdf details="Package documentation" language="en"
+srcfiles size=45749
+ texmf-dist/source/latex/changes/changes.dtx
+ texmf-dist/source/latex/changes/changes.ins
+runfiles size=8971
+ texmf-dist/tex/latex/changes/changes.sty
+catalogue-version 0.5.2
+catalogue-date 2007-10-10 23:46:26 +0200
+catalogue-ctan /macros/latex/contrib/changes
+catalogue-license lppl
+
+name chappg
+category Package
+revision 1646
+shortdesc Page numbering by chapter.
+longdesc The package provides for ‘chapterno-pageno’ or
+longdesc ‘chaptername-pageno’ page numbering. Provision is made for
+longdesc front- and backmatter in book class.
+docfiles size=205179
+ texmf-dist/doc/latex/chappg/chappg.pdf details="Package documentation"
+srcfiles size=17935
+ texmf-dist/source/latex/chappg/chappg.dtx
+ texmf-dist/source/latex/chappg/chappg.ins
+runfiles size=3918
+ texmf-dist/tex/latex/chappg/chappg.sty
+catalogue-version 2.1b
+catalogue-date 2006-12-01 14:16:52 +0100
+catalogue-ctan /macros/latex/contrib/chappg
+catalogue-license lppl
+
+name chapterfolder
+category Package
+revision 748
+shortdesc Package for working with complicated folder structures.
+longdesc This package simplifies working with folder structures that
+longdesc match the chapter/section/subsection structure. It provides
+longdesc macros to define a folder that contains the file for a
+longdesc chapter/section/subsection, and provides macros that allow
+longdesc inclusion without using the full path, rather the path relative
+longdesc to the current folder of the chapter/section/subsection. It
+longdesc makes easy changing the name of a folder, for example.
+docfiles size=126669
+ texmf-dist/doc/latex/chapterfolder/README
+ texmf-dist/doc/latex/chapterfolder/aclocal.m4
+ texmf-dist/doc/latex/chapterfolder/configure
+ texmf-dist/doc/latex/chapterfolder/configure.in
+ texmf-dist/doc/latex/chapterfolder/documentation.pdf
+ texmf-dist/doc/latex/chapterfolder/documentation.tex
+ texmf-dist/doc/latex/chapterfolder/intro/intro.tex
+ texmf-dist/doc/latex/chapterfolder/util/cha/cha.tex
+ texmf-dist/doc/latex/chapterfolder/util/file/file.tex
+ texmf-dist/doc/latex/chapterfolder/util/part/part.tex
+ texmf-dist/doc/latex/chapterfolder/util/sec/sec.tex
+ texmf-dist/doc/latex/chapterfolder/util/sub/sub.tex
+ texmf-dist/doc/latex/chapterfolder/util/util.tex
+srcfiles size=437
+ texmf-dist/source/latex/chapterfolder/Makefile.in
+runfiles size=3296
+ texmf-dist/tex/latex/chapterfolder/chapterfolder.sty
+catalogue-version 2.0
+catalogue-date 2007-02-01 13:43:16 +0100
+catalogue-ctan /macros/latex/contrib/chapterfolder
+catalogue-license lppl
+
+name charter
+category Package
+revision 98
+shortdesc Charter fonts.
+longdesc A commercial text font donated for the common good. Available
+longdesc in medium weight only; no bold version. Support for use with
+longdesc LaTeX is available in freenfss, part of psnfss.
+docfiles size=795
+ texmf-dist/doc/fonts/charter/readme.charter details="Readme for this distribution"
+runfiles size=409407
+ texmf-dist/fonts/afm/bitstrea/charter/bchb8a.afm
+ texmf-dist/fonts/afm/bitstrea/charter/bchbi8a.afm
+ texmf-dist/fonts/afm/bitstrea/charter/bchr8a.afm
+ texmf-dist/fonts/afm/bitstrea/charter/bchri8a.afm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchb7t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchb8c.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchb8r.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchb8t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbc7t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbc8t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbi7t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbi8c.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbi8r.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbi8t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbo7t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbo8c.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbo8r.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchbo8t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchr7t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchr8c.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchr8r.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchr8t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchrc7t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchrc8t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchri7t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchri8c.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchri8r.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchri8t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchro7t.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchro8c.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchro8r.tfm
+ texmf-dist/fonts/tfm/bitstrea/charter/bchro8t.tfm
+ texmf-dist/fonts/type1/bitstrea/charter/bchb8a.pfb
+ texmf-dist/fonts/type1/bitstrea/charter/bchbi8a.pfb
+ texmf-dist/fonts/type1/bitstrea/charter/bchr8a.pfb
+ texmf-dist/fonts/type1/bitstrea/charter/bchri8a.pfb
+ texmf-dist/fonts/vf/bitstrea/charter/bchb7t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchb8c.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchb8t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchbc7t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchbc8t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchbi7t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchbi8c.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchbi8t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchbo7t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchbo8c.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchbo8t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchr7t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchr8c.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchr8t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchrc7t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchrc8t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchri7t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchri8c.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchri8t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchro7t.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchro8c.vf
+ texmf-dist/fonts/vf/bitstrea/charter/bchro8t.vf
+catalogue-version
+catalogue-date 2006-12-31 16:08:10 +0100
+catalogue-ctan /fonts/charter
+catalogue-license other
+
+name chem-journal
+category Package
+revision 2411
+shortdesc Various BibTeX formats for journals in Chemistry.
+longdesc Various BibTeX formats for journals in Chemistry, including
+longdesc Reviews in Computational Chemistry, Journal of Physical
+longdesc Chemistry, Journal of Computational Chemistry, and Physical
+longdesc Chemistry Chemical Physics.
+runfiles size=71369
+ texmf-dist/bibtex/bst/chem-journal/jcc.bst
+ texmf-dist/bibtex/bst/chem-journal/jpc.bst
+ texmf-dist/bibtex/bst/chem-journal/pccp.bst
+ texmf-dist/bibtex/bst/chem-journal/revcompchem.bst
+catalogue-version
+catalogue-date 2007-01-01 10:31:54 +0100
+catalogue-ctan /biblio/bibtex/contrib/chem-journal
+catalogue-license gpl
+
+name chemarrow
+category Package
+revision 4894
+shortdesc Arrows for use in chemistry
+longdesc This bundle consists of a font (available as metafont source,
+longdesc metapost source, and generated type 1 versions), and a package
+longdesc to use it. The arrows in the font are designed to look more
+longdesc like those in chemistry text-books than do Knuth's originals.
+execute addMap chemarrow.map
+docfiles size=16863
+ texmf-dist/doc/fonts/chemarrow/Liesmich.txt details="Package Liesmich" language="de"
+ texmf-dist/doc/fonts/chemarrow/Readme.txt
+ texmf-dist/doc/fonts/chemarrow/testchem.dvi
+ texmf-dist/doc/fonts/chemarrow/testchem.tex
+runfiles size=20366
+ texmf-dist/fonts/afm/public/chemarrow/arrow.afm
+ texmf-dist/fonts/map/dvips/chemarrow/chemarrow.map
+ texmf-dist/fonts/source/public/chemarrow/arrow.mf
+ texmf-dist/fonts/tfm/public/chemarrow/arrow.tfm
+ texmf-dist/fonts/type1/public/chemarrow/Arrow.vfb
+ texmf-dist/fonts/type1/public/chemarrow/arrow.inf
+ texmf-dist/fonts/type1/public/chemarrow/arrow.pfb
+ texmf-dist/fonts/type1/public/chemarrow/arrow.pfm
+ texmf-dist/tex/latex/chemarrow/chemarrow.sty
+catalogue-version 0.9
+catalogue-date 2007-09-11 10:30:43 +0200
+catalogue-ctan /macros/latex/contrib/chemarrow
+catalogue-license unknown
+
+name chemcompounds
+category Package
+revision 2625
+shortdesc Simple consecutive numbering of chemical compounds.
+longdesc The chemcompounds package allows for a simple consecutive
+longdesc numbering of chemical compounds. Optionally, it is possible to
+longdesc supply a custom name for each compound. The package differs
+longdesc from the chemcono package by not generating an odd-looking list
+longdesc of compounds inside the text.
+docfiles size=127462
+ texmf-dist/doc/latex/chemcompounds/README
+ texmf-dist/doc/latex/chemcompounds/chemcompounds.pdf
+srcfiles size=25915
+ texmf-dist/source/latex/chemcompounds/chemcompounds.dtx
+ texmf-dist/source/latex/chemcompounds/chemcompounds.ins
+runfiles size=4362
+ texmf-dist/tex/latex/chemcompounds/chemcompounds.sty
+catalogue-version
+catalogue-date 2007-03-05 14:17:42 +0100
+catalogue-ctan /macros/latex/contrib/chemcompounds
+catalogue-license lppl
+
+name chemcono
+category Package
+revision 1487
+shortdesc Support for compound numbers in chemistry documents.
+longdesc A LaTeX package for using compound numbers in chemistry
+longdesc documents. It works like \cite and the \thebibliography, using
+longdesc \fcite and \theffbibliography instead. It allows compound names
+longdesc in documents to be numbered and does not affect the normal
+longdesc citation routines.
+docfiles size=15990
+ texmf-dist/doc/latex/chemcono/example.dvi
+ texmf-dist/doc/latex/chemcono/example.tex
+runfiles size=24691
+ texmf-dist/tex/latex/chemcono/chemcono.sty
+ texmf-dist/tex/latex/chemcono/drftcono.sty
+ texmf-dist/tex/latex/chemcono/showkeysff.sty
+catalogue-version 1.3
+catalogue-date 2006-12-07 15:13:33 +0100
+catalogue-ctan /macros/latex/contrib/chemcono
+catalogue-license lppl
+
+name chemscheme
+category Package
+revision 5446
+shortdesc Support for chemical schemes.
+longdesc The chemscheme package consists of two parts, both related to
+longdesc chemical schemes. The package adds a scheme float type to the
+longdesc LaTeX default types figure and table. The scheme float type
+longdesc acts in the same way as those defined by the LaTeX kernel, but
+longdesc is intended for chemical schemes. The package also provides a
+longdesc method for adding automatic numbering of chemicals to schemes.
+docfiles size=269109
+ texmf-dist/doc/latex/chemscheme/README details="Readme"
+ texmf-dist/doc/latex/chemscheme/chemscheme.cdx
+ texmf-dist/doc/latex/chemscheme/chemscheme.pdf details="Package documentation"
+ texmf-dist/doc/latex/chemscheme/scheme-one.eps
+ texmf-dist/doc/latex/chemscheme/scheme-two.eps
+srcfiles size=62442
+ texmf-dist/source/latex/chemscheme/chemscheme.dtx
+ texmf-dist/source/latex/chemscheme/chemscheme.ins
+runfiles size=9913
+ texmf-dist/bibtex/bib/chemscheme/chemscheme.bib
+ texmf-dist/tex/latex/chemscheme/chemscheme.sty
+ texmf-dist/tex/latex/chemscheme/jawltxdoc.sty
+catalogue-version 1.3
+catalogue-date 2007-10-05 00:50:02 +0200
+catalogue-ctan /macros/latex/contrib/chemscheme
+catalogue-license gpl
+
+name chemstyle
+category Package
+revision 5334
+shortdesc Writing chemistry with style.
+longdesc Chemstyle has been developed as a successor to the LaTeX
+longdesc package provided by the rsc bundle. The package provides an
+longdesc extensible system for formatting chemistry documents according
+longdesc to the conventions of a number of leading journals. It also
+longdesc provides some handy chemistry-related macros. Chemstyle is much
+longdesc enhanced compared to its predecessor, and users of rsc are
+longdesc strongly encouraged to migrate, (all of the additional macros
+longdesc in the rsc LaTeX package are present in chemstyle).
+docfiles size=248361
+ texmf-dist/doc/latex/chemstyle/README
+ texmf-dist/doc/latex/chemstyle/chemstyle.pdf details="Package documentation"
+srcfiles size=57985
+ texmf-dist/source/latex/chemstyle/chemstyle.dtx
+ texmf-dist/source/latex/chemstyle/chemstyle.ins
+runfiles size=20120
+ texmf-dist/tex/latex/chemstyle/angew.jdf
+ texmf-dist/tex/latex/chemstyle/chemstyle.sty
+ texmf-dist/tex/latex/chemstyle/ic.jdf
+ texmf-dist/tex/latex/chemstyle/jacs.jdf
+ texmf-dist/tex/latex/chemstyle/jawltxdoc.sty
+ texmf-dist/tex/latex/chemstyle/jomc.jdf
+ texmf-dist/tex/latex/chemstyle/jpc.jdf
+ texmf-dist/tex/latex/chemstyle/none.jdf
+ texmf-dist/tex/latex/chemstyle/orglett.jdf
+ texmf-dist/tex/latex/chemstyle/rsc.jdf
+ texmf-dist/tex/latex/chemstyle/tetlett.jdf
+catalogue-version 1.1f
+catalogue-date 2007-10-15 00:20:05 +0200
+catalogue-ctan /macros/latex/contrib/chemstyle
+catalogue-license gpl
+
+name cheq
+category Package
+revision 753
+shortdesc Adobe chess font.
+longdesc The font itself is presented as Macintosh stuffit (both in
+longdesc ‘printer’ and ‘screen’ formats), and (for some reason)
+longdesc as a .ps file, which from the documentation sounds as if it
+longdesc ought to be a .pfa file. Metrics (both AFM and TeX .pl files),
+longdesc and a simple package for generating images of pieces, are
+longdesc provided.
+execute addMap cheq.map
+runfiles size=158551
+ texmf-dist/fonts/enc/dvips/cheq/chess.enc
+ texmf-dist/fonts/map/dvips/cheq/cheq.map
+ texmf-dist/fonts/type1/adobe/cheq/cheq.pfb
+ texmf-dist/tex/latex/cheq/board.epsf
+ texmf-dist/tex/latex/cheq/board.sty
+ texmf-dist/tex/latex/cheq/cheq.sty
+catalogue-version
+catalogue-date 2006-12-03 14:35:33 +0100
+catalogue-ctan /fonts/chess/cheq
+catalogue-license nosell
+
+name cherokee
+category Package
+revision 754
+shortdesc A font for the Cherokee script.
+longdesc The Cherokee script was designed in 1821 by Segwoya. The
+longdesc alphabet is essentially syllabic, only 6 characters (a e i o s
+longdesc u) correspond to Roman letters: the font encodes these to the
+longdesc corresponding roman letter. The remaining 79 characters have
+longdesc been arbitrarily encoded in the range 38–122; the cherokee
+longdesc package provides commands that map each such syllable to the
+longdesc appropriate character; for example, Segwoya himself would be
+longdesc represented \Cse\Cgwo\Cya.
+runfiles size=24366
+ texmf-dist/fonts/source/public/cherokee/cherokee.mf
+ texmf-dist/fonts/tfm/public/cherokee/cherokee.tfm
+ texmf-dist/tex/latex/cherokee/cherokee.sty
+catalogue-version
+catalogue-date 2006-12-31 18:14:50 +0100
+catalogue-ctan /fonts/cherokee
+catalogue-license unknown
+
+name chess
+category Package
+revision 755
+shortdesc Fonts for typesetting chess boards.
+longdesc The original (and now somewhat dated) TeX chess font package.
+longdesc Potential users should consider skak (for alternative fonts,
+longdesc and notation support), texmate (for alternative notation
+longdesc support), or chessfss (for flexible font choices).
+runfiles size=118766
+ texmf-dist/fonts/source/public/chess/chess10.mf
+ texmf-dist/fonts/source/public/chess/chess20.mf
+ texmf-dist/fonts/source/public/chess/chess30.mf
+ texmf-dist/fonts/source/public/chess/chessbase.mf
+ texmf-dist/fonts/source/public/chess/chessdiag.mf
+ texmf-dist/fonts/source/public/chess/chessf10.mf
+ texmf-dist/fonts/source/public/chess/chessfig10.mf
+ texmf-dist/fonts/source/public/chess/chesspieces.mf
+ texmf-dist/fonts/source/public/chess/empty.mf
+ texmf-dist/tex/latex/chess/bdfchess.sty
+ texmf-dist/tex/latex/chess/chess.sty
+ texmf-dist/tex/latex/chess/chessboa.sty
+ texmf-dist/tex/latex/chess/chesskey.sty
+ texmf-dist/tex/latex/chess/chessmg.sty
+catalogue-version 1.2
+catalogue-date 2006-12-31 18:14:50 +0100
+catalogue-ctan /fonts/chess/chess
+catalogue-license pd
+
+name chessfss
+category Package
+revision 5419
+shortdesc A package to handle chess fonts.
+longdesc This package offers commands to use and switch between chess
+longdesc fonts. It uses the LaTeX font selection scheme (nfss). The
+longdesc package doesn't parse, format and print PGN input like e.g. the
+longdesc packages skak or texmate; the aim of the package is to offer
+longdesc writers of chess packages a bundle of commands for fonts, so
+longdesc that they don't have to implement all these commands for
+longdesc themselves. A normal user can use the package to print e.g.
+longdesc single chess symbols and simple diagrams. The documentation
+longdesc contains also a section about installation of chess fonts.
+docfiles size=1780
+ texmf-dist/doc/latex/chessfss/README details="Readme"
+srcfiles size=95430
+ texmf-dist/source/latex/chessfss/chessfss-src.dtx
+ texmf-dist/source/latex/chessfss/chessfss.ins
+runfiles size=109878
+ texmf-dist/fonts/enc/dvips/chessfss/chess-board-example-enc.enc
+ texmf-dist/fonts/enc/dvips/chessfss/chess-fig-example-enc.enc
+ texmf-dist/tex/latex/chessfss/chessfss.sty
+ texmf-dist/tex/latex/chessfss/lsb1enc.def
+ texmf-dist/tex/latex/chessfss/lsb1skak.fd
+ texmf-dist/tex/latex/chessfss/lsb1skaknew.fd
+ texmf-dist/tex/latex/chessfss/lsb2enc.def
+ texmf-dist/tex/latex/chessfss/lsb2skak.fd
+ texmf-dist/tex/latex/chessfss/lsb2skaknew.fd
+ texmf-dist/tex/latex/chessfss/lsb3enc.def
+ texmf-dist/tex/latex/chessfss/lsb3skak.fd
+ texmf-dist/tex/latex/chessfss/lsb3skaknew.fd
+ texmf-dist/tex/latex/chessfss/lsbc1enc.def
+ texmf-dist/tex/latex/chessfss/lsbc1skaknew.fd
+ texmf-dist/tex/latex/chessfss/lsbc2enc.def
+ texmf-dist/tex/latex/chessfss/lsbc2skaknew.fd
+ texmf-dist/tex/latex/chessfss/lsbc3enc.def
+ texmf-dist/tex/latex/chessfss/lsbc3skaknew.fd
+ texmf-dist/tex/latex/chessfss/lsbc4enc.def
+ texmf-dist/tex/latex/chessfss/lsbc4skaknew.fd
+ texmf-dist/tex/latex/chessfss/lsbc5enc.def
+ texmf-dist/tex/latex/chessfss/lsbc5skaknew.fd
+ texmf-dist/tex/latex/chessfss/lsbenc.def
+ texmf-dist/tex/latex/chessfss/lsbskak.fd
+ texmf-dist/tex/latex/chessfss/lsbskaknew.fd
+ texmf-dist/tex/latex/chessfss/lsfenc.def
+ texmf-dist/tex/latex/chessfss/lsfskak.fd
+ texmf-dist/tex/latex/chessfss/lsfskaknew.fd
+ texmf-dist/tex/latex/chessfss/lsienc.def
+ texmf-dist/tex/latex/chessfss/lsiskak.fd
+ texmf-dist/tex/latex/chessfss/lsiskaknew.fd
+catalogue-version 1.2a
+catalogue-date 2006-12-31 18:14:50 +0100
+catalogue-ctan /macros/latex/contrib/chessfss
+catalogue-license lppl
+
+name china2e
+category Package
+revision 1487
+shortdesc Font and macros for Chinese calendar.
+longdesc A LaTeX package to produce Chinese calendar symbols of the old
+longdesc Chinese lunisolar calendar. The associated font is distributed
+longdesc as MetaFont source.
+docfiles size=45482
+ texmf-dist/doc/latex/china2e/chinadoc.dvi
+ texmf-dist/doc/latex/china2e/chinadoc.tex
+runfiles size=90864
+ texmf-dist/fonts/source/public/china2e/china10.mf
+ texmf-dist/fonts/source/public/china2e/chinasym.add
+ texmf-dist/fonts/source/public/china2e/chinasym.alf
+ texmf-dist/fonts/source/public/china2e/chinasym.ele
+ texmf-dist/fonts/source/public/china2e/chinasym.num
+ texmf-dist/fonts/source/public/china2e/chinasym.sbl
+ texmf-dist/fonts/source/public/china2e/chinasym.sta
+ texmf-dist/fonts/source/public/china2e/readme.txt
+ texmf-dist/fonts/tfm/public/china2e/china10.tfm
+ texmf-dist/tex/latex/china2e/china2e.sty
+catalogue-version
+catalogue-date 2006-12-31 18:14:50 +0100
+catalogue-ctan /macros/latex/contrib/china2e
+catalogue-license unknown
+
+name circ
+category Package
+revision 1487
+shortdesc Macros for typesetting circuit diagrams.
+longdesc Several electrical symbols like resistor, capacitor,
+longdesc transistors etc., are defined. The symbols can be connected
+longdesc with wires. The package also contains an American resistor
+longdesc symbol for those of us on that side of the Atlantic. The
+longdesc package also has simple facilities for producing optics
+longdesc diagrams; however, no-one would deny that the PSTricks pst-
+longdesc optic package, or the MetaPost makecirc package does the job
+longdesc better.
+docfiles size=95518
+ texmf-dist/doc/latex/circ/README details="Readme"
+ texmf-dist/doc/latex/circ/cidoc.tex
+ texmf-dist/doc/latex/circ/circ.dvi
+ texmf-dist/doc/latex/circ/circ.txt
+ texmf-dist/doc/latex/circ/cisyms.tex
+srcfiles size=203485
+ texmf-dist/source/latex/circ/COPYING
+ texmf-dist/source/latex/circ/Makefile
+ texmf-dist/source/latex/circ/circ.drv
+ texmf-dist/source/latex/circ/circ.dtx
+ texmf-dist/source/latex/circ/circ.ins
+ texmf-dist/source/latex/circ/index.hlp
+runfiles size=136587
+ texmf-dist/fonts/source/public/circ/cibimos.mf
+ texmf-dist/fonts/source/public/circ/cicirc.mf
+ texmf-dist/fonts/source/public/circ/cidiod.mf
+ texmf-dist/fonts/source/public/circ/cioptic.mf
+ texmf-dist/fonts/source/public/circ/ciphysic.mf
+ texmf-dist/fonts/source/public/circ/cirest.mf
+ texmf-dist/fonts/source/public/circ/cisym.mf
+ texmf-dist/fonts/source/public/circ/ciwidko.mf
+ texmf-dist/fonts/source/public/circ/csym.mf
+ texmf-dist/fonts/source/public/circ/defcirc.mf
+ texmf-dist/fonts/tfm/public/circ/cioptic.tfm
+ texmf-dist/makeindex/circ/circ.ist
+ texmf-dist/tex/latex/circ/basic.def
+ texmf-dist/tex/latex/circ/box.def
+ texmf-dist/tex/latex/circ/circ.sty
+ texmf-dist/tex/latex/circ/gate.def
+ texmf-dist/tex/latex/circ/ic.def
+ texmf-dist/tex/latex/circ/oldgate.def
+ texmf-dist/tex/latex/circ/optics.def
+ texmf-dist/tex/latex/circ/physics.def
+catalogue-version 1.1
+catalogue-date 2006-12-31 18:14:50 +0100
+catalogue-ctan /macros/generic/diagrams/circ
+catalogue-license gpl
+
+name cirth
+category Package
+revision 613
+shortdesc Fonts for Cirth.
+longdesc This is a font to represent the runic Cirth script devised by
+longdesc Tolkien for his Sindarin language. The font is provided as
+longdesc MetaFont source.
+docfiles size=150700
+ texmf-dist/doc/fonts/cirth/Changelog
+ texmf-dist/doc/fonts/cirth/README details="Readme"
+ texmf-dist/doc/fonts/cirth/cirth.pdf details="Package documentation"
+ texmf-dist/doc/fonts/cirth/cirth.tex
+runfiles size=30596
+ texmf-dist/fonts/source/public/cirth/cirbf.mf
+ texmf-dist/fonts/source/public/cirth/cirsl.mf
+ texmf-dist/fonts/source/public/cirth/cirss.mf
+ texmf-dist/fonts/source/public/cirth/cirth.mf
+ texmf-dist/fonts/source/public/cirth/ligs.mf
+ texmf-dist/fonts/source/public/cirth/macros.mf
+ texmf-dist/fonts/source/public/cirth/runes.mf
+ texmf-dist/fonts/tfm/public/cirth/cirbf.tfm
+ texmf-dist/fonts/tfm/public/cirth/cirsl.tfm
+ texmf-dist/fonts/tfm/public/cirth/cirss.tfm
+ texmf-dist/fonts/tfm/public/cirth/cirth.tfm
+ texmf-dist/tex/generic/cirth/num.tex
+catalogue-version
+catalogue-date 2006-12-31 18:14:50 +0100
+catalogue-ctan /fonts/cirth
+catalogue-license unknown
+
+name cite
+category Package
+revision 758
+shortdesc Citation management bundle.
+longdesc A collection of packages related to managing citations: –
+longdesc cite, which supports compressed, sorted lists of numerical
+longdesc citations, and also deals with various punctuation and other
+longdesc issues of representation; – drftcite, which prints citation
+longdesc keys rather than numbers; – overcite, which prints citation
+longdesc numbers in a superscript position; and – chapterbib, which
+longdesc permits multiple bibliographies, one per \included file in a
+longdesc document.
+docfiles size=1113
+ texmf-dist/doc/latex/cite/README
+runfiles size=57041
+ texmf-dist/tex/latex/cite/chapterbib.sty
+ texmf-dist/tex/latex/cite/cite.sty
+ texmf-dist/tex/latex/cite/drftcite.sty
+ texmf-dist/tex/latex/cite/overcite.sty
+catalogue-version
+catalogue-date 2006-09-25 22:25:27 +0200
+catalogue-ctan /macros/latex/contrib/cite
+catalogue-license dfsg
+
+name citeref
+category Package
+revision 759
+shortdesc Add reference-page-list to bibliography-items.
+longdesc The citeref package does its job without using the indexing
+longdesc facilities, and needs no special \cite-replacement package.
+runfiles size=3749
+ texmf-dist/tex/latex/citeref/citeref.sty
+catalogue-version
+catalogue-date 2006-12-31 18:14:50 +0100
+catalogue-ctan /macros/latex/contrib/citeref/citeref.sty
+catalogue-license lppl
+
+name cjhebrew
+category Package
+revision 4014
+execute addMap cjhebrew.map
+docfiles size=115830
+ texmf-dist/doc/fonts/cjhebrew/cjhebtst.tex
+ texmf-dist/doc/fonts/cjhebrew/manual.pdf
+runfiles size=74062
+ texmf-dist/fonts/afm/public/cjhebrew/cjheblsm.afm
+ texmf-dist/fonts/afm/public/cjhebrew/cjhebltx.afm
+ texmf-dist/fonts/enc/dvips/cjhebrew/cjhebltx.enc
+ texmf-dist/fonts/map/dvips/cjhebrew/cjhebrew.map
+ texmf-dist/fonts/tfm/public/cjhebrew/cjhblsm.tfm
+ texmf-dist/fonts/tfm/public/cjhebrew/cjhbltx.tfm
+ texmf-dist/fonts/tfm/public/cjhebrew/cjheblsm.tfm
+ texmf-dist/fonts/tfm/public/cjhebrew/cjhebltx.tfm
+ texmf-dist/fonts/tfm/public/cjhebrew/rcjhblsm.tfm
+ texmf-dist/fonts/tfm/public/cjhebrew/rcjhbltx.tfm
+ texmf-dist/fonts/type1/public/cjhebrew/cjheblsm.pfb
+ texmf-dist/fonts/type1/public/cjhebrew/cjhebltx.pfb
+ texmf-dist/fonts/vf/public/cjhebrew/cjhblsm.vf
+ texmf-dist/fonts/vf/public/cjhebrew/cjhbltx.vf
+ texmf-dist/tex/latex/cjhebrew/cjhebrew.sty
+
+name cjw
+category Package
+revision 761
+shortdesc A bundle of packages and classes.
+longdesc The bundle contains letter and envelope classes, and several
+longdesc packages of a general nature, including one for constructing
+longdesc outlines.
+srcfiles size=183970
+ texmf-dist/source/latex/cjw/cjw-latex.dtx
+ texmf-dist/source/latex/cjw/cjw-latex.ins
+ texmf-dist/source/latex/cjw/cjw-ltr.dtx
+ texmf-dist/source/latex/cjw/cjw-ltr.ins
+ texmf-dist/source/latex/cjw/cjwoutl.dtx
+ texmf-dist/source/latex/cjw/cjwoutl.ins
+ texmf-dist/source/latex/cjw/cjwplain.dtx
+ texmf-dist/source/latex/cjw/cjwplain.ins
+runfiles size=89619
+ texmf-dist/tex/latex/cjw/cjw-env.cls
+ texmf-dist/tex/latex/cjw/cjw-ltr.cls
+ texmf-dist/tex/latex/cjw/cjwderiv.tex
+ texmf-dist/tex/latex/cjw/cjwinteg.tex
+ texmf-dist/tex/latex/cjw/cjwmacro.sty
+ texmf-dist/tex/latex/cjw/cjwmath.sty
+ texmf-dist/tex/latex/cjw/cjwoutl.sty
+ texmf-dist/tex/latex/cjw/cjwphys.tex
+ texmf-dist/tex/latex/cjw/cjwplain.sty
+ texmf-dist/tex/latex/cjw/cjwplout.clo
+ texmf-dist/tex/latex/cjw/cjwpltab.clo
+ texmf-dist/tex/latex/cjw/cjwresize.sty
+ texmf-dist/tex/latex/cjw/cjwunits.sty
+catalogue-version
+catalogue-date 2007-01-25 23:33:32 +0100
+catalogue-ctan /macros/latex/contrib/cjw
+catalogue-license unknown
+
+name clarendo
+category Package
+revision 90
+runfiles size=13236
+ texmf-dist/fonts/tfm/cg/clarendo/ccdr8tc.tfm
+ texmf-dist/fonts/tfm/cg/clarendo/ccdrrc.tfm
+ texmf-dist/fonts/tfm/cg/clarendo/clc10u.tfm
+ texmf-dist/fonts/tfm/cg/clarendo/clc6j.tfm
+ texmf-dist/fonts/tfm/cg/clarendo/clc7j.tfm
+ texmf-dist/fonts/tfm/cg/clarendo/clc8u.tfm
+ texmf-dist/fonts/vf/cg/clarendo/ccdr8tc.vf
+ texmf-dist/fonts/vf/cg/clarendo/ccdrrc.vf
+
+name classicthesis
+category Package
+revision 5340
+shortdesc A "classically styled" thesis package.
+longdesc The classicthesis package provides an elegant layout designed
+longdesc in homage to Bringhurst’s “The Elements of Typographic
+longdesc Style”. It makes use of a range of techniques to get the best
+longdesc results achievable using TeX. Included in the bundle are
+longdesc templates to make thesis writing easier.
+docfiles size=732916
+ texmf-dist/doc/latex/classicthesis/Bibliography.bib
+ texmf-dist/doc/latex/classicthesis/CHANGES
+ texmf-dist/doc/latex/classicthesis/COPYING
+ texmf-dist/doc/latex/classicthesis/Chapters/Chapter01.tex
+ texmf-dist/doc/latex/classicthesis/Chapters/Chapter02.tex
+ texmf-dist/doc/latex/classicthesis/Chapters/Chapter03.tex
+ texmf-dist/doc/latex/classicthesis/Chapters/Chapter0A.tex
+ texmf-dist/doc/latex/classicthesis/ClassicThesis.pdf details="Package documentation"
+ texmf-dist/doc/latex/classicthesis/ClassicThesis.tcp
+ texmf-dist/doc/latex/classicthesis/ClassicThesis.tex
+ texmf-dist/doc/latex/classicthesis/ClassicThesis.tps
+ texmf-dist/doc/latex/classicthesis/Examples/classicthesis-article.pdf
+ texmf-dist/doc/latex/classicthesis/Examples/classicthesis-article.tex
+ texmf-dist/doc/latex/classicthesis/Examples/classicthesis-book.pdf
+ texmf-dist/doc/latex/classicthesis/Examples/classicthesis-book.tex
+ texmf-dist/doc/latex/classicthesis/Examples/classicthesis-cv.pdf
+ texmf-dist/doc/latex/classicthesis/Examples/classicthesis-cv.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Abstract.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Acknowledgments.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Bibliography.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Colophon.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Contents.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Declaration.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Dedication.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/DirtyTitlepage.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Publication.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Titleback.tex
+ texmf-dist/doc/latex/classicthesis/FrontBackmatter/Titlepage.tex
+ texmf-dist/doc/latex/classicthesis/LISTOFFILES
+ texmf-dist/doc/latex/classicthesis/README details="Package README"
+ texmf-dist/doc/latex/classicthesis/gfx/TFZsuperellipse_bw.pdf
+ texmf-dist/doc/latex/classicthesis/gfx/example_1.jpg
+ texmf-dist/doc/latex/classicthesis/gfx/example_2.jpg
+ texmf-dist/doc/latex/classicthesis/gfx/example_3.jpg
+ texmf-dist/doc/latex/classicthesis/gfx/example_4.jpg
+runfiles size=33240
+ texmf-dist/tex/latex/classicthesis/classicthesis-ldpkg.sty
+ texmf-dist/tex/latex/classicthesis/classicthesis.sty
+catalogue-version 2.3
+catalogue-date 2007-11-04 22:16:29 +0100
+catalogue-ctan /macros/latex/contrib/classicthesis
+catalogue-license gpl
+
+name clefval
+category Package
+revision 2943
+shortdesc Key/value support with a hash.
+longdesc This package provides only two macros viz. \TheKey and
+longdesc \TheValue to define then use pairs of key/value and gives a
+longdesc semblance of a hash. Syntax: \TheKey{key}{value} to define the
+longdesc value associated to the key, does not produce text;
+longdesc \TheValue{key} to return the value linked to the key. Both
+longdesc arguments of \TheKey are ‘moving’ as LaTeX defines the term
+longdesc and we have sometimes to protect them.
+docfiles size=369753
+ texmf-dist/doc/latex/clefval/Changements
+ texmf-dist/doc/latex/clefval/Changes
+ texmf-dist/doc/latex/clefval/LISEZMOI
+ texmf-dist/doc/latex/clefval/README details="Package README"
+ texmf-dist/doc/latex/clefval/clefval.pdf details="Package documentation"
+ texmf-dist/doc/latex/clefval/example.pdf details="Package example of use (English)"
+ texmf-dist/doc/latex/clefval/example.tex
+ texmf-dist/doc/latex/clefval/exemple.pdf details="Package examples of use (French)" language="fr"
+ texmf-dist/doc/latex/clefval/exemple.tex
+srcfiles size=25507
+ texmf-dist/source/latex/clefval/Makefile
+ texmf-dist/source/latex/clefval/clefval.dtx
+ texmf-dist/source/latex/clefval/clefval.ins
+ texmf-dist/source/latex/clefval/fra-clefval.ins
+runfiles size=1992
+ texmf-dist/tex/latex/clefval/clefval.sty
+catalogue-version 0
+catalogue-date 2006-12-07 15:13:33 +0100
+catalogue-ctan /macros/latex/contrib/clefval
+catalogue-license lppl
+
+name cleveref
+category Package
+revision 5329
+shortdesc Automatic cross-reference formatting.
+longdesc The package enhances LaTeX's cross-referencing features,
+longdesc allowing the format of references to be determined
+longdesc automatically according to the type of reference. The formats
+longdesc used may be customised in the preamble of a document. The
+longdesc package also offers a means of referencing a list of
+longdesc references, each formatted according to its type. In such
+longdesc lists, it can collapse sequences of numerically-consecutive
+longdesc labels to a reference range.
+docfiles size=275738
+ texmf-dist/doc/latex/cleveref/README details="Readme"
+ texmf-dist/doc/latex/cleveref/cleveref.pdf details="Package documentation"
+srcfiles size=126377
+ texmf-dist/source/latex/cleveref/cleveref.dtx
+ texmf-dist/source/latex/cleveref/cleveref.ins
+runfiles size=54762
+ texmf-dist/tex/latex/cleveref/cleveref.sty
+catalogue-version 0.10
+catalogue-date 2007-11-01 13:46:21 +0100
+catalogue-ctan /macros/latex/contrib/cleveref
+catalogue-license lppl
+
+name clock
+category Package
+revision 1652
+shortdesc Graphical and textual clocks for TeX and LaTeX.
+longdesc Features graphical clocks (with a classical 12h dial and two
+longdesc hands) and text clocks (in 24h format) which can show system
+longdesc time or any time the user desires. Works with both TeX and
+longdesc LaTeX. The clock faces (appearances of the dial) are easily
+longdesc expandable; the default uses a custom MetaFont font.
+docfiles size=119710
+ texmf-dist/doc/latex/clock/COPYING
+ texmf-dist/doc/latex/clock/EMTEX
+ texmf-dist/doc/latex/clock/HISTORY
+ texmf-dist/doc/latex/clock/INSTALL
+ texmf-dist/doc/latex/clock/MIKTEX
+ texmf-dist/doc/latex/clock/README
+ texmf-dist/doc/latex/clock/clockdoc.pdf
+ texmf-dist/doc/latex/clock/clockdoc.tex
+runfiles size=7469
+ texmf-dist/fonts/source/public/clock/clock.mf
+ texmf-dist/fonts/tfm/public/clock/clock.tfm
+ texmf-dist/tex/latex/clock/clock.sty
+ texmf-dist/tex/latex/clock/clock.tex
+catalogue-version
+catalogue-date 2007-01-01 00:37:00 +0100
+catalogue-ctan /macros/latex/contrib/clock
+catalogue-license dfsg
+
+name clrscode
+category Package
+revision 4094
+shortdesc Typesets pseudocode as in Introduction to Algorithms.
+longdesc This package allows you to typeset pseudocode in the style of
+longdesc Introduction to Algorithms, Second edition, by Cormen,
+longdesc Leiserson, Rivest, and Stein. The package was written by the
+longdesc authors. You use the commands the same way the package's author
+longdesc did when writing the book, and your output will look just like
+longdesc the pseudocode in the text.
+docfiles size=38728
+ texmf-dist/doc/latex/clrscode/README
+ texmf-dist/doc/latex/clrscode/clrscode.pdf details="Package documentation"
+runfiles size=11326
+ texmf-dist/tex/latex/clrscode/clrscode.sty
+catalogue-version 1.7
+catalogue-date 2007-03-29 23:17:09 +0200
+catalogue-ctan /macros/latex/contrib/clrscode
+catalogue-license lppl
+
+name cm
+category Package
+revision 101
+shortdesc Computer Modern fonts.
+longdesc Knuth's final iteration of his re-interpretation of a c.19
+longdesc Modern-style font from Monotype. The family is comprehensive,
+longdesc offering both sans and roman styles, and a monospaced font,
+longdesc together with mathematics fonts closely integrated with the
+longdesc mathematical facilities of TeX itself. The base fonts are
+longdesc distributed as MetaFont source, but autotraced PostScript Type
+longdesc 1 versions are available (see the Bluesky/Y&Y and BaKoMa
+longdesc versions).
+execute addMixedMap cmother-bsr.map
+execute addMixedMap cmtext-bsr-interpolated.map
+execute addMixedMap cmtext-bsr.map
+docfiles size=5210
+ texmf-dist/doc/fonts/cm/README
+ texmf-dist/doc/fonts/cm/README-cmps.txt
+runfiles size=3677654
+ texmf-dist/dvips/cm/config.cm
+ texmf-dist/dvips/cm/config.cmz
+ texmf-dist/fonts/afm/bluesky/cm/cmb10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbsy10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbx10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbx12.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbx5.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbx6.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbx7.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbx8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbx9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbxsl10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmbxti10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmcsc10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmdunh10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmex10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmff10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmfi10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmfib8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cminch.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmitt10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmmi10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmmi12.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmmi5.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmmi6.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmmi7.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmmi8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmmi9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmmib10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmr10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmr12.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmr17.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmr5.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmr6.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmr7.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmr8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmr9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsl10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsl12.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsl8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsl9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsltt10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmss10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmss12.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmss17.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmss8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmss9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmssbx10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmssdc10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmssi10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmssi12.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmssi17.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmssi8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmssi9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmssq8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmssqi8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsy10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsy5.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsy6.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsy7.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsy8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmsy9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmtcsc10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmtex10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmtex8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmtex9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmti10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmti12.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmti7.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmti8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmti9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmtt10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmtt12.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmtt8.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmtt9.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmu10.afm
+ texmf-dist/fonts/afm/bluesky/cm/cmvtt10.afm
+ texmf-dist/fonts/map/dvips/cm/cmother-bsr-interpolated.map
+ texmf-dist/fonts/map/dvips/cm/cmother-bsr.map
+ texmf-dist/fonts/map/dvips/cm/cmtext-bsr-interpolated.map
+ texmf-dist/fonts/map/dvips/cm/cmtext-bsr.map
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmbx10.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmex10.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmmi10.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmmi7.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr10.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr12.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr17.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr6.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr7.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr8.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmsl10.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmsy10.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmsy7.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmti10.pk
+ texmf-dist/fonts/pk/ljfour/public/cm/dpi720/cmbx12.pk
+ texmf-dist/fonts/source/public/cm/accent.mf
+ texmf-dist/fonts/source/public/cm/bigacc.mf
+ texmf-dist/fonts/source/public/cm/bigdel.mf
+ texmf-dist/fonts/source/public/cm/bigop.mf
+ texmf-dist/fonts/source/public/cm/calu.mf
+ texmf-dist/fonts/source/public/cm/cmb10.mf
+ texmf-dist/fonts/source/public/cm/cmbase.mf
+ texmf-dist/fonts/source/public/cm/cmbcsc10.mf
+ texmf-dist/fonts/source/public/cm/cmbsy10.mf
+ texmf-dist/fonts/source/public/cm/cmbtex10.mf
+ texmf-dist/fonts/source/public/cm/cmbtt10.mf
+ texmf-dist/fonts/source/public/cm/cmbtt8.mf
+ texmf-dist/fonts/source/public/cm/cmbtt9.mf
+ texmf-dist/fonts/source/public/cm/cmbx10.mf
+ texmf-dist/fonts/source/public/cm/cmbx12.mf
+ texmf-dist/fonts/source/public/cm/cmbx5.mf
+ texmf-dist/fonts/source/public/cm/cmbx6.mf
+ texmf-dist/fonts/source/public/cm/cmbx7.mf
+ texmf-dist/fonts/source/public/cm/cmbx8.mf
+ texmf-dist/fonts/source/public/cm/cmbx9.mf
+ texmf-dist/fonts/source/public/cm/cmbxsl10.mf
+ texmf-dist/fonts/source/public/cm/cmbxti10.mf
+ texmf-dist/fonts/source/public/cm/cmcsc10.mf
+ texmf-dist/fonts/source/public/cm/cmdunh10.mf
+ texmf-dist/fonts/source/public/cm/cmex10.mf
+ texmf-dist/fonts/source/public/cm/cmexb10.mf
+ texmf-dist/fonts/source/public/cm/cmff10.mf
+ texmf-dist/fonts/source/public/cm/cmfi10.mf
+ texmf-dist/fonts/source/public/cm/cmfib8.mf
+ texmf-dist/fonts/source/public/cm/cminch.mf
+ texmf-dist/fonts/source/public/cm/cmitt10.mf
+ texmf-dist/fonts/source/public/cm/cmmi10.mf
+ texmf-dist/fonts/source/public/cm/cmmi12.mf
+ texmf-dist/fonts/source/public/cm/cmmi5.mf
+ texmf-dist/fonts/source/public/cm/cmmi6.mf
+ texmf-dist/fonts/source/public/cm/cmmi7.mf
+ texmf-dist/fonts/source/public/cm/cmmi8.mf
+ texmf-dist/fonts/source/public/cm/cmmi9.mf
+ texmf-dist/fonts/source/public/cm/cmmib10.mf
+ texmf-dist/fonts/source/public/cm/cmplain.mf
+ texmf-dist/fonts/source/public/cm/cmr10.mf
+ texmf-dist/fonts/source/public/cm/cmr12.mf
+ texmf-dist/fonts/source/public/cm/cmr17.mf
+ texmf-dist/fonts/source/public/cm/cmr5.mf
+ texmf-dist/fonts/source/public/cm/cmr6.mf
+ texmf-dist/fonts/source/public/cm/cmr7.mf
+ texmf-dist/fonts/source/public/cm/cmr8.mf
+ texmf-dist/fonts/source/public/cm/cmr9.mf
+ texmf-dist/fonts/source/public/cm/cmsl10.mf
+ texmf-dist/fonts/source/public/cm/cmsl12.mf
+ texmf-dist/fonts/source/public/cm/cmsl8.mf
+ texmf-dist/fonts/source/public/cm/cmsl9.mf
+ texmf-dist/fonts/source/public/cm/cmsltt10.mf
+ texmf-dist/fonts/source/public/cm/cmss10.mf
+ texmf-dist/fonts/source/public/cm/cmss12.mf
+ texmf-dist/fonts/source/public/cm/cmss17.mf
+ texmf-dist/fonts/source/public/cm/cmss8.mf
+ texmf-dist/fonts/source/public/cm/cmss9.mf
+ texmf-dist/fonts/source/public/cm/cmssbx10.mf
+ texmf-dist/fonts/source/public/cm/cmssdc10.mf
+ texmf-dist/fonts/source/public/cm/cmssi10.mf
+ texmf-dist/fonts/source/public/cm/cmssi12.mf
+ texmf-dist/fonts/source/public/cm/cmssi17.mf
+ texmf-dist/fonts/source/public/cm/cmssi8.mf
+ texmf-dist/fonts/source/public/cm/cmssi9.mf
+ texmf-dist/fonts/source/public/cm/cmssq8.mf
+ texmf-dist/fonts/source/public/cm/cmssqi8.mf
+ texmf-dist/fonts/source/public/cm/cmsy10.mf
+ texmf-dist/fonts/source/public/cm/cmsy5.mf
+ texmf-dist/fonts/source/public/cm/cmsy6.mf
+ texmf-dist/fonts/source/public/cm/cmsy7.mf
+ texmf-dist/fonts/source/public/cm/cmsy8.mf
+ texmf-dist/fonts/source/public/cm/cmsy9.mf
+ texmf-dist/fonts/source/public/cm/cmtcsc10.mf
+ texmf-dist/fonts/source/public/cm/cmtex10.mf
+ texmf-dist/fonts/source/public/cm/cmtex8.mf
+ texmf-dist/fonts/source/public/cm/cmtex9.mf
+ texmf-dist/fonts/source/public/cm/cmti10.mf
+ texmf-dist/fonts/source/public/cm/cmti12.mf
+ texmf-dist/fonts/source/public/cm/cmti7.mf
+ texmf-dist/fonts/source/public/cm/cmti8.mf
+ texmf-dist/fonts/source/public/cm/cmti9.mf
+ texmf-dist/fonts/source/public/cm/cmtt10.mf
+ texmf-dist/fonts/source/public/cm/cmtt12.mf
+ texmf-dist/fonts/source/public/cm/cmtt8.mf
+ texmf-dist/fonts/source/public/cm/cmtt9.mf
+ texmf-dist/fonts/source/public/cm/cmttb10.mf
+ texmf-dist/fonts/source/public/cm/cmu10.mf
+ texmf-dist/fonts/source/public/cm/cmvtt10.mf
+ texmf-dist/fonts/source/public/cm/comlig.mf
+ texmf-dist/fonts/source/public/cm/csc.mf
+ texmf-dist/fonts/source/public/cm/cscspu.mf
+ texmf-dist/fonts/source/public/cm/greekl.mf
+ texmf-dist/fonts/source/public/cm/greeku.mf
+ texmf-dist/fonts/source/public/cm/itald.mf
+ texmf-dist/fonts/source/public/cm/italig.mf
+ texmf-dist/fonts/source/public/cm/itall.mf
+ texmf-dist/fonts/source/public/cm/italms.mf
+ texmf-dist/fonts/source/public/cm/italp.mf
+ texmf-dist/fonts/source/public/cm/italsp.mf
+ texmf-dist/fonts/source/public/cm/mathex.mf
+ texmf-dist/fonts/source/public/cm/mathit.mf
+ texmf-dist/fonts/source/public/cm/mathsy.mf
+ texmf-dist/fonts/source/public/cm/olddig.mf
+ texmf-dist/fonts/source/public/cm/punct.mf
+ texmf-dist/fonts/source/public/cm/roman.mf
+ texmf-dist/fonts/source/public/cm/romand.mf
+ texmf-dist/fonts/source/public/cm/romanl.mf
+ texmf-dist/fonts/source/public/cm/romanp.mf
+ texmf-dist/fonts/source/public/cm/romanu.mf
+ texmf-dist/fonts/source/public/cm/romlig.mf
+ texmf-dist/fonts/source/public/cm/romms.mf
+ texmf-dist/fonts/source/public/cm/romspl.mf
+ texmf-dist/fonts/source/public/cm/romspu.mf
+ texmf-dist/fonts/source/public/cm/romsub.mf
+ texmf-dist/fonts/source/public/cm/sym.mf
+ texmf-dist/fonts/source/public/cm/symbol.mf
+ texmf-dist/fonts/source/public/cm/texset.mf
+ texmf-dist/fonts/source/public/cm/textit.mf
+ texmf-dist/fonts/source/public/cm/title.mf
+ texmf-dist/fonts/source/public/cm/tset.mf
+ texmf-dist/fonts/source/public/cm/tsetsl.mf
+ texmf-dist/fonts/source/public/cm/white_setup.mf
+ texmf-dist/fonts/tfm/public/cm/cmb10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbcsc10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbx10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbx12.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbx5.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbx6.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbx7.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbx8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbx9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbxsl10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmbxti10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmcsc10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmdunh10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmex10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmff10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmfi10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmfib8.tfm
+ texmf-dist/fonts/tfm/public/cm/cminch.tfm
+ texmf-dist/fonts/tfm/public/cm/cmitt10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmmi10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmmi12.tfm
+ texmf-dist/fonts/tfm/public/cm/cmmi5.tfm
+ texmf-dist/fonts/tfm/public/cm/cmmi6.tfm
+ texmf-dist/fonts/tfm/public/cm/cmmi7.tfm
+ texmf-dist/fonts/tfm/public/cm/cmmi8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmmi9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmmib10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmr10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmr12.tfm
+ texmf-dist/fonts/tfm/public/cm/cmr17.tfm
+ texmf-dist/fonts/tfm/public/cm/cmr5.tfm
+ texmf-dist/fonts/tfm/public/cm/cmr6.tfm
+ texmf-dist/fonts/tfm/public/cm/cmr7.tfm
+ texmf-dist/fonts/tfm/public/cm/cmr8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmr9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsl10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsl12.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsl8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsl9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsltt10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmss10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmss12.tfm
+ texmf-dist/fonts/tfm/public/cm/cmss17.tfm
+ texmf-dist/fonts/tfm/public/cm/cmss8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmss9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmssbx10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmssdc10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmssi10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmssi12.tfm
+ texmf-dist/fonts/tfm/public/cm/cmssi17.tfm
+ texmf-dist/fonts/tfm/public/cm/cmssi8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmssi9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmssq8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmssqi8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsy10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsy5.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsy6.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsy7.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsy8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmsy9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmtex10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmtex8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmtex9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmti10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmti12.tfm
+ texmf-dist/fonts/tfm/public/cm/cmti7.tfm
+ texmf-dist/fonts/tfm/public/cm/cmti8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmti9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmtt10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmtt12.tfm
+ texmf-dist/fonts/tfm/public/cm/cmtt8.tfm
+ texmf-dist/fonts/tfm/public/cm/cmtt9.tfm
+ texmf-dist/fonts/tfm/public/cm/cmu10.tfm
+ texmf-dist/fonts/tfm/public/cm/cmvtt10.tfm
+ texmf-dist/fonts/type1/bluesky/cm/cmb10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbsy10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbx10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbx12.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbx5.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbx6.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbx7.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbx8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbx9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbxsl10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmbxti10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmcsc10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmdunh10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmex10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmff10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmfi10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmfib8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cminch.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmitt10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmmi10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmmi12.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmmi5.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmmi6.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmmi7.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmmi8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmmi9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmmib10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmr10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmr12.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmr17.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmr5.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmr6.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmr7.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmr8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmr9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsl10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsl12.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsl8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsl9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsltt10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmss10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmss12.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmss17.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmss8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmss9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmssbx10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmssdc10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmssi10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmssi12.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmssi17.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmssi8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmssi9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmssq8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmssqi8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsy10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsy5.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsy6.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsy7.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsy8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmsy9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmtcsc10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmtex10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmtex8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmtex9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmti10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmti12.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmti7.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmti8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmti9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmtt10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmtt12.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmtt8.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmtt9.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmu10.pfb
+ texmf-dist/fonts/type1/bluesky/cm/cmvtt10.pfb
+catalogue-version
+catalogue-date 2006-12-02 15:26:11 +0100
+catalogue-ctan /fonts/cm
+catalogue-license knuth
+
+name cm-lgc
+category Package
+revision 765
+shortdesc Type 1 CM-based fonts for Latin, Greek and Cyrillic.
+longdesc The fonts are converted from METAFONT sources of the Computer
+longdesc Modern font families, using textrace. Supported encodings are:
+longdesc T1 (Latin), T2A (Cyrillic), LGR (Greek) and TS1. The package
+longdesc also includes Unicode virtual fonts for use with Omega. The
+longdesc font set is not a replacement for any of the other Computer
+longdesc Modern-based font sets (for example, cm-super for Latin and
+longdesc Cyrillic, or cbgreek for Greek), since it is available at a
+longdesc single size only; it offers a compact set for ‘general’
+longdesc working. The fonts themselves are encoded to external
+longdesc standards, and virtual fonts are provided for use with TeX.
+execute addMap cm-lgc.map
+docfiles size=31379
+ texmf-dist/doc/latex/cm-lgc/COPYING
+ texmf-dist/doc/latex/cm-lgc/HISTORY
+ texmf-dist/doc/latex/cm-lgc/INSTALL details="Installation instructions"
+ texmf-dist/doc/latex/cm-lgc/README details="Bundle Readme"
+runfiles size=14435090
+ texmf-dist/fonts/afm/public/cm-lgc/fcmb6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmb6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmb8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbc6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbc6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbc8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbcpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbi6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbi6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbi8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbij6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbij6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbij8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbijpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbipg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmbpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmr6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmr6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmr8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmrc6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmrc6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmrc8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmrcpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmri6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmri6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmri8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmrij6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmrij6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmrij8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmrijpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmripg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcmrpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsb6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsb6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsb8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsbo6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsbo6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsbo8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsbopg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsbpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsr6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsr6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsr8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsro6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsro6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsro8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsropg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fcsrpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctr6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctr6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctr8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctrc6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctrc6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctrc8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctrcpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctri6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctri6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctri8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctrij6y.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctrij6z.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctrij8a.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctrijpg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctripg.afm
+ texmf-dist/fonts/afm/public/cm-lgc/fctrpg.afm
+ texmf-dist/fonts/enc/dvips/cm-lgc/8r-mod.enc
+ texmf-dist/fonts/map/dvips/cm-lgc/cm-lgc.map
+ texmf-dist/fonts/ofm/public/cm-lgc/fcmbcut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fcmbiut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fcmbut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fcmrcut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fcmriut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fcmrut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fcsbout.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fcsbut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fcsrout.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fcsrut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fctrcut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fctriut.ofm
+ texmf-dist/fonts/ofm/public/cm-lgc/fctrut.ofm
+ texmf-dist/fonts/ovf/public/cm-lgc/fcmbcut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fcmbiut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fcmbut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fcmrcut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fcmriut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fcmrut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fcsbout.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fcsbut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fcsrout.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fcsrut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fctrcut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fctriut.ovf
+ texmf-dist/fonts/ovf/public/cm-lgc/fctrut.ovf
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmb6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmb6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmb6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmb8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmb8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmb8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmb8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbc6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbc6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbc6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbc8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbc8r-nokern.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbc8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbc8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbcgr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbcpg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbgr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbi6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbi6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbi6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbi8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbi8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbi8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbi8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbigr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbij6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbij8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbij8r-nokern.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbij8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbipg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmbpg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmr6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmr6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmr6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmr8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmr8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmr8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmr8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrc6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrc6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrc6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrc8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrc8r-nokern.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrc8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrc8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrcgr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrcpg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrgr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmri6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmri6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmri6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmri8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmri8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmri8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmri8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrigr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrij6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrij8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrij8r-nokern.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrij8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmripg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcmrpg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsb6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsb6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsb6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsb8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsb8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsb8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsb8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbgr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbo6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbo6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbo6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbo8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbo8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbo8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbo8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbogr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbopg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsbpg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsr6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsr6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsr6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsr8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsr8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsr8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsr8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsrgr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsro6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsro6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsro6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsro8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsro8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsro8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsro8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsrogr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsropg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fcsrpg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctr6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctr6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctr6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctr8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctr8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctr8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctr8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrc6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrc6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrc6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrc8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrc8r-nokern.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrc8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrc8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrcgr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrcpg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrgr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctri6a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctri6y.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctri6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctri8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctri8c.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctri8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctri8t.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrigr.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrij6z.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrij8a.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrij8r-nokern.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrij8r.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctripg.tfm
+ texmf-dist/fonts/tfm/public/cm-lgc/fctrpg.tfm
+ texmf-dist/fonts/type1/public/cm-lgc/fcmb6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmb6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmb6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmb6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmb8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmb8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbc6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbc6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbc6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbc6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbc8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbc8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbcpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbcpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbi6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbi6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbi6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbi6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbi8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbi8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbij6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbij6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbij6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbij6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbij8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbij8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbijpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbijpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbipg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbipg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmbpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmr6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmr6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmr6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmr6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmr8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmr8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrc6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrc6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrc6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrc6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrc8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrc8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrcpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrcpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmri6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmri6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmri6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmri6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmri8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmri8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrij6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrij6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrij6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrij6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrij8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrij8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrijpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrijpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmripg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmripg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcmrpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsb6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsb6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsb6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsb6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsb8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsb8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbo6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbo6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbo6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbo6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbo8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbo8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbopg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbopg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsbpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsr6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsr6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsr6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsr6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsr8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsr8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsro6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsro6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsro6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsro6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsro8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsro8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsropg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsropg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fcsrpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fcsrpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctr6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctr6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctr6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctr6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctr8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctr8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctrc6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctrc6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctrc6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctrc6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctrc8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctrc8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctrcpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctrcpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctri6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctri6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctri6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctri6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctri8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctri8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctrij6y.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctrij6y.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctrij6z.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctrij6z.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctrij8a.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctrij8a.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctrijpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctrijpg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctripg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctripg.pfb
+ texmf-dist/fonts/type1/public/cm-lgc/fctrpg.inf
+ texmf-dist/fonts/type1/public/cm-lgc/fctrpg.pfb
+ texmf-dist/fonts/vf/public/cm-lgc/fcmb6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmb8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmb8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmbc6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmbc8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmbcgr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmbgr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmbi6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmbi8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmbi8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmbigr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmr6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmr8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmr8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmrc6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmrc8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmrcgr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmrgr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmri6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmri8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmri8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcmrigr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsb6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsb8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsb8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsbgr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsbo6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsbo8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsbo8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsbogr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsr6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsr8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsr8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsrgr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsro6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsro8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsro8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fcsrogr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctr6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctr8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctr8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctrc6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctrc8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctrcgr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctrgr.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctri6a.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctri8c.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctri8t.vf
+ texmf-dist/fonts/vf/public/cm-lgc/fctrigr.vf
+ texmf-dist/tex/latex/cm-lgc/antcmlgc.sty
+ texmf-dist/tex/latex/cm-lgc/cmlgc.sty
+ texmf-dist/tex/latex/cm-lgc/lgrfcm.fd
+ texmf-dist/tex/latex/cm-lgc/lgrfcs.fd
+ texmf-dist/tex/latex/cm-lgc/lgrfct.fd
+ texmf-dist/tex/latex/cm-lgc/t1fcm.fd
+ texmf-dist/tex/latex/cm-lgc/t1fcs.fd
+ texmf-dist/tex/latex/cm-lgc/t1fct.fd
+ texmf-dist/tex/latex/cm-lgc/t2afcm.fd
+ texmf-dist/tex/latex/cm-lgc/t2afcs.fd
+ texmf-dist/tex/latex/cm-lgc/t2afct.fd
+ texmf-dist/tex/latex/cm-lgc/ts1fcm.fd
+ texmf-dist/tex/latex/cm-lgc/ts1fcs.fd
+ texmf-dist/tex/latex/cm-lgc/ts1fct.fd
+ texmf-dist/tex/latex/cm-lgc/ut1fcm.fd
+ texmf-dist/tex/latex/cm-lgc/ut1fcs.fd
+ texmf-dist/tex/latex/cm-lgc/ut1fct.fd
+catalogue-version 0.5
+catalogue-date 2006-12-02 15:26:11 +0100
+catalogue-ctan /fonts/ps-type1/cm-lgc
+catalogue-license gpl
+
+name cm-super
+category Package
+revision 766
+shortdesc CM-Super family of fonts
+longdesc CM-Super family of fonts are PostScript Type 1 fonts that
+longdesc replaces the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-
+longdesc encoded Concrete, T1/TS1-encoded CM bright and LH fonts (thus
+longdesc supporting all European languages except Greek, and all
+longdesc Cyrillic-based languages), and bringing many ameliorations in
+longdesc typesetting quality. The fonts exhibit the same metrics as the
+longdesc MetaFont-encoded originals.
+execute addMixedMap cm-super-t1.map
+execute addMixedMap cm-super-t2a.map
+execute addMixedMap cm-super-t2b.map
+execute addMixedMap cm-super-t2c.map
+execute addMixedMap cm-super-ts1.map
+execute addMixedMap cm-super-x2.map
+docfiles size=43586
+ texmf-dist/doc/fonts/cm-super/COPYING
+ texmf-dist/doc/fonts/cm-super/ChangeLog
+ texmf-dist/doc/fonts/cm-super/FAQ details="Frequently Asked Questions"
+ texmf-dist/doc/fonts/cm-super/INSTALL
+ texmf-dist/doc/fonts/cm-super/README details="Bundle Readme"
+ texmf-dist/doc/fonts/cm-super/TODO
+runfiles size=112840868
+ texmf-dist/dvips/cm-super/cm-super.GS
+ texmf-dist/dvips/cm-super/config.cm-super
+ texmf-dist/fonts/afm/public/cm-super/isflb8.afm
+ texmf-dist/fonts/afm/public/cm-super/isfli8.afm
+ texmf-dist/fonts/afm/public/cm-super/isflo8.afm
+ texmf-dist/fonts/afm/public/cm-super/isflq8.afm
+ texmf-dist/fonts/afm/public/cm-super/isfltt8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbbx10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbi3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbl3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbm3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbmo10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbmo17.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbmo8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbmo9.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbmr10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbmr17.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbmr8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbmr9.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbso10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbso17.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbso8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbso9.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbsr10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbsr17.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbsr8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbsr9.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbtl10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbto10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfbx3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfcc3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfci3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfdh3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sffb2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfff0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfff1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfff1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfff1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfff1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfff2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sffi0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sffi1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sffi1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sffi1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sffi1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sffi1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sffi2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sffs2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfit0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfit0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfit1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfit1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfit1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfit1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfit1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfit2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfit2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sflb8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfli8.afm
+ texmf-dist/fonts/afm/public/cm-super/sflo8.afm
+ texmf-dist/fonts/afm/public/cm-super/sflq8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfltt8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoc3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfocc10.afm
+ texmf-dist/fonts/afm/public/cm-super/sform10.afm
+ texmf-dist/fonts/afm/public/cm-super/sform5.afm
+ texmf-dist/fonts/afm/public/cm-super/sform6.afm
+ texmf-dist/fonts/afm/public/cm-super/sform7.afm
+ texmf-dist/fonts/afm/public/cm-super/sform8.afm
+ texmf-dist/fonts/afm/public/cm-super/sform9.afm
+ texmf-dist/fonts/afm/public/cm-super/sfosl10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfosl5.afm
+ texmf-dist/fonts/afm/public/cm-super/sfosl6.afm
+ texmf-dist/fonts/afm/public/cm-super/sfosl7.afm
+ texmf-dist/fonts/afm/public/cm-super/sfosl8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfosl9.afm
+ texmf-dist/fonts/afm/public/cm-super/sfoti10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfqi8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrb3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfrm3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsc3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsi3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsl3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfso3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsq8.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfss3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfssdc10.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfst3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfsx3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sftc3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfti3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sftt3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfui3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvi3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfvt3583.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc0500.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc0600.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc0700.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc0800.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc0900.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc1000.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc1095.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc1200.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc1440.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc1728.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc2074.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc2488.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc2986.afm
+ texmf-dist/fonts/afm/public/cm-super/sfxc3583.afm
+ texmf-dist/fonts/enc/dvips/cm-super/cm-super-t1.enc
+ texmf-dist/fonts/enc/dvips/cm-super/cm-super-t2a.enc
+ texmf-dist/fonts/enc/dvips/cm-super/cm-super-t2b.enc
+ texmf-dist/fonts/enc/dvips/cm-super/cm-super-t2c.enc
+ texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc
+ texmf-dist/fonts/enc/dvips/cm-super/cm-super-x2.enc
+ texmf-dist/fonts/map/dvips/cm-super/cm-super-t1.map
+ texmf-dist/fonts/map/dvips/cm-super/cm-super-t2a.map
+ texmf-dist/fonts/map/dvips/cm-super/cm-super-t2b.map
+ texmf-dist/fonts/map/dvips/cm-super/cm-super-t2c.map
+ texmf-dist/fonts/map/dvips/cm-super/cm-super-ts1.map
+ texmf-dist/fonts/map/dvips/cm-super/cm-super-x2.map
+ texmf-dist/fonts/type1/public/cm-super/isflb8.pfb
+ texmf-dist/fonts/type1/public/cm-super/isfli8.pfb
+ texmf-dist/fonts/type1/public/cm-super/isflo8.pfb
+ texmf-dist/fonts/type1/public/cm-super/isflq8.pfb
+ texmf-dist/fonts/type1/public/cm-super/isfltt8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbbx10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbi3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbl3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbm3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbmo10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbmo17.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbmo8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbmo9.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbmr10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbmr17.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbmr8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbmr9.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbso10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbso17.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbso8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbso9.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbsr10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbsr17.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbsr8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbsr9.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbtl10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbto10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfbx3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfcc3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfci3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfdh3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffb2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfff0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfff1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfff1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfff1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfff1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfff2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffi0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffi1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffi1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffi1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffi1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffi1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffi2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sffs2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfit0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfit0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfit1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfit1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfit1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfit1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfit1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfit2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfit2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sflb8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfli8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sflo8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sflq8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfltt8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoc3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfocc10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sform10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sform5.pfb
+ texmf-dist/fonts/type1/public/cm-super/sform6.pfb
+ texmf-dist/fonts/type1/public/cm-super/sform7.pfb
+ texmf-dist/fonts/type1/public/cm-super/sform8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sform9.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfosl10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfosl5.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfosl6.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfosl7.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfosl8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfosl9.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfoti10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfqi8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrb3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfrm3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsc3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsi3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsl3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfso3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsq8.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfss3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfssdc10.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfst3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfsx3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftc3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfti3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sftt3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfui3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvi3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfvt3583.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc0500.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc0600.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc0700.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc0800.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc0900.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc1000.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc1095.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc1200.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc1440.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc1728.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc2074.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc2488.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc2986.pfb
+ texmf-dist/fonts/type1/public/cm-super/sfxc3583.pfb
+ texmf-dist/tex/latex/cm-super/type1ec.sty
+catalogue-version
+catalogue-date 2006-12-02 15:26:11 +0100
+catalogue-ctan /fonts/ps-type1/cm-super
+catalogue-license gpl
+
+name cmap
+category Package
+revision 4203
+shortdesc Make PDF files searchable and copyable.
+longdesc The cmap package provides character map tables, which make PDF
+longdesc files generated by pdfLaTeX both searchable and copy-able in
+longdesc acrobat reader and other compliant PDF viewers. Encodings
+longdesc supported are OT1, T1, T2A, T2B, T2C and T5, together with LAE
+longdesc (Arabic) and LFE (Farsi) and a variant OT1tt for cmtt-like
+longdesc fonts. The package’s main limitation currently is the
+longdesc inability to work with virtual fonts, because of limitations of
+longdesc pdfTeX. This restriction may be resolved in a future version of
+longdesc pdfTeX.
+docfiles size=3385
+ texmf-dist/doc/latex/cmap/README
+runfiles size=21913
+ texmf-dist/tex/latex/cmap/cmap.sty
+ texmf-dist/tex/latex/cmap/lae.cmap
+ texmf-dist/tex/latex/cmap/lfe.cmap
+ texmf-dist/tex/latex/cmap/ot1.cmap
+ texmf-dist/tex/latex/cmap/ot1tt.cmap
+ texmf-dist/tex/latex/cmap/t1.cmap
+ texmf-dist/tex/latex/cmap/t2a.cmap
+ texmf-dist/tex/latex/cmap/t2b.cmap
+ texmf-dist/tex/latex/cmap/t2c.cmap
+ texmf-dist/tex/latex/cmap/t5.cmap
+catalogue-version 1.0g
+catalogue-date 2007-04-26 14:18:19 +0200
+catalogue-ctan /macros/latex/contrib/cmap
+catalogue-license lppl
+
+name cmarrows
+category Package
+revision 2890
+shortdesc MetaPost arrows and braces in the Computer Modern style.
+longdesc This MetaPost package contains macros to draw arrows and braces
+longdesc in the Computer Modern style.
+docfiles size=190050
+ texmf-dist/doc/metapost/cmarrows/README details="README file"
+ texmf-dist/doc/metapost/cmarrows/cmarrows.pdf details="Package documentation"
+ texmf-dist/doc/metapost/cmarrows/cmmanual.zip
+runfiles size=198524
+ texmf-dist/metapost/cmarrows/cmarrows.mp
+ texmf-dist/metapost/cmarrows/rgbx0009.mp
+ texmf-dist/metapost/cmarrows/rgbx0016.mp
+ texmf-dist/metapost/cmarrows/rgbx0020.mp
+ texmf-dist/metapost/cmarrows/rgbx0025.mp
+ texmf-dist/metapost/cmarrows/sgbx0008.mp
+ texmf-dist/metapost/cmarrows/sgbx0010.mp
+ texmf-dist/metapost/cmarrows/sgbx0011.mp
+ texmf-dist/metapost/cmarrows/sgbx0012.mp
+ texmf-dist/metapost/cmarrows/sgbx0013.mp
+ texmf-dist/metapost/cmarrows/sgbx0014.mp
+ texmf-dist/metapost/cmarrows/sgbx0015.mp
+ texmf-dist/metapost/cmarrows/sgbx0017.mp
+ texmf-dist/metapost/cmarrows/sgbx0018.mp
+ texmf-dist/metapost/cmarrows/sgbx0019.mp
+ texmf-dist/metapost/cmarrows/sgbx0021.mp
+ texmf-dist/metapost/cmarrows/sgbx0022.mp
+ texmf-dist/metapost/cmarrows/sgbx0023.mp
+ texmf-dist/metapost/cmarrows/sgbx0024.mp
+ texmf-dist/metapost/cmarrows/tgbx0000.mp
+ texmf-dist/metapost/cmarrows/tgbx0001.mp
+ texmf-dist/metapost/cmarrows/tgbx0002.mp
+ texmf-dist/metapost/cmarrows/tgbx0003.mp
+ texmf-dist/metapost/cmarrows/tgbx0004.mp
+ texmf-dist/metapost/cmarrows/tgbx0005.mp
+ texmf-dist/metapost/cmarrows/tgbx0006.mp
+ texmf-dist/metapost/cmarrows/tgbx0007.mp
+ texmf-dist/metapost/cmarrows/tgbx0027.mp
+catalogue-version v0.9
+catalogue-date 2007-03-05 14:17:42 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/cmarrows
+catalogue-license lppl
+
+name cmastro
+category Package
+revision 5022
+shortdesc Font for planetary symbols.
+longdesc The package provides a font as MetaFont source (with driver
+longdesc files for a number of sizes), and LaTeX code for using the
+longdesc font.
+docfiles size=17235
+ texmf-dist/doc/fonts/cmastro/00astro.tex
+ texmf-dist/doc/fonts/cmastro/00dofour.sh
+ texmf-dist/doc/fonts/cmastro/00dohalf.sh
+ texmf-dist/doc/fonts/cmastro/00dozero.sh
+ texmf-dist/doc/fonts/cmastro/00loadastr.tex
+ texmf-dist/doc/fonts/cmastro/00readme.tex
+ texmf-dist/doc/fonts/cmastro/README
+ texmf-dist/doc/fonts/cmastro/astro.tex
+ texmf-dist/doc/fonts/cmastro/cmastro.tex
+ texmf-dist/doc/fonts/cmastro/demo.tex
+ texmf-dist/doc/fonts/cmastro/do.sh
+runfiles size=47817
+ texmf-dist/fonts/source/public/cmastro/cmastro10.mf
+ texmf-dist/fonts/source/public/cmastro/cmastro5.mf
+ texmf-dist/fonts/source/public/cmastro/cmastro6.mf
+ texmf-dist/fonts/source/public/cmastro/cmastro7.mf
+ texmf-dist/fonts/source/public/cmastro/cmastro8.mf
+ texmf-dist/fonts/source/public/cmastro/cmastro9.mf
+ texmf-dist/fonts/source/public/cmastro/symbols.mf
+ texmf-dist/fonts/tfm/public/cmastro/cmastro10.tfm
+ texmf-dist/fonts/tfm/public/cmastro/cmastro5.tfm
+ texmf-dist/fonts/tfm/public/cmastro/cmastro6.tfm
+ texmf-dist/fonts/tfm/public/cmastro/cmastro7.tfm
+ texmf-dist/fonts/tfm/public/cmastro/cmastro8.tfm
+ texmf-dist/fonts/tfm/public/cmastro/cmastro9.tfm
+catalogue-version
+catalogue-date 2007-02-01 21:12:02 +0100
+catalogue-ctan /fonts/cmastro
+catalogue-license unknown
+
+name cmbright
+category Package
+revision 768
+shortdesc Computer Modern Bright fonts.
+longdesc A family of sans serif fonts for TeX and LaTeX, based on Donald
+longdesc Knuth's CM fonts. It comprises OT1, T1 and TS1 encoded text
+longdesc fonts of various shapes as well as all the fonts necessary for
+longdesc mathematical typesetting, including AMS symbols. This
+longdesc collection provides all the necessary files for using the fonts
+longdesc with LaTeX. A commercial-quality Adobe Type 1 version of these
+longdesc fonts is available from Micropress. Free versions are
+longdesc available, in the cm-super font bundle (the T1 and TS1 encoded
+longdesc part of the set), and in the hfbright (the OT1 encoded part,
+longdesc and the maths fonts).
+docfiles size=14637
+ texmf-dist/doc/latex/cmbright/copyrite.txt
+ texmf-dist/doc/latex/cmbright/manifest.txt
+ texmf-dist/doc/latex/cmbright/readme
+srcfiles size=30280
+ texmf-dist/source/latex/cmbright/cmbr.fdd
+ texmf-dist/source/latex/cmbright/cmbright.dtx
+ texmf-dist/source/latex/cmbright/cmbright.ins
+ texmf-dist/source/latex/cmbright/oinst.ins
+runfiles size=975941
+ texmf-dist/fonts/source/public/cmbright/ams10pt.mf
+ texmf-dist/fonts/source/public/cmbright/ams8pt.mf
+ texmf-dist/fonts/source/public/cmbright/ams9pt.mf
+ texmf-dist/fonts/source/public/cmbright/baccent.mf
+ texmf-dist/fonts/source/public/cmbright/bgreeku.mf
+ texmf-dist/fonts/source/public/cmbright/bitalms.mf
+ texmf-dist/fonts/source/public/cmbright/bpunct.mf
+ texmf-dist/fonts/source/public/cmbright/br10pt.mf
+ texmf-dist/fonts/source/public/cmbright/br17pt.mf
+ texmf-dist/fonts/source/public/cmbright/br8pt.mf
+ texmf-dist/fonts/source/public/cmbright/br9pt.mf
+ texmf-dist/fonts/source/public/cmbright/brmsa.mf
+ texmf-dist/fonts/source/public/cmbright/brmsb.mf
+ texmf-dist/fonts/source/public/cmbright/broman.mf
+ texmf-dist/fonts/source/public/cmbright/bromanl.mf
+ texmf-dist/fonts/source/public/cmbright/bromlig.mf
+ texmf-dist/fonts/source/public/cmbright/bromms.mf
+ texmf-dist/fonts/source/public/cmbright/brs10pt.mf
+ texmf-dist/fonts/source/public/cmbright/brs17pt.mf
+ texmf-dist/fonts/source/public/cmbright/brs8pt.mf
+ texmf-dist/fonts/source/public/cmbright/brs9pt.mf
+ texmf-dist/fonts/source/public/cmbright/cmbr10.mf
+ texmf-dist/fonts/source/public/cmbright/cmbr17.mf
+ texmf-dist/fonts/source/public/cmbright/cmbr8.mf
+ texmf-dist/fonts/source/public/cmbright/cmbr9.mf
+ texmf-dist/fonts/source/public/cmbright/cmbras10.mf
+ texmf-dist/fonts/source/public/cmbright/cmbras8.mf
+ texmf-dist/fonts/source/public/cmbright/cmbras9.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrbs10.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrbs8.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrbs9.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrbx10.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrmb10.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrmi10.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrmi8.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrmi9.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrsl10.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrsl17.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrsl8.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrsl9.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrsy10.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrsy8.mf
+ texmf-dist/fonts/source/public/cmbright/cmbrsy9.mf
+ texmf-dist/fonts/source/public/cmbright/cmsltl10.mf
+ texmf-dist/fonts/source/public/cmbright/cmtl10.mf
+ texmf-dist/fonts/source/public/cmbright/ebaccess.mf
+ texmf-dist/fonts/source/public/cmbright/ebbase.mf
+ texmf-dist/fonts/source/public/cmbright/ebbraces.mf
+ texmf-dist/fonts/source/public/cmbright/ebbx10.mf
+ texmf-dist/fonts/source/public/cmbright/ebmo10.mf
+ texmf-dist/fonts/source/public/cmbright/ebmo17.mf
+ texmf-dist/fonts/source/public/cmbright/ebmo8.mf
+ texmf-dist/fonts/source/public/cmbright/ebmo9.mf
+ texmf-dist/fonts/source/public/cmbright/ebmr10.mf
+ texmf-dist/fonts/source/public/cmbright/ebmr17.mf
+ texmf-dist/fonts/source/public/cmbright/ebmr8.mf
+ texmf-dist/fonts/source/public/cmbright/ebmr9.mf
+ texmf-dist/fonts/source/public/cmbright/ebpseudo.mf
+ texmf-dist/fonts/source/public/cmbright/ebpunct.mf
+ texmf-dist/fonts/source/public/cmbright/ebrleast.mf
+ texmf-dist/fonts/source/public/cmbright/ebrlig.mf
+ texmf-dist/fonts/source/public/cmbright/ebrligtb.mf
+ texmf-dist/fonts/source/public/cmbright/ebrllett.mf
+ texmf-dist/fonts/source/public/cmbright/ebrlwest.mf
+ texmf-dist/fonts/source/public/cmbright/ebroman.mf
+ texmf-dist/fonts/source/public/cmbright/ebso10.mf
+ texmf-dist/fonts/source/public/cmbright/ebso17.mf
+ texmf-dist/fonts/source/public/cmbright/ebso8.mf
+ texmf-dist/fonts/source/public/cmbright/ebso9.mf
+ texmf-dist/fonts/source/public/cmbright/ebsr10.mf
+ texmf-dist/fonts/source/public/cmbright/ebsr17.mf
+ texmf-dist/fonts/source/public/cmbright/ebsr8.mf
+ texmf-dist/fonts/source/public/cmbright/ebsr9.mf
+ texmf-dist/fonts/source/public/cmbright/ebtl10.mf
+ texmf-dist/fonts/source/public/cmbright/ebto10.mf
+ texmf-dist/fonts/source/public/cmbright/manifest.txt
+ texmf-dist/fonts/source/public/cmbright/mathsl.mf
+ texmf-dist/fonts/source/public/cmbright/msa.mf
+ texmf-dist/fonts/source/public/cmbright/msb.mf
+ texmf-dist/fonts/source/public/cmbright/tbbx10.mf
+ texmf-dist/fonts/source/public/cmbright/tbmo10.mf
+ texmf-dist/fonts/source/public/cmbright/tbmo17.mf
+ texmf-dist/fonts/source/public/cmbright/tbmo8.mf
+ texmf-dist/fonts/source/public/cmbright/tbmo9.mf
+ texmf-dist/fonts/source/public/cmbright/tbmr10.mf
+ texmf-dist/fonts/source/public/cmbright/tbmr17.mf
+ texmf-dist/fonts/source/public/cmbright/tbmr8.mf
+ texmf-dist/fonts/source/public/cmbright/tbmr9.mf
+ texmf-dist/fonts/source/public/cmbright/tbpseudo.mf
+ texmf-dist/fonts/source/public/cmbright/tbso10.mf
+ texmf-dist/fonts/source/public/cmbright/tbso17.mf
+ texmf-dist/fonts/source/public/cmbright/tbso8.mf
+ texmf-dist/fonts/source/public/cmbright/tbso9.mf
+ texmf-dist/fonts/source/public/cmbright/tbsr10.mf
+ texmf-dist/fonts/source/public/cmbright/tbsr17.mf
+ texmf-dist/fonts/source/public/cmbright/tbsr8.mf
+ texmf-dist/fonts/source/public/cmbright/tbsr9.mf
+ texmf-dist/fonts/source/public/cmbright/tbsymb.mf
+ texmf-dist/fonts/source/public/cmbright/tbsymbol.mf
+ texmf-dist/fonts/source/public/cmbright/tbtl10.mf
+ texmf-dist/fonts/source/public/cmbright/tbto10.mf
+ texmf-dist/fonts/source/public/cmbright/ttsymb.mf
+ texmf-dist/fonts/source/public/cmbright/ttsymbol.mf
+ texmf-dist/fonts/tfm/public/cmbright/cmbr10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbr17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbr8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbr9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbras10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbras8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbras9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrbs10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrbs8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrbs9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrbx10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrmb10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrmi10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrmi8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrmi9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrsl10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrsl17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrsl8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrsl9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrsy10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrsy8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmbrsy9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmsltl10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/cmtl10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebbx10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebmo10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebmo17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebmo8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebmo9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebmr10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebmr17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebmr8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebmr9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebso10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebso17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebso8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebso9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebsr10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebsr17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebsr8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebsr9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebtl10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/ebto10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbbx10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbmo10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbmo17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbmo8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbmo9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbmr10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbmr17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbmr8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbmr9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbso10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbso17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbso8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbso9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbsr10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbsr17.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbsr8.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbsr9.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbtl10.tfm
+ texmf-dist/fonts/tfm/public/cmbright/tbto10.tfm
+ texmf-dist/tex/latex/cmbright/cmbright.sty
+ texmf-dist/tex/latex/cmbright/omlcmbr.fd
+ texmf-dist/tex/latex/cmbright/omlcmbrm.fd
+ texmf-dist/tex/latex/cmbright/omscmbr.fd
+ texmf-dist/tex/latex/cmbright/omscmbrs.fd
+ texmf-dist/tex/latex/cmbright/ot1cmbr.fd
+ texmf-dist/tex/latex/cmbright/ot1cmtl.fd
+ texmf-dist/tex/latex/cmbright/t1cmbr.fd
+ texmf-dist/tex/latex/cmbright/t1cmtl.fd
+ texmf-dist/tex/latex/cmbright/ts1cmbr.fd
+ texmf-dist/tex/latex/cmbright/ts1cmtl.fd
+catalogue-version 8.1
+catalogue-date 2007-01-01 00:37:00 +0100
+catalogue-ctan /fonts/cmbright
+catalogue-license lppl
+
+name cmcyr
+category Package
+revision 101
+shortdesc Computer Modern fonts with cyrillic extensions.
+longdesc These are the Computer Modern fonts extended with Russian
+longdesc letters, in MetaFont sources and ATM Compatible Type 1 format.
+longdesc The fonts are provided in KOI-7, but virtual fonts are
+longdesc available to recode them to three other Russian 8-bit
+longdesc encodings.
+execute addMap cmcyr.map
+docfiles size=886
+ texmf-dist/doc/fonts/cmcyr/README details="Readme"
+runfiles size=2495238
+ texmf-dist/fonts/map/dvips/cmcyr/cmcyr.map
+ texmf-dist/fonts/source/public/cmcyr/ccsc.mf
+ texmf-dist/fonts/source/public/cmcyr/citall.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcb10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcbx10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcbx12.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcbx5.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcbx6.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcbx7.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcbx8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcbx9.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcbxsl1.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcbxti1.mf
+ texmf-dist/fonts/source/public/cmcyr/cmccsc10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmccsc8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmccsc9.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcinch.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcitt10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsc11.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsc12.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsc14.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsc18.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsc24.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsc36.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcscsl1.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsl10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsl12.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsl8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsl9.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcsltt1.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcss10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcss12.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcss17.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcss8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcss9.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcssbx1.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcssdc1.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcssi10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcssi12.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcssi17.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcssi8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcssi9.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcssq8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcssqi8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcti10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcti12.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcti7.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcti8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcti9.mf
+ texmf-dist/fonts/source/public/cmcyr/cmctitle.mf
+ texmf-dist/fonts/source/public/cmcyr/cmctt10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmctt12.mf
+ texmf-dist/fonts/source/public/cmcyr/cmctt8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmctt9.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcu10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcyr10.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcyr12.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcyr17.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcyr5.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcyr6.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcyr7.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcyr8.mf
+ texmf-dist/fonts/source/public/cmcyr/cmcyr9.mf
+ texmf-dist/fonts/source/public/cmcyr/coding.bak
+ texmf-dist/fonts/source/public/cmcyr/coding.mf
+ texmf-dist/fonts/source/public/cmcyr/cyrillic.mf
+ texmf-dist/fonts/source/public/cmcyr/cyrl.mf
+ texmf-dist/fonts/source/public/cmcyr/cyrlc.mf
+ texmf-dist/fonts/source/public/cmcyr/cyrsymb.mf
+ texmf-dist/fonts/source/public/cmcyr/cyrt.mf
+ texmf-dist/fonts/source/public/cmcyr/cyru.mf
+ texmf-dist/fonts/source/public/cmcyr/cytextit.mf
+ texmf-dist/fonts/source/public/cmcyr/cytitle.mf
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcb10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcbx12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcbx5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcbx6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcbx7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcbx8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcbx9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcbxsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcbxti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmccsc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmccsc8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmccsc9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcinch.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcitt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcsl12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcsl8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcsl9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcsltt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcss10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcss12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcss17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcss8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcss9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcssbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcssdc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcssi10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcssi12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcssi17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcssi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcssi9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcssq8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcssqi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcti12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcti7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcti8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcti9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmctt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmctt12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmctt8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmctt9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcu10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcyr10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcyr12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcyr17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcyr5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcyr6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcyr7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcyr8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr/cmcyr9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmb10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmbx12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmbx5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmbx6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmbx7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmbx8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmbx9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmbxsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmbxti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmcsc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmcsc8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmcsc9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcminch.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmitt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmmi10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmmi12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmmi5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmmi6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmmi7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmmi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmmi9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmmib10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmr10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmr12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmr17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmr5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmr6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmr7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmr8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmr9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmsl12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmsl8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmsl9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmsltt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmss10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmss12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmss17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmss8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmss9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmssbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmssdc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmssi10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmssi12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmssi17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmssi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmssi9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmssq8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmssqi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmti12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmti7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmti8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmti9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmtt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmtt12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmtt8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmtt9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6d/xcmu10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmb10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmbx12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmbx5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmbx6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmbx7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmbx8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmbx9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmbxsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmbxti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmcsc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmcsc8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmcsc9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycminch.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmitt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmmi10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmmi12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmmi5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmmi6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmmi7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmmi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmmi9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmmib10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmr10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmr12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmr17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmr5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmr6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmr7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmr8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmr9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmsl12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmsl8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmsl9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmsltt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmss10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmss12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmss17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmss8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmss9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmssbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmssdc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmssi10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmssi12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmssi17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmssi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmssi9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmssq8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmssqi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmti12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmti7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmti8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmti9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmtt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmtt12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmtt8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmtt9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6i/ycmu10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmb10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmbx12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmbx5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmbx6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmbx7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmbx8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmbx9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmbxsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmbxti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmcsc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmcsc8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmcsc9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcminch.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmitt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmmi10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmmi12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmmi5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmmi6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmmi7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmmi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmmi9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmmib10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmr10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmr12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmr17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmr5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmr6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmr7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmr8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmr9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmsl12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmsl8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmsl9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmsltt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmss10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmss12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmss17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmss8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmss9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmssbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmssdc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmssi10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmssi12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmssi17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmssi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmssi9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmssq8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmssqi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmti12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmti7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmti8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmti9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmtt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmtt12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmtt8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmtt9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6k/kcmu10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmb10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmbx12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmbx5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmbx6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmbx7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmbx8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmbx9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmbxsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmbxti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmcsc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmcsc8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmcsc9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcminch.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmitt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmmi10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmmi12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmmi5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmmi6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmmi7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmmi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmmi9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmmib10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmr10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmr12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmr17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmr5.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmr6.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmr7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmr8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmr9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmsl10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmsl12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmsl8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmsl9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmsltt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmss10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmss12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmss17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmss8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmss9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmssbx10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmssdc10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmssi10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmssi12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmssi17.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmssi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmssi9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmssq8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmssqi8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmti10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmti12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmti7.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmti8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmti9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmtt10.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmtt12.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmtt8.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmtt9.tfm
+ texmf-dist/fonts/tfm/public/cmcyr/cmcyr6w/wcmu10.tfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcb10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcb10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx12.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx12.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx5.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx5.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx6.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx6.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx7.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx7.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx9.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcbx9.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcbxsl1.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcbxsl1.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcbxti1.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcbxti1.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmccsc10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmccsc10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmccsc8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmccsc8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmccsc9.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmccsc9.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcinch7.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcinch7.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcitt10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcitt10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcsl10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcsl10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcsl12.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcsl12.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcsl8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcsl8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcsl9.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcsl9.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcsltt1.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcsltt1.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcss10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcss10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcss12.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcss12.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcss17.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcss17.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcss8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcss8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcss9.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcss9.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcssbx1.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcssbx1.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcssdc1.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcssdc1.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi12.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi12.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi17.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi17.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi9.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcssi9.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcssq8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcssq8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcssqi8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcssqi8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcti10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcti10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcti12.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcti12.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcti7.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcti7.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcti8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcti8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcti9.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcti9.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmctt10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmctt10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmctt12.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmctt12.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmctt8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmctt8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmctt9.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmctt9.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcu10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcu10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr10.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr10.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr12.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr12.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr17.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr17.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr5.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr5.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr6.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr6.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr7.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr7.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr8.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr8.pfm
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr9.pfb
+ texmf-dist/fonts/type1/public/cmcyr/cmcyr9.pfm
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/cmalt
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/cmalte
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/cyralt
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/cyralte
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/merge.alt
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/merge.bat
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/wncalt
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/wncalte
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmb10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmbx10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmbx12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmbx5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmbx6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmbx7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmbx8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmbx9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmbxsl10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmbxti10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmcsc10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmcsc8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmcsc9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcminch.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmitt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmmi10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmmi12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmmi5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmmi6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmmi7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmmi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmmi9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmmib10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmr10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmr12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmr17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmr5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmr6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmr7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmr8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmr9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmsl10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmsl12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmsl8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmsl9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmsltt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmss10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmss12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmss17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmss8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmss9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmssbx10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmssdc10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmssi10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmssi12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmssi17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmssi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmssi9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmssq8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmssqi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmti10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmti12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmti7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmti8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmti9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmtt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmtt12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmtt8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmtt9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6d/xcmu10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/cmiso
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/cmisoe
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/cyriso
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/cyrisoe
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/merge.6i
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/merge.bat
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/merge.iso
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/wnciso
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/wncisoe
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmb10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmbx10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmbx12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmbx5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmbx6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmbx7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmbx8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmbx9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmbxsl10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmbxti10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmcsc10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmcsc8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmcsc9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycminch.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmitt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmmi10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmmi12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmmi5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmmi6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmmi7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmmi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmmi9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmmib10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmr10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmr12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmr17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmr5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmr6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmr7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmr8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmr9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmsl10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmsl12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmsl8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmsl9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmsltt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmss10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmss12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmss17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmss8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmss9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmssbx10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmssdc10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmssi10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmssi12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmssi17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmssi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmssi9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmssq8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmssqi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmti10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmti12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmti7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmti8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmti9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmtt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmtt12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmtt8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmtt9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6i/ycmu10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/cmkde
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/cmkdee
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/cmkoi8
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/cmkoi8e
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/cyrkde
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/cyrkdee
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/cyrkoi8
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/cyrkoi8e
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmb10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmbx10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmbx12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmbx5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmbx6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmbx7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmbx8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmbx9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmbxsl10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmbxti10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmcsc10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmcsc8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmcsc9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcminch.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmitt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmmi10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmmi12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmmi5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmmi6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmmi7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmmi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmmi9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmmib10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmr10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmr12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmr17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmr5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmr6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmr7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmr8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmr9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmsl10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmsl12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmsl8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmsl9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmsltt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmss10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmss12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmss17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmss8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmss9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmssbx10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmssdc10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmssi10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmssi12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmssi17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmssi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmssi9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmssq8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmssqi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmti10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmti12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmti7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmti8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmti9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmtt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmtt12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmtt8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmtt9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/kcmu10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/merge.6k
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/merge.bat
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/merge.koi
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/wnckoi8
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6k/wnckoi8e
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/cmwin
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmb10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmbx10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmbx12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmbx5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmbx6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmbx7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmbx8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmbx9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmbxsl10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmbxti10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmcsc10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmcsc8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmcsc9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcminch.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmitt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmmi10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmmi12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmmi5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmmi6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmmi7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmmi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmmi9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmmib10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmr10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmr12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmr17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmr5.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmr6.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmr7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmr8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmr9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmsl10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmsl12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmsl8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmsl9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmsltt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmss10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmss12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmss17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmss8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmss9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmssbx10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmssdc10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmssi10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmssi12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmssi17.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmssi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmssi9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmssq8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmssqi8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmti10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmti12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmti7.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmti8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmti9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmtt10.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmtt12.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmtt8.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmtt9.vf
+ texmf-dist/fonts/vf/public/cmcyr/cmcyr6w/wcmu10.vf
+catalogue-version
+catalogue-date 2007-09-16 18:06:50 +0200
+catalogue-ctan /fonts/cyrillic/cmcyr
+catalogue-license pd
+
+name cmcyralt
+category Package
+revision 769
+docfiles size=26720
+ texmf-dist/doc/latex/cmcyralt/rhyphen.tex
+srcfiles size=16233
+ texmf-dist/source/latex/cmcyralt/INSTALL
+ texmf-dist/source/latex/cmcyralt/README
+ texmf-dist/source/latex/cmcyralt/examples/karabas.tex
+ texmf-dist/source/latex/cmcyralt/examples/kniga.tex
+ texmf-dist/source/latex/cmcyralt/examples/otchet.tex
+ texmf-dist/source/latex/cmcyralt/examples/pismo.tex
+ texmf-dist/source/latex/cmcyralt/examples/rusfonts.tex
+ texmf-dist/source/latex/cmcyralt/examples/statya.tex
+ texmf-dist/source/latex/cmcyralt/hyphen.cfg
+runfiles size=14427
+ texmf-dist/tex/latex/cmcyralt/OT1cmcss.fd
+ texmf-dist/tex/latex/cmcyralt/OT1cmctt.fd
+ texmf-dist/tex/latex/cmcyralt/OT1cmcyr.fd
+ texmf-dist/tex/latex/cmcyralt/cmcyralt.sty
+ texmf-dist/tex/latex/cmcyralt/fancycha.sty
+ texmf-dist/tex/latex/cmcyralt/glava.sty
+ texmf-dist/tex/latex/cmcyralt/russian.sty
+
+name cmdstring
+category Package
+revision 4189
+shortdesc Get command name reliably.
+longdesc Extracts the letters of a command’s name (e.g., foo for
+longdesc command \foo), in a reliable way.
+docfiles size=362099
+ texmf-dist/doc/latex/cmdstring/README details="Readme"
+ texmf-dist/doc/latex/cmdstring/cmdstring.pdf details="Package documentation"
+ texmf-dist/doc/latex/cmdstring/cmdstring.tex
+runfiles size=943
+ texmf-dist/tex/latex/cmdstring/cmdstring.sty
+catalogue-version 1.1
+catalogue-date 2007-05-13 12:01:55 +0200
+catalogue-ctan /macros/latex/contrib/cmdstring
+catalogue-license lppl
+
+name cmdtrack
+category Package
+revision 770
+shortdesc Check used commands.
+longdesc Aids in the task of checking whether a command defined in a
+longdesc document preamble is actually used somewhere in the document.
+longdesc If you use the package cmdtrack to the preamble of your
+longdesc document, all \newcommand and similar statements between that
+longdesc point and the beginning of the document will be marked for
+longdesc logging. At the end of the document a report of the command
+longdesc usage will be printed in the TeX log, for example: mdash was
+longdesc used on line 25; ndash was never used.
+srcfiles size=16547
+ texmf-dist/source/latex/cmdtrack/cmdtrack.dtx
+ texmf-dist/source/latex/cmdtrack/cmdtrack.ins
+runfiles size=6601
+ texmf-dist/tex/latex/cmdtrack/cmdtrack.sty
+catalogue-version
+catalogue-date 2007-01-01 00:37:00 +0100
+catalogue-ctan /macros/latex/contrib/cmdtrack
+catalogue-license dfsg
+
+name cmex
+category Package
+revision 98
+execute addMixedMap ttcmex.map
+runfiles size=105901
+ texmf-dist/fonts/map/dvips/cmex/ttcmex.map
+ texmf-dist/fonts/type1/public/cmex/fmex7.pfb
+ texmf-dist/fonts/type1/public/cmex/fmex8.pfb
+ texmf-dist/fonts/type1/public/cmex/fmex9.pfb
+
+name cmextra
+category Package
+revision 101
+runfiles size=64232
+ texmf-dist/fonts/source/public/cmextra/cmbxcd10.mf
+ texmf-dist/fonts/source/public/cmextra/cmbxti12.mf
+ texmf-dist/fonts/source/public/cmextra/cmbxti7.mf
+ texmf-dist/fonts/source/public/cmextra/cmcscsl10.mf
+ texmf-dist/fonts/source/public/cmextra/cmfibs8.mf
+ texmf-dist/fonts/source/public/cmextra/cmitt12.mf
+ texmf-dist/fonts/source/public/cmextra/cmitt9.mf
+ texmf-dist/fonts/source/public/cmextra/cmsl6.mf
+ texmf-dist/fonts/source/public/cmextra/cmsltt9.mf
+ texmf-dist/fonts/source/public/cmextra/cmssbxo10.mf
+ texmf-dist/fonts/source/public/cmextra/cmsslu30.mf
+ texmf-dist/fonts/source/public/cmextra/cmssu30.mf
+ texmf-dist/fonts/source/public/cmextra/cmvtti10.mf
+ texmf-dist/fonts/tfm/public/cmextra/cmbxcd10.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmbxti12.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmbxti7.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmcscsl10.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmfibs8.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmitt12.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmitt9.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmsl6.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmsltt9.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmssbxo10.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmsslu30.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmssu30.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmvtti10.tfm
+
+name cmll
+category Package
+revision 1904
+shortdesc Symbols for linear logic.
+longdesc This is a very small font set that contain some symbols useful
+longdesc in linear logic, which are apparently not available elsewhere.
+longdesc Variants are included for use with Computer Modern serif and
+longdesc sans-serif and with the AMS Euler series. The font is provided
+longdesc both as MetaFont source, and in Adobe Type 1 format. LaTeX
+longdesc support is provided. format.
+execute addMixedMap cmll.map
+docfiles size=65389
+ texmf-dist/doc/latex/cmll/README details="Readme"
+ texmf-dist/doc/latex/cmll/cmll.pdf details="Package documentation"
+srcfiles size=7619
+ texmf-dist/source/latex/cmll/cmll.dtx
+ texmf-dist/source/latex/cmll/cmll.ins
+runfiles size=417515
+ texmf-dist/fonts/map/dvips/cmll/cmll.map
+ texmf-dist/fonts/source/public/cmll/cmllbx10.mf
+ texmf-dist/fonts/source/public/cmll/cmllbx5.mf
+ texmf-dist/fonts/source/public/cmll/cmllbx6.mf
+ texmf-dist/fonts/source/public/cmll/cmllbx7.mf
+ texmf-dist/fonts/source/public/cmll/cmllbx8.mf
+ texmf-dist/fonts/source/public/cmll/cmllbx9.mf
+ texmf-dist/fonts/source/public/cmll/cmllr10.mf
+ texmf-dist/fonts/source/public/cmll/cmllr5.mf
+ texmf-dist/fonts/source/public/cmll/cmllr6.mf
+ texmf-dist/fonts/source/public/cmll/cmllr7.mf
+ texmf-dist/fonts/source/public/cmll/cmllr8.mf
+ texmf-dist/fonts/source/public/cmll/cmllr9.mf
+ texmf-dist/fonts/source/public/cmll/cmllss10.mf
+ texmf-dist/fonts/source/public/cmll/cmllss8.mf
+ texmf-dist/fonts/source/public/cmll/cmllss9.mf
+ texmf-dist/fonts/source/public/cmll/cmllssbx10.mf
+ texmf-dist/fonts/source/public/cmll/eullbx10.mf
+ texmf-dist/fonts/source/public/cmll/eullbx5.mf
+ texmf-dist/fonts/source/public/cmll/eullbx6.mf
+ texmf-dist/fonts/source/public/cmll/eullbx7.mf
+ texmf-dist/fonts/source/public/cmll/eullbx8.mf
+ texmf-dist/fonts/source/public/cmll/eullbx9.mf
+ texmf-dist/fonts/source/public/cmll/eullr10.mf
+ texmf-dist/fonts/source/public/cmll/eullr5.mf
+ texmf-dist/fonts/source/public/cmll/eullr6.mf
+ texmf-dist/fonts/source/public/cmll/eullr7.mf
+ texmf-dist/fonts/source/public/cmll/eullr8.mf
+ texmf-dist/fonts/source/public/cmll/eullr9.mf
+ texmf-dist/fonts/source/public/cmll/lleusym.mf
+ texmf-dist/fonts/source/public/cmll/llsymbols.mf
+ texmf-dist/fonts/tfm/public/cmll/cmllbx10.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllbx5.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllbx6.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllbx7.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllbx8.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllbx9.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllr10.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllr5.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllr6.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllr7.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllr8.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllr9.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllss10.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllss8.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllss9.tfm
+ texmf-dist/fonts/tfm/public/cmll/cmllssbx10.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullbx10.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullbx5.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullbx6.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullbx7.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullbx8.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullbx9.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullr10.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullr5.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullr6.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullr7.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullr8.tfm
+ texmf-dist/fonts/tfm/public/cmll/eullr9.tfm
+ texmf-dist/fonts/type1/public/cmll/cmllbx10.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllbx5.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllbx6.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllbx7.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllbx8.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllbx9.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllr10.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllr5.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllr6.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllr7.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllr8.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllr9.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllss10.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllss8.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllss9.pfb
+ texmf-dist/fonts/type1/public/cmll/cmllssbx10.pfb
+ texmf-dist/fonts/type1/public/cmll/eullbx10.pfb
+ texmf-dist/fonts/type1/public/cmll/eullbx5.pfb
+ texmf-dist/fonts/type1/public/cmll/eullbx6.pfb
+ texmf-dist/fonts/type1/public/cmll/eullbx7.pfb
+ texmf-dist/fonts/type1/public/cmll/eullbx8.pfb
+ texmf-dist/fonts/type1/public/cmll/eullbx9.pfb
+ texmf-dist/fonts/type1/public/cmll/eullr10.pfb
+ texmf-dist/fonts/type1/public/cmll/eullr5.pfb
+ texmf-dist/fonts/type1/public/cmll/eullr6.pfb
+ texmf-dist/fonts/type1/public/cmll/eullr7.pfb
+ texmf-dist/fonts/type1/public/cmll/eullr8.pfb
+ texmf-dist/fonts/type1/public/cmll/eullr9.pfb
+ texmf-dist/tex/latex/cmll/cmll.sty
+ texmf-dist/tex/latex/cmll/ucmllr.fd
+ texmf-dist/tex/latex/cmll/ucmllss.fd
+ texmf-dist/tex/latex/cmll/ueull.fd
+catalogue-version
+catalogue-date 2007-09-14 21:39:06 +0200
+catalogue-ctan /fonts/cmll
+catalogue-license lppl
+
+name cmpica
+category Package
+revision 101
+shortdesc A Computer Modern Pica variant.
+longdesc An approximate equivalent of the Xerox Pica typeface; the font
+longdesc is optimised for submitting fiction manuscripts to mainline
+longdesc publishers. The font is a fixed-width one, rather less heavy
+longdesc than Computer Modern typewriter. Emphasis for bold-face comes
+longdesc from a wavy underline of each letter. The two fonts are
+longdesc supplied as MetaFont source.
+docfiles size=1198
+ texmf-dist/doc/fonts/cmpica/README.cmp
+runfiles size=29215
+ texmf-dist/fonts/source/public/cmpica/cmpica.mf
+ texmf-dist/fonts/source/public/cmpica/cmpicab.mf
+ texmf-dist/fonts/source/public/cmpica/cmpicati.mf
+ texmf-dist/fonts/source/public/cmpica/pcpunct.mf
+ texmf-dist/fonts/source/public/cmpica/pica.mf
+ texmf-dist/fonts/tfm/public/cmpica/cmpica.tfm
+ texmf-dist/fonts/tfm/public/cmpica/cmpicab.tfm
+ texmf-dist/fonts/tfm/public/cmpica/cmpicati.tfm
+catalogue-version
+catalogue-date 2007-01-01 11:39:06 +0100
+catalogue-ctan /fonts/cmpica
+catalogue-license unknown
+
+name cmsd
+category Package
+revision 771
+shortdesc Interfaces to the CM Sans Serif Bold fonts.
+longdesc Thr purpose of the package is to provide an alternative
+longdesc interface to the CM Sans Serif boldface fonts. The EC (T1,
+longdesc Cork) encoded versions of the ‘CM Sans Serif boldface
+longdesc extended’ fonts differ considerably from the traditionally
+longdesc (OT1) encoded ones: at large sizes, >10pt, they have thinner
+longdesc strokes and are much wider. At 25pt they are hardly to be
+longdesc recognized as being ‘boldface’. This package attempts to
+longdesc make these T1 fonts look like the traditional ones did. You do
+longdesc not need any new fonts; the package just changes the way LaTeX
+longdesc makes use of the current ones.
+srcfiles size=4801
+ texmf-dist/source/latex/cmsd/liesmich
+ texmf-dist/source/latex/cmsd/readme
+runfiles size=1877
+ texmf-dist/tex/latex/cmsd/cmsd.sty
+ texmf-dist/tex/latex/cmsd/t1cmsd.fd
+ texmf-dist/tex/latex/cmsd/ts1cmsd.fd
+catalogue-version
+catalogue-date 2006-12-18 23:50:36 +0100
+catalogue-ctan /macros/latex/contrib/cmsd
+catalogue-license lppl
+
+name cns
+category Package
+revision 90
+docfiles size=3232
+ texmf-dist/doc/fonts/cns/cns40-1/README
+ texmf-dist/doc/fonts/cns/cns40-2/README
+ texmf-dist/doc/fonts/cns/cns40-3/README
+ texmf-dist/doc/fonts/cns/cns40-4/README
+ texmf-dist/doc/fonts/cns/cns40-5/README
+ texmf-dist/doc/fonts/cns/cns40-6/README
+ texmf-dist/doc/fonts/cns/cns40-7/README
+ texmf-dist/doc/fonts/cns/cns40-b5/README
+runfiles size=10065307
+ texmf-dist/fonts/misc/cns/4040w0.bin
+ texmf-dist/fonts/misc/cns/4040w1.bin
+ texmf-dist/fonts/misc/cns/4040w2.bin
+ texmf-dist/fonts/misc/cns/4040w3.bin
+ texmf-dist/fonts/misc/cns/4040w4.bin
+ texmf-dist/fonts/misc/cns/4040w5.bin
+ texmf-dist/fonts/misc/cns/4040w6.bin
+ texmf-dist/fonts/misc/cns/4040w7.bin
+ texmf-dist/fonts/misc/cns/cns40-1.hbf
+ texmf-dist/fonts/misc/cns/cns40-2.hbf
+ texmf-dist/fonts/misc/cns/cns40-3.hbf
+ texmf-dist/fonts/misc/cns/cns40-4.hbf
+ texmf-dist/fonts/misc/cns/cns40-5.hbf
+ texmf-dist/fonts/misc/cns/cns40-6.hbf
+ texmf-dist/fonts/misc/cns/cns40-7.hbf
+ texmf-dist/fonts/misc/cns/cns40-b5.hbf
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1201.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1202.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1203.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1204.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1205.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1206.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1207.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1208.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1209.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1210.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1211.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1212.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1213.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1214.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1215.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1216.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1217.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1218.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1219.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1220.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1221.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1222.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1223.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1224.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1225.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1226.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1227.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1228.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1229.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1230.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1231.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1232.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1233.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1234.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1235.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1236.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1237.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1238.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1239.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1240.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1241.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1242.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1243.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1244.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1245.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1246.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1247.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1248.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1249.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1250.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1251.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1252.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1253.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1254.tfm
+ texmf-dist/fonts/tfm/cns/c0so12/c0so1255.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1201.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1202.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1203.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1204.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1205.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1206.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1207.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1208.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1209.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1210.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1211.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1212.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1213.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1214.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1215.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1216.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1217.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1218.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1219.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1220.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1221.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1222.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1223.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1224.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1225.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1226.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1227.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1228.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1229.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1230.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1231.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1232.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1233.tfm
+ texmf-dist/fonts/tfm/cns/c1so12/c1so1234.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1201.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1202.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1203.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1204.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1205.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1206.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1207.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1208.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1209.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1210.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1211.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1212.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1213.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1214.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1215.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1216.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1217.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1218.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1219.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1220.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1221.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1222.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1223.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1224.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1225.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1226.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1227.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1228.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1229.tfm
+ texmf-dist/fonts/tfm/cns/c2so12/c2so1230.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1201.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1202.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1203.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1204.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1205.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1206.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1207.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1208.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1209.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1210.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1211.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1212.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1213.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1214.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1215.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1216.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1217.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1218.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1219.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1220.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1221.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1222.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1223.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1224.tfm
+ texmf-dist/fonts/tfm/cns/c3so12/c3so1225.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1201.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1202.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1203.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1204.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1205.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1206.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1207.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1208.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1209.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1210.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1211.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1212.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1213.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1214.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1215.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1216.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1217.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1218.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1219.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1220.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1221.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1222.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1223.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1224.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1225.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1226.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1227.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1228.tfm
+ texmf-dist/fonts/tfm/cns/c4so12/c4so1229.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1201.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1202.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1203.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1204.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1205.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1206.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1207.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1208.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1209.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1210.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1211.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1212.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1213.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1214.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1215.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1216.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1217.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1218.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1219.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1220.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1221.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1222.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1223.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1224.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1225.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1226.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1227.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1228.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1229.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1230.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1231.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1232.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1233.tfm
+ texmf-dist/fonts/tfm/cns/c5so12/c5so1234.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1201.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1202.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1203.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1204.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1205.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1206.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1207.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1208.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1209.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1210.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1211.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1212.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1213.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1214.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1215.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1216.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1217.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1218.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1219.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1220.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1221.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1222.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1223.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1224.tfm
+ texmf-dist/fonts/tfm/cns/c6so12/c6so1225.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1201.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1202.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1203.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1204.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1205.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1206.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1207.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1208.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1209.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1210.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1211.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1212.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1213.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1214.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1215.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1216.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1217.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1218.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1219.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1220.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1221.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1222.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1223.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1224.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1225.tfm
+ texmf-dist/fonts/tfm/cns/c7so12/c7so1226.tfm
+
+name codepage
+category Package
+revision 1487
+shortdesc Support for variant code pages.
+longdesc The package provides a mechanism for inputting non-ASCII text.
+longdesc Nowadays, the job is mostly done by the inputenc package in the
+longdesc LaTeX distribution.
+docfiles size=183850
+ texmf-dist/doc/latex/codepage/codepage.dvi
+ texmf-dist/doc/latex/codepage/frintro.dvi
+ texmf-dist/doc/latex/codepage/lisez.moi details="Readme" language="fr"
+ texmf-dist/doc/latex/codepage/read.me details="Readme"
+srcfiles size=140272
+ texmf-dist/source/latex/codepage/codepage.drv
+ texmf-dist/source/latex/codepage/codepage.dtx
+ texmf-dist/source/latex/codepage/codepage.ins
+ texmf-dist/source/latex/codepage/demo.zip
+ texmf-dist/source/latex/codepage/frintro.drv
+runfiles size=88585
+ texmf-dist/tex/latex/codepage/code437.tex
+ texmf-dist/tex/latex/codepage/code850.tex
+ texmf-dist/tex/latex/codepage/codeiso1.tex
+ texmf-dist/tex/latex/codepage/codemac.tex
+ texmf-dist/tex/latex/codepage/codepage.sty
+ texmf-dist/tex/latex/codepage/initcar.tex
+ texmf-dist/tex/latex/codepage/shapecm.tex
+ texmf-dist/tex/latex/codepage/shapedc.tex
+catalogue-version
+catalogue-date 2007-01-01 11:39:06 +0100
+catalogue-ctan /macros/latex/contrib/codepage
+catalogue-license unknown
+
+name collection-basic
+category Collection
+revision 5228
+shortdesc Essential programs and files
+longdesc These files are regarded as basic for any TeX system, covering
+longdesc plain TeX macros, Computer Modern fonts, and configuration for
+longdesc common drivers.
+depend ams
+depend amsfonts
+depend bibtex
+depend cm
+depend cmex
+depend dvips
+depend enctex
+depend etex
+depend fontname
+depend lm
+depend makeindex
+depend metafont
+depend mflogo
+depend misc
+depend plain
+depend xu-hyphen
+depend hyphen-base
+depend collection-basicbin
+depend collection-documentation-base
+
+name collection-basicbin
+category Collection
+revision 5228
+shortdesc Essential binaries
+longdesc These programs are regarded as basic for any TeX system.
+depend bin-bibtex
+depend bin-dialog
+depend bin-dvipdfm
+depend bin-dvipdfmx
+depend bin-dvipsk
+depend bin-etex
+depend bin-getnonfreefonts
+depend bin-gsftopk
+depend bin-kpathsea
+depend bin-makeindex
+depend bin-metafont
+depend bin-mfware
+depend bin-pdftex
+depend bin-tetex
+depend bin-tex
+depend bin-texconfig
+depend bin-thumbpdf
+depend bin-xdvi
+
+name collection-bibtexextra
+category Collection
+revision 5493
+shortdesc Extra BibTeX styles
+longdesc Additional BibTeX styles and bibliography databases.
+depend apacite
+depend beebe
+depend bibarts
+depend bibhtml
+depend biblist
+depend bibtopic
+depend bibtopicprefix
+depend bibunits
+depend compactbib
+depend custom-bib
+depend dk-bib
+depend doipubmed
+depend elsevier-bib
+depend figbib
+depend footbib
+depend harvard
+depend harvmac
+depend ijqc
+depend inlinebib
+depend iopart-num
+depend jneurosci
+depend jurabib
+depend listbib
+depend multibib
+depend munich
+depend notes2bib
+depend perception
+depend rsc
+depend sort-by-letters
+depend splitbib
+depend urlbst
+depend collection-latex
+
+name collection-binextra
+category Collection
+revision 5228
+shortdesc TeX auxiliary programs
+longdesc Various useful, but non-essential, support programs. Includes
+longdesc programs and macros for DVI file manipulation, literate
+longdesc programming, PerlTeX, patgen, etc.
+depend cweb
+depend mkind-english
+depend bin-bibtex8
+depend bin-ctie
+depend bin-cweb
+depend bin-detex
+depend bin-dtl
+depend bin-dvi2tty
+depend bin-dvicopy
+depend bin-dvidvi
+depend bin-dviljk
+depend bin-dvipos
+depend bin-lacheck
+depend bin-patgen
+depend bin-pdftools
+depend bin-seetexk
+depend bin-texdoc
+depend bin-texware
+depend bin-tie
+depend bin-tpic2pdftex
+depend bin-vpe
+depend bin-web
+depend collection-basic
+
+name collection-context
+category Collection
+revision 5228
+shortdesc ConTeXt format
+longdesc Hans Hagen's powerful macro package, ConText
+depend context
+depend jmn
+depend lmextra
+depend bin-context
+depend collection-basic
+
+name collection-documentation-base
+category Collection
+revision 5228
+shortdesc Base documentation
+longdesc Basic documentation
+depend texlive-common
+depend texlive-en
+
+name collection-documentation-bulgarian
+category Collection
+revision 5228
+shortdesc Bulgarian documentation
+longdesc Assorted useful Bulgarian documentation and guides
+depend lshort-bulgarian
+depend collection-documentation-base
+
+name collection-documentation-chinese
+category Collection
+revision 5228
+shortdesc Chinese documentation
+depend texlive-zh-cn
+depend collection-documentation-base
+
+name collection-documentation-czechslovak
+category Collection
+revision 5228
+shortdesc Czechslovak documentation
+longdesc Assorted useful Czechslovak documentation and guides
+depend lshort-slovak
+depend texlive-cz
+depend collection-documentation-base
+
+name collection-documentation-dutch
+category Collection
+revision 5228
+shortdesc Dutch documentation
+longdesc Assorted useful Dutch documentation and guides
+depend lkort
+depend lshort-dutch
+depend ntg
+depend collection-documentation-base
+
+name collection-documentation-english
+category Collection
+revision 5228
+shortdesc English documentation
+longdesc Documentation in English.
+depend FAQ-en
+depend MemoirChapStyles
+depend Type1fonts
+depend amslatex-primer
+depend components-of-TeX
+depend comprehensive
+depend dtxtut
+depend firststeps
+depend free-math-font-survey
+depend gentle
+depend guide-to-latex
+depend help
+depend impatient
+depend knuth
+depend l2tabu-english
+depend latex-graphics-companion
+depend latex-web-companion
+depend lshort-english
+depend math-into-latex
+depend mathmode
+depend metafont-for-beginners
+depend metafp
+depend metapost-examples
+depend pstricks-tutorial
+depend tamethebeast
+depend tds
+depend tex-refs
+depend texbytopic
+depend tlc2
+depend truetype
+depend visualfaq
+depend webguide
+depend wp-conv
+depend xetexref
+depend collection-documentation-base
+
+name collection-documentation-finnish
+category Collection
+revision 5228
+shortdesc Finnish documentation
+longdesc Assorted useful Finnish documentation and guides
+depend lshort-finnish
+depend collection-documentation-base
+
+name collection-documentation-french
+category Collection
+revision 5228
+shortdesc French documentation
+longdesc Assorted useful French documentation and guides.
+depend FAQ-fr
+depend epslatex-fr
+depend impatient-fr
+depend l2tabu-french
+depend lshort-french
+depend texlive-fr
+depend collection-documentation-base
+
+name collection-documentation-german
+category Collection
+revision 5228
+shortdesc German documentation
+depend FAQ-ge
+depend kopka
+depend l2picfaq
+depend l2tabu
+depend latex-tipps-und-tricks
+depend lshort-german
+depend templates-fenn
+depend templates-sommer
+depend texlive-ge
+depend voss-de
+depend collection-documentation-base
+
+name collection-documentation-greek
+category Collection
+revision 5228
+shortdesc Greek documentation
+longdesc Assorted useful Greek documentation and guides
+depend gentle-gr
+depend collection-documentation-base
+
+name collection-documentation-italian
+category Collection
+revision 5358
+shortdesc Italian documentation
+longdesc Assorted useful Italian documentation and guides
+depend amsldoc-it
+depend amsmath-it
+depend amsthdoc-it
+depend fancyhdr-it
+depend l2tabu-it
+depend lshort-italian
+depend psfrag-italian
+depend collection-documentation-base
+
+name collection-documentation-japanese
+category Collection
+revision 5228
+shortdesc Japanese documentation
+longdesc Assorted useful Japanese documentation and guides
+depend lshort-japanese
+depend collection-documentation-base
+
+name collection-documentation-korean
+category Collection
+revision 5228
+shortdesc Korean documentation
+longdesc Assorted useful Korean documentation and guides
+depend lshort-korean
+depend collection-documentation-base
+
+name collection-documentation-mongolian
+category Collection
+revision 5228
+shortdesc Mongolian documentation
+longdesc Assorted useful Mongolian documentation and guides
+depend lshort-mongolian
+depend collection-documentation-base
+
+name collection-documentation-polish
+category Collection
+revision 5228
+shortdesc Polish documentation
+longdesc Assorted useful Polish documentation and guides
+depend guides-pl
+depend lshort-polish
+depend tex-virtual-academy-pl
+depend texlive-pl
+depend collection-documentation-base
+
+name collection-documentation-portuguese
+category Collection
+revision 5228
+shortdesc Portuguese documentation
+depend beamer-tut-pt
+depend cursolatex
+depend lshort-portuguese
+depend xypic-tut-pt
+depend collection-documentation-base
+
+name collection-documentation-russian
+category Collection
+revision 5228
+shortdesc Russian documentation
+longdesc Assorted useful Russian documentation and guides
+depend lshort-russian
+depend texlive-ru
+depend collection-documentation-base
+
+name collection-documentation-spanish
+category Collection
+revision 5228
+shortdesc Spanish documentation
+longdesc Assorted useful Spanish documentation and guides
+depend es-tex-faq
+depend lshort-spanish
+depend collection-documentation-base
+
+name collection-documentation-thai
+category Collection
+revision 5228
+shortdesc Thai documentation
+longdesc Thai documentation and guides.
+depend lshort-thai
+depend collection-documentation-base
+
+name collection-documentation-turkish
+category Collection
+revision 5228
+shortdesc Turkish documentation
+longdesc Turkish documentation and guides.
+depend lshort-turkish
+depend collection-documentation-base
+
+name collection-documentation-ukrainian
+category Collection
+revision 5228
+shortdesc Ukrainian documentation
+longdesc Assorted useful Ukrainian documentation and guides
+depend lshort-ukr
+depend collection-documentation-base
+
+name collection-documentation-vietnamese
+category Collection
+revision 5228
+shortdesc Vietnamese documentation
+depend amsldoc-vn
+depend lshort-vietnamese
+depend ntheorem-vn
+depend collection-documentation-base
+
+name collection-fontbin
+category Collection
+revision 5228
+shortdesc TeX font-related programs
+longdesc Programs for conversion between font formats, testing fonts
+longdesc (virtual fonts stuff, .gf and .pk manipulation, mft, fontinst,
+longdesc etc.)
+depend fontinst
+depend mft
+depend bin-afm2pl
+depend bin-fontware
+depend bin-ps2pkm
+depend collection-basic
+
+name collection-fontsextra
+category Collection
+revision 5494
+shortdesc Extra fonts
+longdesc All sorts of extra fonts
+depend Asana-Math
+depend accfonts
+depend ai
+depend albertus
+depend aleph
+depend allrunes
+depend antiqua
+depend antt
+depend apl
+depend ar
+depend archaic
+depend arev
+depend ascii
+depend astro
+depend atqolive
+depend augie
+depend aurical
+depend barcodes
+depend bayer
+depend bbding
+depend bbm
+depend bbm-macros
+depend bbold
+depend belleek
+depend bera
+depend blacklettert1
+depend bookhands
+depend braille
+depend brushscr
+depend calligra
+depend carolmin-ps
+depend cherokee
+depend cirth
+depend clarendo
+depend cm-lgc
+depend cm-super
+depend cmastro
+depend cmbright
+depend cmll
+depend cmpica
+depend coronet
+depend courier-scaled
+depend cryst
+depend dancers
+depend dice
+depend dictsym
+depend dingbat
+depend doublestroke
+depend duerer
+depend ean
+depend ecc
+depend eco
+depend eiad
+depend elvish
+depend epigrafica
+depend epsdice
+depend esvect
+depend eulervm
+depend euxm
+depend feyn
+depend fge
+depend foekfont
+depend fonetika
+depend fourier
+depend fouriernc
+depend frcursive
+depend futhark
+depend garamond
+depend genealogy
+depend gothic
+depend greenpoint
+depend groff
+depend grotesq
+depend hands
+depend hfbright
+depend hfoldsty
+depend hieroglf
+depend ifsym
+depend initials
+depend iwona
+depend kixfont
+depend knuthotherfonts
+depend kpfonts
+depend kurier
+depend lettrgth
+depend lfb
+depend linearA
+depend logic
+depend ly1
+depend marigold
+depend mathdesign
+depend mnsymbol
+depend morse
+depend nkarta
+depend oca
+depend ocherokee
+depend ocr-a
+depend oesch
+depend ogham
+depend oinuit
+depend optima
+depend osmanian
+depend pacioli
+depend pclnfss
+depend phaistos
+depend phonetic
+depend psafm
+depend punk
+depend sauter
+depend sauterfonts
+depend semaphor
+depend simpsons
+depend skull
+depend tapir
+depend tengwarscript
+depend tpslifonts
+depend trajan
+depend umrand
+depend univers
+depend universa
+depend wsuipa
+depend yfonts
+depend zefonts
+depend collection-basic
+
+name collection-fontsrecommended
+category Collection
+revision 5228
+shortdesc Recommended fonts
+longdesc Recommended fonts
+depend avantgar
+depend bookman
+depend charter
+depend cmextra
+depend courier
+depend euro
+depend euro-ce
+depend eurofont
+depend eurosans
+depend eurosym
+depend fpl
+depend helvetic
+depend marvosym
+depend mathpazo
+depend ncntrsbk
+depend palatino
+depend pxfonts
+depend rsfs
+depend symbol
+depend tex-gyre
+depend times
+depend timesnew
+depend tipa
+depend txfonts
+depend utopia
+depend wasy
+depend wasysym
+depend zapfchan
+depend zapfding
+depend collection-basic
+
+name collection-formatsextra
+category Collection
+revision 5228
+shortdesc Extra formats
+longdesc A collection of TeX `formats', ie large-scale macro packages
+longdesc designed to be dumped into .fmt file
+depend alatex
+depend edmac
+depend eplain
+depend mltex
+depend physe
+depend phyzzx
+depend psizzl
+depend startex
+depend texsis
+depend ytex
+depend bin-eplain
+depend bin-mltex
+depend bin-physe
+depend bin-phyzzx
+depend bin-texsis
+depend collection-basic
+
+name collection-games
+category Collection
+revision 5419
+shortdesc Games typesetting (chess, etc)
+longdesc Setups for typesetting various board games, including chess
+depend backgammon
+depend bridge
+depend cchess
+depend cheq
+depend chess
+depend chessfss
+depend egameps
+depend go
+depend hexgame
+depend jeopardy
+depend othello
+depend psgo
+depend sgame
+depend skak
+depend skaknew
+depend sudoku
+depend sudokubundle
+depend xq
+depend collection-latex
+
+name collection-genericextra
+category Collection
+revision 5228
+shortdesc Miscellaneous extra generic macros
+longdesc This is a mixed bag of macro packages and fonts which do not
+longdesc seem to belong elsewhere.
+depend abbr
+depend abstyles
+depend aurora
+depend barr
+depend borceux
+depend c-pascal
+depend colorsep
+depend dinat
+depend eijkhout
+depend fenixpar
+depend fltpoint
+depend insbox
+depend mathdots
+depend metatex
+depend mftoeps
+depend midnight
+depend multi
+depend ofs
+depend pdf-trans
+depend psfig
+depend realcalc
+depend vrb
+depend vtex
+depend collection-basic
+
+name collection-genericrecommended
+category Collection
+revision 5228
+shortdesc Miscellaneous generic macros
+longdesc This is a mixed bag of macro packages and fonts which do not
+longdesc seem to belong elsewhere
+depend epsf
+depend genmisc
+depend multido
+depend tex-ps
+depend collection-basic
+
+name collection-graphicstools
+category Collection
+revision 5228
+shortdesc Graphics tools
+longdesc dvipng, pngtools.
+depend bin-dvipng
+depend bin-pngtools
+
+name collection-htmlxml
+category Collection
+revision 5228
+shortdesc HTML/SGML/XML support
+longdesc Packages to convert LaTeX to XML/HTML, and typset XML/SGML
+depend jadetex
+depend passivetex
+depend tex4ht
+depend xmlplay
+depend xmltex
+depend bin-jadetex
+depend bin-tex4htk
+depend bin-xmltex
+depend collection-basic
+depend collection-fontsrecommended
+depend collection-latex
+
+name collection-humanities
+category Collection
+revision 5228
+shortdesc LaTeX support for the humanities
+longdesc A collection of LaTeX packages for law, linguistics, the social
+longdesc sciences, and the humanities.
+depend alnumsec
+depend arydshln
+depend bibleref
+depend camel
+depend covington
+depend dramatist
+depend ecltree
+depend ednotes
+depend jura
+depend juraabbrev
+depend juramisc
+depend jurarsp
+depend ledmac
+depend lexikon
+depend lineno
+depend linguex
+depend numline
+depend parallel
+depend parrun
+depend plari
+depend play
+depend poemscol
+depend qobitree
+depend qtree
+depend rtklage
+depend screenplay
+depend sides
+depend stage
+depend tree-dvips
+depend verse
+depend xyling
+
+name collection-langafrican
+category Collection
+revision 5228
+shortdesc African scripts
+longdesc Fonts for typesetting some African scripts
+depend ethiop
+depend ethiop-t1
+depend fc
+depend collection-basic
+
+name collection-langarab
+category Collection
+revision 5228
+shortdesc Arabic
+longdesc Fonts and support for typesetting Arabic
+depend arabi
+depend arabtex
+depend hyphen-arabic
+depend collection-basic
+
+name collection-langarmenian
+category Collection
+revision 5228
+shortdesc Armenian
+longdesc Essential armenian
+depend armenian
+depend collection-basic
+
+name collection-langcjk
+category Collection
+revision 5228
+shortdesc Chinese, Japanese, Korean
+longdesc CJK (Chinese, Japanese, Korean) macros, fonts, documentation.
+depend CJK
+depend arphic
+depend c90enc
+depend cns
+depend garuda
+depend japanese
+depend norasi
+depend uhc
+depend wadalab
+depend yi4latex
+depend bin-cjkutils
+depend hyphen-pinyin
+depend collection-basic
+depend collection-documentation-chinese
+
+name collection-langcroatian
+category Collection
+revision 5228
+shortdesc Croatian
+longdesc Essential croatian
+depend croatian
+depend hrlatex
+depend hyphen-croatian
+depend collection-basic
+
+name collection-langcyrillic
+category Collection
+revision 5228
+shortdesc Cyrillic
+longdesc Fonts and macro packages to typeset Cyrillic texts.
+depend bghyphen
+depend cmcyr
+depend cmcyralt
+depend cyrillic
+depend cyrplain
+depend disser
+depend eskd
+depend eskdx
+depend gost
+depend lh
+depend lhcyr
+depend ot2cyr
+depend ruhyphen
+depend t2
+depend timescyr
+depend ukrhyph
+depend bin-cyrillic
+depend hyphen-bulgarian
+depend hyphen-russian
+depend hyphen-ukrainian
+depend collection-basic
+
+name collection-langczechslovak
+category Collection
+revision 5384
+shortdesc Czech/Slovak
+longdesc Pick this if you want Czech/Slovak fonts and other packages
+depend cs
+depend cslatex
+depend csplain
+depend bin-cslatex
+depend bin-csplain
+depend bin-vlna
+depend hyphen-czechslovak
+depend collection-basic
+depend collection-latex
+
+name collection-langdanish
+category Collection
+revision 5228
+shortdesc Danish
+longdesc Essential Danish
+depend hyphen-danish
+depend collection-basic
+
+name collection-langdutch
+category Collection
+revision 5228
+shortdesc Dutch
+longdesc Essential Dutch
+depend hyphen-dutch
+depend collection-basic
+
+name collection-langfinnish
+category Collection
+revision 5384
+shortdesc Finnish
+longdesc Essential finnish
+depend finbib
+depend hyphen-finnish
+depend collection-basic
+
+name collection-langfrench
+category Collection
+revision 5384
+shortdesc French language support
+longdesc Packages and hyphenation support for French.
+depend aeguill
+depend frenchle
+depend frletter
+depend mafr
+depend tabvar
+depend variations
+depend hyphen-basque
+depend hyphen-french
+depend collection-basic
+
+name collection-langgerman
+category Collection
+revision 5384
+shortdesc German
+longdesc Essential German
+depend german
+depend germbib
+depend mkind-german
+depend r-und-s
+depend uhrzeit
+depend umlaute
+depend hyphen-german
+depend collection-basic
+
+name collection-langgreek
+category Collection
+revision 5511
+shortdesc Greek typesetting
+longdesc Fonts and support for typesetting Greek
+depend betababel
+depend cb
+depend greek
+depend greektex
+depend grtimes
+depend grverb
+depend ibycus-babel
+depend ibygrk
+depend kdgreek
+depend kerkis
+depend levy
+depend lgreek
+depend teubner
+depend yannisgr
+depend hyphen-greek
+depend hyphen-ibycus
+depend collection-basic
+
+name collection-langhebrew
+category Collection
+revision 5228
+shortdesc Hebrew
+longdesc Fonts and support for typesetting Hebrew
+depend cjhebrew
+depend collection-basic
+
+name collection-langhungarian
+category Collection
+revision 5384
+shortdesc Hungarian
+longdesc Essential Hungarian
+depend magyar
+depend hyphen-hungarian
+depend collection-basic
+
+name collection-langindic
+category Collection
+revision 5228
+shortdesc Indic
+longdesc Essential indic
+depend bangtex
+depend bengali
+depend burmese
+depend ebong
+depend itrans
+depend malayalam
+depend omega-devanagari
+depend sanskrit
+depend velthuis
+depend wnri
+depend wntamil
+depend bin-devnag
+depend bin-ebong
+depend collection-basic
+
+name collection-langitalian
+category Collection
+revision 5384
+shortdesc Italian
+depend collection-basic
+depend hyphen-italian
+depend itnumpar
+
+name collection-langlatin
+category Collection
+revision 5384
+shortdesc Latin
+longdesc Essential Latin
+depend hyphen-latin
+depend collection-basic
+
+name collection-langmanju
+category Collection
+revision 5228
+shortdesc Manju
+longdesc Essential Manju
+depend manjutex
+depend collection-basic
+
+name collection-langmongolian
+category Collection
+revision 5384
+shortdesc Mongolian
+longdesc Support for Mongolian.
+depend collection-basic
+depend hyphen-mongolian
+depend mongolian-babel
+depend montex
+depend soyombo
+
+name collection-langnorwegian
+category Collection
+revision 5384
+shortdesc Norwegian
+longdesc Essential Norwegian
+depend hyphen-norwegian
+depend collection-basic
+
+name collection-langother
+category Collection
+revision 5228
+shortdesc Other hyphenation files
+longdesc Other hyphenation patterns
+depend hyphen-coptic
+depend hyphen-esperanto
+depend hyphen-estonian
+depend hyphen-icelandic
+depend hyphen-indonesian
+depend hyphen-interlingua
+depend hyphen-romanian
+depend hyphen-serbian
+depend hyphen-slovene
+depend hyphen-turkish
+depend hyphen-usorbian
+depend hyphen-welsh
+depend collection-basic
+
+name collection-langpolish
+category Collection
+revision 5384
+shortdesc Polish
+longdesc Pick this if you want Polish fonts and other packages
+depend antp
+depend antt
+depend cc-pl
+depend gustlib
+depend iwona
+depend mex
+depend mwcls
+depend ogonek
+depend pl
+depend polski
+depend qpxqtx
+depend tap
+depend tex-gyre
+depend utf8mex
+depend bin-mex
+depend hyphen-polish
+depend collection-latex
+
+name collection-langportuguese
+category Collection
+revision 5384
+shortdesc Portuguese
+depend ordinalpt
+depend hyphen-portuguese
+depend collection-basic
+
+name collection-langspanish
+category Collection
+revision 5384
+shortdesc Spanish
+longdesc Essential spanish
+depend hyphen-spanish
+depend collection-basic
+
+name collection-langswedish
+category Collection
+revision 5384
+shortdesc Swedish
+longdesc Essential swedish
+depend swebib
+depend hyphen-swedish
+depend collection-basic
+
+name collection-langtibetan
+category Collection
+revision 5228
+shortdesc Tibetan
+longdesc Fonts and support for typesetting Tibetan
+depend ctib
+depend otibet
+depend collection-basic
+
+name collection-langukenglish
+category Collection
+revision 5384
+shortdesc UK English
+longdesc Essential UK English
+depend hyphen-ukenglish
+depend collection-basic
+
+name collection-langvietnamese
+category Collection
+revision 5228
+shortdesc Vietnamese
+longdesc Vietnamese support
+depend plnfss
+depend vntex
+depend collection-basic
+
+name collection-latex
+category Collection
+revision 5288
+shortdesc Basic LaTeX packages
+longdesc These packages are either mandated by the core LaTeX team, or
+longdesc otherwise highly recommended.
+depend ae
+depend amscls
+depend amsmath
+depend amsrefs
+depend babel
+depend babelbib
+depend carlisle
+depend colortbl
+depend fancyhdr
+depend geometry
+depend graphics
+depend hyperref
+depend latex
+depend latex-fonts
+depend latexconfig
+depend ltxmisc
+depend mfnfss
+depend natbib
+depend pdftex-def
+depend pslatex
+depend psnfss
+depend pspicture
+depend tools
+depend bin-latex
+depend collection-basic
+
+name collection-latex3
+category Collection
+revision 5228
+shortdesc LaTeX3 packages
+depend expl3
+depend galley
+depend template
+depend xbase
+depend xinitials
+depend xor
+depend xparse
+depend xtheorem
+depend collection-latex
+
+name collection-latexextra
+category Collection
+revision 5506
+shortdesc LaTeX supplementary packages
+longdesc A large collection of add-on packages for LaTeX.
+depend AkkTeX
+depend ESIEEcv
+depend GuIT
+depend HA-prosper
+depend Tabbing
+depend a0poster
+depend abstract
+depend achemso
+depend acronym
+depend adrconv
+depend adrlist
+depend akletter
+depend altfont
+depend animate
+depend answers
+depend anyfontsize
+depend appendix
+depend arcs
+depend arrayjob
+depend assignment
+depend attachfile
+depend authoraftertitle
+depend authorindex
+depend autotab
+depend beamer-contrib
+depend begriff
+depend beton
+depend bez123
+depend bezos
+depend bigfoot
+depend binomexp
+depend bizcard
+depend blindtext
+depend boites
+depend bookest
+depend booklet
+depend bophook
+depend boxhandler
+depend breakurl
+depend bullcntr
+depend bussproofs
+depend calendar
+depend calrsfs
+depend calxxxx
+depend captcont
+depend casyl
+depend cbcoptic
+depend ccaption
+depend cclicenses
+depend cd
+depend cd-cover
+depend cdpbundl
+depend cellspace
+depend changebar
+depend changes
+depend chappg
+depend chapterfolder
+depend china2e
+depend circ
+depend cjw
+depend clefval
+depend cleveref
+depend clock
+depend cmdstring
+depend cmdtrack
+depend cmsd
+depend codepage
+depend colorinfo
+depend colorwav
+depend combine
+depend comment
+depend concprog
+depend contour
+depend cooking
+depend cool
+depend coollist
+depend coolstr
+depend cooltooltips
+depend coordsys
+depend courseoutline
+depend coursepaper
+depend coverpage
+depend crossreference
+depend crosswrd
+depend csquotes
+depend cuisine
+depend currvita
+depend cursor
+depend cv
+depend cweb-latex
+depend cwpuzzle
+depend dashbox
+depend dashrule
+depend datatool
+depend dateiliste
+depend datenumber
+depend datetime
+depend decimal
+depend deleq
+depend delimtxt
+depend diagnose
+depend dialogl
+depend dichokey
+depend dinbrief
+depend directory
+depend dlfltxb
+depend dnaseq
+depend docmfp
+depend doi
+depend dotseqn
+depend dpfloat
+depend draftcopy
+depend draftwatermark
+depend dropping
+depend dtk
+depend dtxgallery
+depend dvdcoll
+depend eCards
+depend easy
+depend ebezier
+depend ecv
+depend ed
+depend eemeir
+depend egplot
+depend ellipsis
+depend elmath
+depend elpres
+depend em
+depend emulateapj
+depend endfloat
+depend endheads
+depend engpron
+depend engrec
+depend enumitem
+depend envbig
+depend environ
+depend envlab
+depend epigraph
+depend epiolmec
+depend epspdfconversion
+depend eqlist
+depend eqname
+depend eqparbox
+depend errata
+depend esdiff
+depend esint
+depend esint-type1
+depend etaremune
+depend etoolbox
+depend europecv
+depend everypage
+depend exam
+depend examdesign
+depend examplep
+depend exercise
+depend expdlist
+depend export
+depend extract
+depend facsimile
+depend fancynum
+depend fancytooltips
+depend fax
+depend figsize
+depend filecontents
+depend fink
+depend fixfoot
+depend fixme
+depend flabels
+depend flagderiv
+depend flashcards
+depend flippdf
+depend floatrow
+depend flowfram
+depend fmp
+depend fmtcount
+depend fnbreak
+depend fncychap
+depend foilhtml
+depend footmisc
+depend footnpag
+depend forloop
+depend formlett
+depend formular
+depend frankenstein
+depend fribrief
+depend fullblck
+depend fullpict
+depend fundus
+depend g-brief
+depend gauss
+depend gcard
+depend gcite
+depend genmpage
+depend geomsty
+depend ginpenc
+depend gloss
+depend glossaries
+depend gmdoc
+depend gmeometric
+depend gmiflink
+depend gmutils
+depend gmverb
+depend graphicx-psmin
+depend grfpaste
+depend grnumalt
+depend guitbeamer
+depend hanging
+depend harpoon
+depend hc
+depend hhtensor
+depend hilowres
+depend histogr
+depend hitec
+depend hpsdiss
+depend hvfloat
+depend hyper
+depend hyperxmp
+depend hyphenat
+depend ifmslide
+depend image-gallery
+depend interactiveworkbook
+depend inversepath
+depend invoice
+depend ipa
+depend iso
+depend iso10303
+depend isodate
+depend isodoc
+depend isorot
+depend isotope
+depend kalender
+depend kastrup
+depend kerntest
+depend keystroke
+depend labbook
+depend labelcas
+depend labels
+depend lastpage
+depend latex-tds
+depend layouts
+depend lazylist
+depend lcd
+depend lcg
+depend leading
+depend leaflet
+depend leftidx
+depend lettre
+depend lettrine
+depend lewis
+depend lhelp
+depend limap
+depend lipsum
+depend listliketab
+depend listofsymbols
+depend lkproof
+depend localloc
+depend logpap
+depend lsc
+depend ltablex
+depend ltabptch
+depend ltxindex
+depend mailing
+depend makebox
+depend makecell
+depend makecirc
+depend makecmds
+depend makedtx
+depend makeglos
+depend manfnt
+depend manuscript
+depend mapcodes
+depend maple
+depend marginnote
+depend mathexam
+depend maybemath
+depend mcaption
+depend mceinleger
+depend mcite
+depend menu
+depend method
+depend metre
+depend mff
+depend mftinc
+depend minipage-marginpar
+depend minitoc
+depend minutes
+depend misc209
+depend mla-paper
+depend mlist
+depend moderncv
+depend modroman
+depend morehelp
+depend moresize
+depend moreverb
+depend movie15
+depend mparhack
+depend msc
+depend msg
+depend mslapa
+depend mtgreek
+depend multenum
+depend multibbl
+depend multicap
+depend multirow
+depend mwrite
+depend nag
+depend namespc
+depend ncclatex
+depend ncctools
+depend newfile
+depend newlfm
+depend newthm
+depend newvbtm
+depend niceframe
+depend noitcrul
+depend nomencl
+depend nomentbl
+depend nonfloat
+depend notes
+depend ntabbing
+depend ntheorem
+depend numname
+depend numprint
+depend ocr-latex
+depend octavo
+depend oldstyle
+depend onlyamsmath
+depend opcit
+depend outline
+depend outliner
+depend overpic
+depend oxford
+depend pageno
+depend pagenote
+depend paper
+depend papercdcase
+depend papertex
+depend paralist
+depend paresse
+depend patch
+depend patchcmd
+depend pauldoc
+depend pawpict
+depend pbox
+depend pbsheet
+depend pdfcprot
+depend pdfscreen
+depend pdfslide
+depend pdfsync
+depend pdfwin
+depend pecha
+depend perltex
+depend permute
+depend philex
+depend photo
+depend pittetd
+depend placeins
+depend plates
+depend plweb
+depend polyglot
+depend polynom
+depend polynomial
+depend polytable
+depend postcards
+depend ppower4
+depend ppr-prv
+depend preprint
+depend prettyref
+depend preview
+depend probsoln
+depend progkeys
+depend program
+depend progress
+depend prosper
+depend protocol
+depend psfragx
+depend pst-pdf
+depend qcm
+depend qstest
+depend qsymbols
+depend quotchap
+depend randtext
+depend rccol
+depend rcsinfo
+depend recipecard
+depend rectopma
+depend refcheck
+depend refman
+depend refstyle
+depend regcount
+depend register
+depend relenc
+depend repeatindex
+depend resume
+depend rlepsf
+depend rmpage
+depend robustcommand
+depend robustindex
+depend romannum
+depend rotfloat
+depend rotpages
+depend rst
+depend rtkinenc
+depend sauerj
+depend savefnmark
+depend savesym
+depend savetrees
+depend scale
+depend scalebar
+depend schedule
+depend sciwordconv
+depend script
+depend sdrt
+depend sectionbox
+depend sectsty
+depend semantic
+depend semioneside
+depend seqsplit
+depend sf298
+depend sffms
+depend sfmath
+depend shadbox
+depend shadethm
+depend shapepar
+depend shortlst
+depend shorttoc
+depend showdim
+depend showexpl
+depend showlabels
+depend sidecap
+depend simplecv
+depend slantsc
+depend slashbox
+depend slidenotes
+depend smalltableof
+depend smartref
+depend smflatex
+depend snapshot
+depend soul
+depend sparklines
+depend splitindex
+depend spotcolor
+depend sprite
+depend srcltx
+depend sseq
+depend ssqquote
+depend stack
+depend statistik
+depend stdclsdv
+depend stdpage
+depend sttools
+depend subdepth
+depend subeqn
+depend subeqnarray
+depend subfigure
+depend subfloat
+depend substr
+depend supertabular
+depend svgcolor
+depend svn
+depend svn-multi
+depend svninfo
+depend syntax
+depend syntrace
+depend synttree
+depend tableaux
+depend tabto-ltx
+depend tabulary
+depend talk
+depend taupin
+depend tcldoc
+depend technics
+depend texilikecover
+depend texlogos
+depend texmate
+depend texpower
+depend texshade
+depend textcase
+depend textfit
+depend textmerg
+depend textpos
+depend thumb
+depend ticket
+depend timesht
+depend timing
+depend titlefoot
+depend titlesec
+depend titling
+depend tocbibind
+depend tocloft
+depend tocvsec2
+depend todo
+depend tokenizer
+depend toolbox
+depend topfloat
+depend totpages
+depend tracking
+depend trfsigns
+depend trsym
+depend trivfloat
+depend twoup
+depend type1cm
+depend typedref
+depend typogrid
+depend uebungsblatt
+depend ulsy
+depend umoline
+depend underlin
+depend undertilde
+depend units
+depend upmethodology
+depend upquote
+depend ushort
+depend varindex
+depend vector
+depend versions
+depend vhistory
+depend vita
+depend vmargin
+depend volumes
+depend vpe
+depend vrsion
+depend wallpaper
+depend warning
+depend warpcol
+depend was
+depend williams
+depend wordcount
+depend wordlike
+depend wrapfig
+depend xargs
+depend xbmc
+depend xtab
+depend xtcapts
+depend xdoc
+depend xfor
+depend xifthen
+depend xmpincl
+depend xnewcommand
+depend xoptarg
+depend xytree
+depend yafoot
+depend yplan
+depend zed-csp
+depend bin-perltex
+depend bin-ppower4
+depend collection-latex
+
+name collection-latexrecommended
+category Collection
+revision 5228
+shortdesc LaTeX recommended packages
+longdesc A collection of recommended add-on packages for LaTeX which
+longdesc have widespread use
+depend anysize
+depend beamer
+depend booktabs
+depend caption
+depend cite
+depend citeref
+depend cmap
+depend crop
+depend ctable
+depend ec
+depend eso-pic
+depend euler
+depend extsizes
+depend fancybox
+depend fancyref
+depend fancyvrb
+depend float
+depend floatflt
+depend fp
+depend index
+depend jknapltx
+depend koma-script
+depend listings
+depend mdwtools
+depend memoir
+depend microtype
+depend ms
+depend ntgclass
+depend oberdiek
+depend pdfpages
+depend powerdot
+depend psfrag
+depend rcs
+depend rotating
+depend seminar
+depend setspace
+depend subfig
+depend thumbpdf
+depend ucs
+depend xcolor
+depend xkeyval
+depend collection-latex
+
+name collection-mathextra
+category Collection
+revision 5503
+shortdesc Advanced math typesetting
+longdesc Extra math
+depend 12many
+depend amstex
+depend boldtensors
+depend breqn
+depend ccfonts
+depend commath
+depend concmath
+depend concrete
+depend eqnarray
+depend extarrows
+depend extpfeil
+depend faktor
+depend hvmath
+depend mathcomp
+depend mh
+depend mhequ
+depend nath
+depend stmaryrd
+depend synproof
+depend Susy
+depend tensor
+depend tmmath
+depend turnstile
+depend venn
+depend yhmath
+depend bin-amstex
+depend collection-fontsrecommended
+depend collection-latex
+
+name collection-metapost
+category Collection
+revision 5381
+shortdesc MetaPost (and Metafont) drawing packages
+depend automata
+depend blockdraw_mp
+depend cmarrows
+depend emp
+depend expressg
+depend exteps
+depend featpost
+depend feynmf
+depend hatching
+depend latexmp
+depend metaobj
+depend metaplot
+depend metapost
+depend metauml
+depend mfpic
+depend mp3d
+depend mpattern
+depend piechartmp
+depend roex
+depend slideshow
+depend splines
+depend textpath
+depend bin-metapost
+depend collection-basic
+
+name collection-music
+category Collection
+revision 5228
+shortdesc Music typesetting
+longdesc Music typesetting packages
+depend abc
+depend guitar
+depend harmony
+depend musictex
+depend musixlyr
+depend musixps
+depend musixtex
+depend songbook
+depend bin-musixflx
+depend collection-latex
+
+name collection-omega
+category Collection
+revision 5228
+shortdesc Omega
+longdesc Omega, a 16-bit extended TeX by John Plaice and Yannis
+longdesc Haralambous
+depend antomega
+depend lambda
+depend mxd
+depend mxedruli
+depend omega
+depend bin-aleph
+depend bin-omega
+depend bin-omegaware
+depend collection-basic
+
+name collection-perl
+category Collection
+revision 4468
+shortdesc Perl for Windows
+longdesc This is a minimal Perl installation for Windows.
+
+name collection-pictures
+category Collection
+revision 5502
+shortdesc Packages for drawing graphics
+depend bardiag
+depend curve
+depend curve2e
+depend curves
+depend dcpic
+depend dottex
+depend dratex
+depend eepic
+depend gnuplottex
+depend miniplot
+depend pb-diagram
+depend petri-nets
+depend pgf
+depend picinpar
+depend pict2e
+depend pictex
+depend pictex2
+depend pinlabel
+depend pmgraph
+depend randbild
+depend swimgraf
+depend texdraw
+depend xypic
+depend collection-basic
+
+name collection-plainextra
+category Collection
+revision 5228
+shortdesc Plain TeX supplementary packages
+longdesc A collection of add-on packages and macros for plain TeX.
+depend cellular
+depend colortab
+depend fixpdfmag
+depend fontch
+depend hyplain
+depend jsmisc
+depend mkpattern
+depend newsletr
+depend plgraph
+depend treetex
+depend typespec
+depend vertex
+depend collection-basic
+
+name collection-pstricks
+category Collection
+revision 5504
+shortdesc PSTricks packages
+longdesc Additional PSTricks packages
+depend auto-pst-pdf
+depend makeplot
+depend pdftricks
+depend pst-2dplot
+depend pst-3d
+depend pst-3dplot
+depend pst-asr
+depend pst-bar
+depend pst-barcode
+depend pst-blur
+depend pst-circ
+depend pst-coil
+depend pst-dbicons
+depend pst-diffraction
+depend pst-eps
+depend pst-eucl
+depend pst-fill
+depend pst-fr3d
+depend pst-fractal
+depend pst-func
+depend pst-geo
+depend pst-ghsb
+depend pst-gr3d
+depend pst-grad
+depend pst-infixplot
+depend pst-jtree
+depend pst-labo
+depend pst-lens
+depend pst-light3d
+depend pst-math
+depend pst-ob3d
+depend pst-optexp
+depend pst-optic
+depend pst-osci
+depend pst-pdgr
+depend pst-poly
+depend pst-qtree
+depend pst-slpe
+depend pst-stru
+depend pst-soroban
+depend pst-text
+depend pst-uml
+depend pst-vue3d
+depend pstricks
+depend pstricks-add
+depend uml
+depend collection-basic
+
+name collection-psutils
+category Collection
+revision 5228
+shortdesc PostScript and Truetype utilities
+longdesc Utilities to manipulate TrueType and PostScript files
+depend dvipsconfig
+depend bin-getafm
+depend bin-lcdftypetools
+depend bin-pstools
+depend bin-psutils
+depend bin-t1utils
+depend bin-ttf2pt1
+
+name collection-publishers
+category Collection
+revision 5488
+shortdesc Support for publishers
+longdesc Essential publishers
+depend ANUfinalexam
+depend IEEEconf
+depend IEEEtran
+depend aastex
+depend acmconf
+depend acmtrans
+depend active-conf
+depend aguplus
+depend aiaa
+depend ametsoc
+depend apa
+depend asaetr
+depend ascelike
+depend chem-journal
+depend classicthesis
+depend ebsthesis
+depend economic
+depend elsevier
+depend euproposal
+depend gatech-thesis
+depend icsv
+depend ieeepes
+depend ifacmtg
+depend ijmart
+depend imac
+depend jhep
+depend jpsj
+depend kluwer
+depend lps
+depend mentis
+depend mnras
+depend muthesis
+depend nature
+depend nih
+depend nrc
+depend philosophersimprint
+depend pracjourn
+depend procIAGssymp
+depend ptptex
+depend revtex
+depend sae
+depend siggraph
+depend spie
+depend stellenbosch
+depend sugconf
+depend thesis-titlepage-fhac
+depend thuthesis
+depend toptesi
+depend tugboat
+depend tugboat-plain
+depend uaclasses
+depend ucthesis
+depend uiucthesis
+depend umthesis
+depend umich-thesis
+depend uwthesis
+depend vancouver
+depend york-thesis
+depend collection-latex
+
+name collection-science
+category Collection
+revision 5293
+shortdesc Typesetting for natural and computer sciences
+longdesc Typesetting for natural and computer sciences
+depend SIstyle
+depend SIunits
+depend alg
+depend algorithm2e
+depend algorithmicx
+depend algorithms
+depend biocon
+depend bitfield
+depend bpchem
+depend bytefield
+depend chemarrow
+depend chemcompounds
+depend chemcono
+depend chemscheme
+depend chemstyle
+depend clrscode
+depend complexity
+depend computational-complexity
+depend digiconfigs
+depend dyntree
+depend formula
+depend functan
+depend galois
+depend gastex
+depend gu
+depend hepparticles
+depend hepthesis
+depend hepunits
+depend karnaugh
+depend mhchem
+depend mhs
+depend miller
+depend newalg
+depend objectz
+depend pseudocode
+depend scientificpaper
+depend sciposter
+depend sfg
+depend struktex
+depend t-angles
+depend textopo
+depend unitsdef
+depend youngtab
+depend collection-latex
+
+name collection-texinfo
+category Collection
+revision 5228
+shortdesc GNU Texinfo
+longdesc Programs and macros for the GNU Texinfo documentation system.
+depend texinfo
+depend bin-texinfo
+depend collection-basic
+
+name collection-ttfutils
+category Collection
+revision 5228
+shortdesc TrueType font manipulation
+longdesc Utilities to manipulate TrueType fonts
+depend bin-ttfutils
+
+name collection-wintools
+category Collection
+revision 5228
+shortdesc Win32 support programs
+longdesc Additional usefull programs for Windows: bzip2, gzip, jpeg2ps,
+longdesc tiff2png.
+depend bin-tifftools
+depend bin-winutils
+depend collection-perl
+
+name collection-xetex
+category Collection
+revision 5228
+shortdesc XeTeX macros
+longdesc Macro files for XeTeX, Unicode-enabled TeX by Jonathan Kew.
+depend arabxetex
+depend euenc
+depend fontspec
+depend ifxetex
+depend philokalia
+depend xetex
+depend xetexconfig
+depend xetexurl
+depend xltxtra
+depend xunicode
+depend bin-xetex
+depend collection-basic
+
+name colorinfo
+category Package
+revision 773
+shortdesc Retrieve colour model and values for defined colours.
+docfiles size=1530
+ texmf-dist/doc/latex/colorinfo/README details="Readme"
+ texmf-dist/doc/latex/colorinfo/colorinfo-test.tex
+runfiles size=6383
+ texmf-dist/tex/latex/colorinfo/colorinfo.sty
+catalogue-version 0.3c
+catalogue-date 2007-02-03 12:09:11 +0100
+catalogue-ctan /macros/latex/contrib/colorinfo
+catalogue-license lppl
+
+name colorsep
+category Package
+revision 88
+shortdesc Color separation.
+longdesc Support for colour separation when using dvips. The package is
+longdesc not available on CTAN.
+runfiles size=4285
+ texmf-dist/dvips/colorsep/colorsep.pro
+catalogue-version
+catalogue-date 2007-01-21 00:04:50 +0100
+catalogue-ctan
+catalogue-license pd
+
+name colortab
+category Package
+revision 774
+shortdesc Shade cells of tables and halign.
+longdesc Lets you shade or colour the cells in the alignment
+longdesc environments such as \halign and LaTeX's tabular and array
+longdesc environments. The colortbl or package is to be preferred today
+longdesc with LaTeX (it assures compatibility with the longtable
+longdesc package, which is no longer true with colortab); another modern
+longdesc option is the table-colouring option of the xcolor. however,
+longdesc colortab is still an adequate solution with Plain TeX.
+docfiles size=15706
+ texmf-dist/doc/generic/colortab/colortab.doc
+runfiles size=22148
+ texmf-dist/tex/generic/colortab/colortab.tex
+ texmf-dist/tex/latex/colortab/colortab.sty
+catalogue-version
+catalogue-date 2007-01-01 11:39:06 +0100
+catalogue-ctan /macros/generic/colortab
+catalogue-license unknown
+
+name colortbl
+category Package
+revision 775
+shortdesc Add colour to LaTeX tables.
+longdesc Allows rows and columns to be coloured, and even individual
+longdesc cells.
+docfiles size=237921
+ texmf-dist/doc/latex/colortbl/README
+ texmf-dist/doc/latex/colortbl/colortbl.pdf
+srcfiles size=40914
+ texmf-dist/source/latex/colortbl/colortbl.dtx
+ texmf-dist/source/latex/colortbl/colortbl.ins
+runfiles size=10352
+ texmf-dist/tex/latex/colortbl/colortbl.sty
+catalogue-version
+catalogue-date 2007-01-01 11:39:06 +0100
+catalogue-ctan /macros/latex/contrib/colortbl
+catalogue-license lppl
+
+name colorwav
+category Package
+revision 4214
+shortdesc Colours by wavelength of visible light.
+longdesc The package allows the user to obtain an RGB value (suitable
+longdesc for use in the color package) from a wavelength of light. The
+longdesc default unit is nanometres, but other units may be used. Note
+longdesc that this function is also available within the xcolor.
+docfiles size=116124
+ texmf-dist/doc/latex/colorwav/README details="Readme"
+ texmf-dist/doc/latex/colorwav/colorwav.pdf details="Package documentation"
+srcfiles size=23126
+ texmf-dist/source/latex/colorwav/colorwav.dtx
+ texmf-dist/source/latex/colorwav/colorwav.ins
+runfiles size=6427
+ texmf-dist/tex/latex/colorwav/colorwav.sty
+catalogue-version 1.0
+catalogue-date 2007-04-21 14:28:35 +0200
+catalogue-ctan /macros/latex/contrib/colorwav
+catalogue-license lgpl
+
+name combine
+category Package
+revision 776
+shortdesc Bundle individual documents into a single document.
+longdesc The combine class lets you bundle individual documents into a
+longdesc single document, such as when preparing a conference
+longdesc proceedings. The auxiliary combinet package puts the titles and
+longdesc authors from \maketitle commands into the main document's Table
+longdesc of Contents. The package cooperates with the abstract and
+longdesc titling packages.
+docfiles size=2779
+ texmf-dist/doc/latex/combine/README details="Package Readme"
+srcfiles size=137197
+ texmf-dist/source/latex/combine/combine.dtx
+ texmf-dist/source/latex/combine/combine.ins
+runfiles size=51388
+ texmf-dist/tex/latex/combine/combine.cls
+ texmf-dist/tex/latex/combine/combinet.sty
+ texmf-dist/tex/latex/combine/combnat.sty
+catalogue-version 0.64a
+catalogue-date 2006-12-04 15:01:13 +0100
+catalogue-ctan /macros/latex/contrib/combine
+catalogue-license lppl
+
+name commath
+category Package
+revision 2240
+shortdesc Mathematics typesetting support.
+longdesc Provides a range of differential, partial differential and
+longdesc delimiter commands, together with a \fullfunction (function,
+longdesc with both domain and range, and function operation) and various
+longdesc reference commands.
+docfiles size=144525
+ texmf-dist/doc/latex/commath/README details="Readme"
+ texmf-dist/doc/latex/commath/commath.pdf details="Package documentation"
+ texmf-dist/doc/latex/commath/commath.tex
+runfiles size=9537
+ texmf-dist/tex/latex/commath/commath.sty
+catalogue-version 0.3
+catalogue-date 2007-03-05 14:17:42 +0100
+catalogue-ctan /macros/latex/contrib/commath
+catalogue-license lppl
+
+name comment
+category Package
+revision 1487
+shortdesc Selectively include/excludes portions of text.
+longdesc Selectively include/exclude pieces of text, allowing the user
+longdesc to define new, separately controlled, comment versions. All
+longdesc text between \comment ... \endcomment or \begin{comment} ...
+longdesc \end{comment} is discarded. The opening and closing commands
+longdesc should appear on a line of their own. No starting spaces,
+longdesc nothing after it. This environment should work with arbitrary
+longdesc amounts of comment, and the comment can be arbitrary text.
+longdesc Other 'comment' environments are defined and
+longdesc selected/deselected with \includecomment{versiona} and
+longdesc \excludecoment{versionb} These environments are used as
+longdesc \versiona ... \endversiona or \begin{versiona} ...
+longdesc \end{versiona} with the opening and closing commands again on a
+longdesc line of their own.
+docfiles size=1989
+ texmf-dist/doc/latex/comment/comm_test_l.dvi
+ texmf-dist/doc/latex/comment/comm_test_l.tex
+srcfiles size=41
+ texmf-dist/source/latex/comment/comment.cut
+runfiles size=9200
+ texmf-dist/tex/latex/comment/comment.sty
+catalogue-version 3.6
+catalogue-date 2006-12-05 13:18:07 +0100
+catalogue-ctan /macros/latex/contrib/comment
+catalogue-license gpl
+
+name compactbib
+category Package
+revision 779
+shortdesc Multiple thebibliography environments.
+longdesc Allows a second bibliography, optionally with a different
+longdesc title, after the main bibliography.
+runfiles size=4164
+ texmf-dist/tex/latex/compactbib/compactbib.sty
+catalogue-version
+catalogue-date 2007-01-01 11:39:06 +0100
+catalogue-ctan /macros/latex/contrib/compactbib/compactbib.sty
+catalogue-license lppl
+
+name complexity
+category Package
+revision 5447
+shortdesc Computational complexity class names.
+longdesc Complexity is a LaTeX package that defines commands to typeset
+longdesc Computational Complexity Classes such as $\P$ and $\NP$ (as
+longdesc well as hundreds of others). It also offers several options
+longdesc including which font classes are typeset in and how many are
+longdesc defined (all of them or just the basic, most commonly used
+longdesc ones). The package has no dependencies other than the standard
+longdesc ifthen package.
+docfiles size=237678
+ texmf-dist/doc/latex/complexity/README details="Readme"
+ texmf-dist/doc/latex/complexity/complexity.pdf details="Package documentation"
+ texmf-dist/doc/latex/complexity/complexity.tex
+ texmf-dist/doc/latex/complexity/tableofclasses.tex
+runfiles size=27056
+ texmf-dist/tex/latex/complexity/complexity.sty
+ texmf-dist/tex/latex/complexity/mycomplexity.sty
+catalogue-version 0.76
+catalogue-date 2007-02-03 21:01:24 +0100
+catalogue-ctan /macros/latex/contrib/complexity
+catalogue-license lppl
+
+name components-of-TeX
+category Documentation
+revision 20
+docfiles size=30197
+ texmf-doc/doc/english/components-of-TeX/README
+ texmf-doc/doc/english/components-of-TeX/etexkomp.tex
+ texmf-doc/doc/english/components-of-TeX/figkomp.tex
+ texmf-doc/doc/english/components-of-TeX/figtotal.tex
+ texmf-doc/doc/english/components-of-TeX/names.sty
+ texmf-doc/doc/english/components-of-TeX/texrep.sty
+
+name comprehensive
+category Documentation
+revision 20
+docfiles size=3540535
+ texmf-doc/doc/english/comprehensive/README
+ texmf-doc/doc/english/comprehensive/SYMLIST
+ texmf-doc/doc/english/comprehensive/source/lightbulb.eps
+ texmf-doc/doc/english/comprehensive/source/lightbulb.map
+ texmf-doc/doc/english/comprehensive/source/lightbulb.mf
+ texmf-doc/doc/english/comprehensive/source/lightbulb10.mf
+ texmf-doc/doc/english/comprehensive/source/lightbulb10.pfb
+ texmf-doc/doc/english/comprehensive/source/symbols.tex
+ texmf-doc/doc/english/comprehensive/symbols-a4.pdf
+
+name computational-complexity
+category Package
+revision 2382
+shortdesc Class for the journal Computational Complexity.
+longdesc The LaTeX2e class cc was written for the journal Computational
+longdesc Complexity, and it can also be used for a lot of other
+longdesc articles. You may like it since it contains a lot of features
+longdesc as more intelligent references, a set of theorem definitions,
+longdesc an algorithm environment, ... The class requires natbib.
+docfiles size=730362
+ texmf-dist/doc/latex/computational-complexity/cc-portability-frame.tex
+ texmf-dist/doc/latex/computational-complexity/cc.pdf details="Package documentation"
+ texmf-dist/doc/latex/computational-complexity/cc2.dbj
+ texmf-dist/doc/latex/computational-complexity/ccquickref.tex
+ texmf-dist/doc/latex/computational-complexity/cctemplate.tex
+srcfiles size=360170
+ texmf-dist/source/latex/computational-complexity/cc.dtx
+ texmf-dist/source/latex/computational-complexity/cc.ins
+runfiles size=226507
+ texmf-dist/bibtex/bib/computational-complexity/journals.bib
+ texmf-dist/bibtex/bst/computational-complexity/cc.bst
+ texmf-dist/bibtex/bst/computational-complexity/cc2.bst
+ texmf-dist/tex/latex/computational-complexity/cc-cls.sty
+ texmf-dist/tex/latex/computational-complexity/cc.cls
+ texmf-dist/tex/latex/computational-complexity/cc2cite.sty
+ texmf-dist/tex/latex/computational-complexity/cc4amsart.sty
+ texmf-dist/tex/latex/computational-complexity/cc4apjrnl.sty
+ texmf-dist/tex/latex/computational-complexity/cc4elsart.sty
+ texmf-dist/tex/latex/computational-complexity/cc4jT.sty
+ texmf-dist/tex/latex/computational-complexity/cc4llncs.sty
+ texmf-dist/tex/latex/computational-complexity/cc4siamltex.sty
+ texmf-dist/tex/latex/computational-complexity/ccalgo.sty
+ texmf-dist/tex/latex/computational-complexity/ccaux.sty
+ texmf-dist/tex/latex/computational-complexity/cccite.sty
+ texmf-dist/tex/latex/computational-complexity/ccdbs.sty
+ texmf-dist/tex/latex/computational-complexity/cclayout.sty
+ texmf-dist/tex/latex/computational-complexity/ccproof.sty
+ texmf-dist/tex/latex/computational-complexity/ccqed.sty
+ texmf-dist/tex/latex/computational-complexity/ccreltx.sty
+ texmf-dist/tex/latex/computational-complexity/ccthm.sty
+ texmf-dist/tex/latex/computational-complexity/relabel.sty
+ texmf-dist/tex/latex/computational-complexity/thcc.sty
+catalogue-version v2.06
+catalogue-date 2007-02-03 21:01:24 +0100
+catalogue-ctan /macros/latex/contrib/computational-complexity
+catalogue-license lppl
+
+name concmath
+category Package
+revision 1487
+shortdesc Concrete Math fonts.
+longdesc A LaTeX package and font definition files to access the
+longdesc Concrete mathematics fonts, which were derived from Computer
+longdesc Modern math fonts using parameters from Concrete Roman text
+longdesc fonts.
+docfiles size=40054
+ texmf-dist/doc/fonts/concmath/CATALOGUE
+ texmf-dist/doc/fonts/concmath/Makefile
+ texmf-dist/doc/fonts/concmath/README
+ texmf-dist/doc/latex/concmath/concmath.dvi
+srcfiles size=38108
+ texmf-dist/source/latex/concmath/CATALOGUE
+ texmf-dist/source/latex/concmath/Makefile
+ texmf-dist/source/latex/concmath/README
+ texmf-dist/source/latex/concmath/concmath.dtx
+ texmf-dist/source/latex/concmath/concmath.ins
+runfiles size=179280
+ texmf-dist/fonts/source/public/concmath/xccam10.mf
+ texmf-dist/fonts/source/public/concmath/xccam5.mf
+ texmf-dist/fonts/source/public/concmath/xccam6.mf
+ texmf-dist/fonts/source/public/concmath/xccam7.mf
+ texmf-dist/fonts/source/public/concmath/xccam8.mf
+ texmf-dist/fonts/source/public/concmath/xccam9.mf
+ texmf-dist/fonts/source/public/concmath/xccbm10.mf
+ texmf-dist/fonts/source/public/concmath/xccbm5.mf
+ texmf-dist/fonts/source/public/concmath/xccbm6.mf
+ texmf-dist/fonts/source/public/concmath/xccbm7.mf
+ texmf-dist/fonts/source/public/concmath/xccbm8.mf
+ texmf-dist/fonts/source/public/concmath/xccbm9.mf
+ texmf-dist/fonts/source/public/concmath/xccex10.mf
+ texmf-dist/fonts/source/public/concmath/xccex7.mf
+ texmf-dist/fonts/source/public/concmath/xccex8.mf
+ texmf-dist/fonts/source/public/concmath/xccex9.mf
+ texmf-dist/fonts/source/public/concmath/xccmi10.mf
+ texmf-dist/fonts/source/public/concmath/xccmi5.mf
+ texmf-dist/fonts/source/public/concmath/xccmi6.mf
+ texmf-dist/fonts/source/public/concmath/xccmi7.mf
+ texmf-dist/fonts/source/public/concmath/xccmi8.mf
+ texmf-dist/fonts/source/public/concmath/xccmi9.mf
+ texmf-dist/fonts/source/public/concmath/xccsy10.mf
+ texmf-dist/fonts/source/public/concmath/xccsy5.mf
+ texmf-dist/fonts/source/public/concmath/xccsy6.mf
+ texmf-dist/fonts/source/public/concmath/xccsy7.mf
+ texmf-dist/fonts/source/public/concmath/xccsy8.mf
+ texmf-dist/fonts/source/public/concmath/xccsy9.mf
+ texmf-dist/fonts/tfm/public/concmath/xccam10.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccam5.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccam6.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccam7.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccam8.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccam9.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccbm10.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccbm5.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccbm6.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccbm7.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccbm8.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccbm9.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccex10.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccex7.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccex8.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccex9.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccmi10.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccmi5.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccmi6.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccmi7.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccmi8.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccmi9.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccsy10.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccsy5.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccsy6.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccsy7.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccsy8.tfm
+ texmf-dist/fonts/tfm/public/concmath/xccsy9.tfm
+ texmf-dist/tex/latex/concmath/concmath.sty
+ texmf-dist/tex/latex/concmath/omlccm.fd
+ texmf-dist/tex/latex/concmath/omlccr.fd
+ texmf-dist/tex/latex/concmath/omsccr.fd
+ texmf-dist/tex/latex/concmath/omsccsy.fd
+ texmf-dist/tex/latex/concmath/omxccex.fd
+ texmf-dist/tex/latex/concmath/ot1ccr.fd
+ texmf-dist/tex/latex/concmath/ucca.fd
+ texmf-dist/tex/latex/concmath/uccb.fd
+catalogue-version 1999/03/18
+catalogue-date 2006-12-08 15:31:01 +0100
+catalogue-ctan /macros/latex/contrib/concmath
+catalogue-license lppl
+
+name concprog
+category Package
+revision 1487
+shortdesc Concert programmes.
+longdesc A class which provides the necessary macros to prepare a
+longdesc (classical) concert programme; a sample is provided.
+docfiles size=4264
+ texmf-dist/doc/latex/concprog/program.dvi
+ texmf-dist/doc/latex/concprog/program.tex
+runfiles size=12326
+ texmf-dist/tex/latex/concprog/ConcProg.cls
+catalogue-version
+catalogue-date 2007-01-01 11:39:06 +0100
+catalogue-ctan /macros/latex/contrib/concprog
+catalogue-license gpl
+
+name concrete
+category Package
+revision 101
+shortdesc Concrete Roman fonts.
+longdesc Concrete Roman fonts, designed by Donald E. Knuth, originally
+longdesc for use with Euler mathematics fonts. Alternative mathematics
+longdesc fonts, based on the concrete ‘parameter set’ are available
+longdesc as the concmath fonts bundle. LaTeX support is offered by the
+longdesc beton, concmath and ccfonts packages. T1- and TS1-encoded
+longdesc versions of the fonts are available in the ecc bundle, and
+longdesc Adobe Type 1 versions of the ecc fonts are part of the cm-super
+longdesc bundle.
+docfiles size=4963
+ texmf-dist/doc/fonts/concrete/CATALOGUE
+ texmf-dist/doc/fonts/concrete/Makefile
+ texmf-dist/doc/fonts/concrete/README
+runfiles size=64849
+ texmf-dist/fonts/source/public/concrete/cccsc10.mf
+ texmf-dist/fonts/source/public/concrete/ccmi10.mf
+ texmf-dist/fonts/source/public/concrete/ccmic9.mf
+ texmf-dist/fonts/source/public/concrete/ccr10.mf
+ texmf-dist/fonts/source/public/concrete/ccr5.mf
+ texmf-dist/fonts/source/public/concrete/ccr6.mf
+ texmf-dist/fonts/source/public/concrete/ccr7.mf
+ texmf-dist/fonts/source/public/concrete/ccr8.mf
+ texmf-dist/fonts/source/public/concrete/ccr9.mf
+ texmf-dist/fonts/source/public/concrete/ccsl10.mf
+ texmf-dist/fonts/source/public/concrete/ccsl9.mf
+ texmf-dist/fonts/source/public/concrete/ccslc9.mf
+ texmf-dist/fonts/source/public/concrete/ccti10.mf
+ texmf-dist/fonts/source/public/concrete/odigs.mf
+ texmf-dist/fonts/tfm/public/concrete/cccsc10.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccmi10.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccmic9.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccr10.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccr5.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccr6.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccr7.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccr8.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccr9.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccsl10.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccsl9.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccslc9.tfm
+ texmf-dist/fonts/tfm/public/concrete/ccti10.tfm
+catalogue-version
+catalogue-date 2006-12-08 15:31:01 +0100
+catalogue-ctan /fonts/concrete
+catalogue-license knuth
+
+name confproc
+category Package
+revision 5241
+shortdesc A set of tools for generating conference proceedings.
+longdesc The confproc collection comprises a class, a BibTeX style, and
+longdesc some scripts for generating conference proceedings. It derives
+longdesc from LaTeX scripts written for the DAFx-06 conference
+longdesc proceedings, largely based on the pdfpages package for
+longdesc including the proceedings papers and the hyperref package for
+longdesc creating a proper table of contents, bookmarks and general
+longdesc bibliography back-references. Confproc also uses many other
+longdesc packages for fine tuning of the table of contents, bibliography
+longdesc and index of authors. The added value of the class resides in
+longdesc its time-saving aspects when designing conference proceedings.
+docfiles size=2823309
+ texmf-dist/doc/latex/confproc/README details="Readme"
+ texmf-dist/doc/latex/confproc/buildcls
+ texmf-dist/doc/latex/confproc/cleancls
+ texmf-dist/doc/latex/confproc/confproc.pdf details="Package documentation"
+ texmf-dist/doc/latex/confproc/example/buildcppdfpapers
+ texmf-dist/doc/latex/confproc/example/buildpapers
+ texmf-dist/doc/latex/confproc/example/buildproc
+ texmf-dist/doc/latex/confproc/example/confproc.cls
+ texmf-dist/doc/latex/confproc/example/confproc.ist
+ texmf-dist/doc/latex/confproc/example/example.pdf
+ texmf-dist/doc/latex/confproc/example/example.tex
+ texmf-dist/doc/latex/confproc/example/exbiblio.bib
+ texmf-dist/doc/latex/confproc/example/exclass.tex
+ texmf-dist/doc/latex/confproc/example/exclasslast.tex
+ texmf-dist/doc/latex/confproc/example/exclasspre.tex
+ texmf-dist/doc/latex/confproc/example/expapersswitch.tex
+ texmf-dist/doc/latex/confproc/example/exprogram.csv
+ texmf-dist/doc/latex/confproc/example/newapave.bst
+ texmf-dist/doc/latex/confproc/example/newapave.sty
+ texmf-dist/doc/latex/confproc/example/papers/IEEEtran.bst
+ texmf-dist/doc/latex/confproc/example/papers/dafx_06.sty
+ texmf-dist/doc/latex/confproc/example/papers/expages.tex
+ texmf-dist/doc/latex/confproc/example/papers/p_001.pdf
+ texmf-dist/doc/latex/confproc/example/papers/p_003.pdf
+ texmf-dist/doc/latex/confproc/example/papers/p_005.pdf
+ texmf-dist/doc/latex/confproc/example/papers/p_007.pdf
+ texmf-dist/doc/latex/confproc/example/papers/p_009.pdf
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_001/dafx_06.sty
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_001/fft_plot2.png
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_001/p_001.bib
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_001/p_001.tex
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_003/dafx_06.sty
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_003/fft_plot2.png
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_003/p_003.bib
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_003/p_003.tex
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_005/dafx_06.sty
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_005/fft_plot2.png
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_005/p_005.bib
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_005/p_005.tex
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_007/dafx_06.sty
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_007/fft_plot2.png
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_007/p_007.bib
+ texmf-dist/doc/latex/confproc/example/papers/sources_pdftex/p_007/p_007.tex
+ texmf-dist/doc/latex/confproc/example/papers/sources_tex/p_009/dafx_06.sty
+ texmf-dist/doc/latex/confproc/example/papers/sources_tex/p_009/fft_plot2.png
+ texmf-dist/doc/latex/confproc/example/papers/sources_tex/p_009/p_009.bib
+ texmf-dist/doc/latex/confproc/example/papers/sources_tex/p_009/p_009.tex
+ texmf-dist/doc/latex/confproc/example/pictures/ex_1stpage.pdf
+ texmf-dist/doc/latex/confproc/example/procswitchandtoc.pl
+srcfiles size=310406
+ texmf-dist/source/latex/confproc/confproc.dtx
+ texmf-dist/source/latex/confproc/confproc.ins
+runfiles size=67721
+ texmf-dist/bibtex/bst/confproc/newapave.bst
+ texmf-dist/makeindex/confproc/confproc.ist
+ texmf-dist/tex/latex/confproc/confproc.cls
+ texmf-dist/tex/latex/confproc/newapave.sty
+ texmf-dist/tex/latex/confproc/pd1enc.def
+catalogue-version 0.4f
+catalogue-date 2007-10-18 19:58:07 +0200
+catalogue-ctan /macros/latex/contrib/conferences/confproc
+catalogue-license lppl
+
+name context
+category Package
+revision 4459
+shortdesc The ConTeXt macro package.
+longdesc A full featured, parameter driven macro package, which fully
+longdesc supports advanced interactive documents. See the ConTeXt garden
+longdesc for a wealth of support information.
+docfiles size=472492
+ texmf-dist/doc/context/bib/bibmod-doc.pdf
+ texmf-dist/doc/context/bib/bibmod-doc.tex
+ texmf-dist/doc/context/document/general/manuals/mreadme.pdf
+ texmf-dist/doc/context/document/general/manuals/tiptrick.pdf
+ texmf-dist/doc/context/manuals/allkind/mcommon.tex
+ texmf-dist/doc/context/manuals/allkind/mreadme.tex
+ texmf-dist/doc/context/scripts/perl/texshow.1
+ texmf-dist/doc/context/scripts/perl/texshow.html
+runfiles size=15043150
+ texmf-dist/bibtex/bst/context/cont-ab.bst
+ texmf-dist/bibtex/bst/context/cont-au.bst
+ texmf-dist/bibtex/bst/context/cont-no.bst
+ texmf-dist/bibtex/bst/context/cont-ti.bst
+ texmf-dist/context/config/texexec.rme
+ texmf-dist/context/data/conedt.gui
+ texmf-dist/context/data/conedt.ini
+ texmf-dist/context/data/cont-cz-scite.properties
+ texmf-dist/context/data/cont-de-scite.properties
+ texmf-dist/context/data/cont-en-scite.properties
+ texmf-dist/context/data/cont-fr-scite.properties
+ texmf-dist/context/data/cont-it-scite.properties
+ texmf-dist/context/data/cont-nl-scite.properties
+ texmf-dist/context/data/cont-ro-scite.properties
+ texmf-dist/context/data/cont-xx-scite.properties
+ texmf-dist/context/data/context-jedit-base.xml
+ texmf-dist/context/data/context-jedit-cz.xml
+ texmf-dist/context/data/context-jedit-de.xml
+ texmf-dist/context/data/context-jedit-en.xml
+ texmf-dist/context/data/context-jedit-fr.xml
+ texmf-dist/context/data/context-jedit-it.xml
+ texmf-dist/context/data/context-jedit-nl.xml
+ texmf-dist/context/data/context-jedit-ro.xml
+ texmf-dist/context/data/context-jedit.xml
+ texmf-dist/context/data/context.properties
+ texmf-dist/context/data/context.vim
+ texmf-dist/context/data/contextnames.txt
+ texmf-dist/context/data/cscite.rme
+ texmf-dist/context/data/latex-scite.properties
+ texmf-dist/context/data/metafun-scite.properties
+ texmf-dist/context/data/mp.vim
+ texmf-dist/context/data/scite-ctx.properties
+ texmf-dist/context/data/scite-ctx.readme
+ texmf-dist/context/data/type-buy.dat
+ texmf-dist/context/data/type-fsf.dat
+ texmf-dist/context/data/type-ghz.dat
+ texmf-dist/context/data/type-tmf.dat
+ texmf-dist/fonts/afm/hoekwater/context/contnav.afm
+ texmf-dist/fonts/enc/dvips/context/cmin.enc
+ texmf-dist/fonts/enc/dvips/context/cmit.enc
+ texmf-dist/fonts/enc/dvips/context/cmitt.enc
+ texmf-dist/fonts/enc/dvips/context/cmrm.enc
+ texmf-dist/fonts/enc/dvips/context/cmsc.enc
+ texmf-dist/fonts/enc/dvips/context/cmtt.enc
+ texmf-dist/fonts/enc/dvips/context/lm-ec-os.enc
+ texmf-dist/fonts/enc/dvips/context/lm-qx-os.enc
+ texmf-dist/fonts/enc/dvips/context/lm-qxtt-os.enc
+ texmf-dist/fonts/enc/dvips/context/lm-t5-os.enc
+ texmf-dist/fonts/enc/dvips/context/lm-texnansi-os.enc
+ texmf-dist/fonts/enc/dvips/context/teff-trinite.enc
+ texmf-dist/fonts/map/dvipdfm/context/8r-base.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-cs.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-ec.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-el.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-ex.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-exp.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-greek.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-mi.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-qx.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-rm.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-sy.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-t2a.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-t2b.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-t2c.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-t5.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-texnansi.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-ts1.map
+ texmf-dist/fonts/map/dvipdfm/context/antt-wncy.map
+ texmf-dist/fonts/map/dvipdfm/context/cbgreek.map
+ texmf-dist/fonts/map/dvipdfm/context/cm-super-t1.map
+ texmf-dist/fonts/map/dvipdfm/context/cm-super-t2a.map
+ texmf-dist/fonts/map/dvipdfm/context/cm-super-t2b.map
+ texmf-dist/fonts/map/dvipdfm/context/cm-super-t2c.map
+ texmf-dist/fonts/map/dvipdfm/context/cm-super-ts1.map
+ texmf-dist/fonts/map/dvipdfm/context/cm-super-x2.map
+ texmf-dist/fonts/map/dvipdfm/context/cs-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/cs-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/cs-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/cs-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/cs-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/ec-base.map
+ texmf-dist/fonts/map/dvipdfm/context/ec-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/ec-os-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/ec-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/ec-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/ec-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/ec-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/ec-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/el-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/el-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/el-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/el-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/el-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/el-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/fourier-utopia-expert.map
+ texmf-dist/fonts/map/dvipdfm/context/fourier.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-cs.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-ec.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-el.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-ex.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-exp.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-greek.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-mi.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-qx.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-rm.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-sy.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-t2a.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-t2b.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-t2c.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-t5.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-texnansi.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-ts1.map
+ texmf-dist/fonts/map/dvipdfm/context/iwona-wncy.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-cs.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-ec.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-el.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-ex.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-exp.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-greek.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-mi.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-qx.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-rm.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-sy.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-t2a.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-t2b.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-t2c.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-t5.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-texnansi.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-ts1.map
+ texmf-dist/fonts/map/dvipdfm/context/kurier-wncy.map
+ texmf-dist/fonts/map/dvipdfm/context/l7x-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/l7x-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/l7x-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/l7x-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/l7x-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-cs.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-ec.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-el.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-l7x.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-math.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-qx.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-rep-cmother.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-rep-cmtext-interpolated.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-rep-cmtext.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-rep-cstext.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-rep-pltext.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-rep-vntext.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-rm.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-t5.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-texnansi.map
+ texmf-dist/fonts/map/dvipdfm/context/lm-ts1.map
+ texmf-dist/fonts/map/dvipdfm/context/original-adobe-euro.map
+ texmf-dist/fonts/map/dvipdfm/context/original-ams-base.map
+ texmf-dist/fonts/map/dvipdfm/context/original-ams-cmr.map
+ texmf-dist/fonts/map/dvipdfm/context/original-ams-euler.map
+ texmf-dist/fonts/map/dvipdfm/context/original-base.map
+ texmf-dist/fonts/map/dvipdfm/context/original-context-symbol.map
+ texmf-dist/fonts/map/dvipdfm/context/original-dummy.map
+ texmf-dist/fonts/map/dvipdfm/context/original-empty.map
+ texmf-dist/fonts/map/dvipdfm/context/original-micropress-informal.map
+ texmf-dist/fonts/map/dvipdfm/context/original-public-csr.map
+ texmf-dist/fonts/map/dvipdfm/context/original-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/original-public-plr.map
+ texmf-dist/fonts/map/dvipdfm/context/original-public-vnr.map
+ texmf-dist/fonts/map/dvipdfm/context/original-vogel-symbol.map
+ texmf-dist/fonts/map/dvipdfm/context/original-wasy.map
+ texmf-dist/fonts/map/dvipdfm/context/original-youngryu-px.map
+ texmf-dist/fonts/map/dvipdfm/context/original-youngryu-tx.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-cs.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-ec.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-el.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-l7x.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-qx.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-rm.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-t2a.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-t2b.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-t2c.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-t5.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-texnansi.map
+ texmf-dist/fonts/map/dvipdfm/context/qbk-ts1.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-cs.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-ec.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-el.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-l7x.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-qx.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-rm.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-t2a.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-t2b.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-t2c.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-t5.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-texnansi.map
+ texmf-dist/fonts/map/dvipdfm/context/qcs-ts1.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-cs.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-ec.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-el.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-l7x.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-qx.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-rm.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-t2a.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-t2b.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-t2c.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-t5.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-texnansi.map
+ texmf-dist/fonts/map/dvipdfm/context/qpl-ts1.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-cs.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-ec.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-el.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-l7x.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-qx.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-rm.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-t2a.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-t2b.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-t2c.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-t5.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-texnansi.map
+ texmf-dist/fonts/map/dvipdfm/context/qtm-ts1.map
+ texmf-dist/fonts/map/dvipdfm/context/qx-base.map
+ texmf-dist/fonts/map/dvipdfm/context/qx-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/qx-os-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/qx-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/qx-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/qx-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/qx-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/qx-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/rm-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/rm-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/rm-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/rm-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/rm-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/t2a-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/t2a-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/t2a-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/t2a-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/t2b-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/t2b-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/t2b-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/t2b-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/t2c-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/t2c-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/t2c-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/t2c-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/t5-base.map
+ texmf-dist/fonts/map/dvipdfm/context/t5-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/t5-os-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/t5-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/t5-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/t5-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/t5-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/t5-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/texnansi-base.map
+ texmf-dist/fonts/map/dvipdfm/context/texnansi-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/texnansi-os-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/texnansi-public-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/texnansi-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/texnansi-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/texnansi-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/texnansi-qtm.map
+ texmf-dist/fonts/map/dvipdfm/context/ts1-lm.map
+ texmf-dist/fonts/map/dvipdfm/context/ts1-qbk.map
+ texmf-dist/fonts/map/dvipdfm/context/ts1-qcs.map
+ texmf-dist/fonts/map/dvipdfm/context/ts1-qpl.map
+ texmf-dist/fonts/map/dvipdfm/context/ts1-qtm.map
+ texmf-dist/fonts/map/pdftex/context/8r-base.map
+ texmf-dist/fonts/map/pdftex/context/cs-lm.map
+ texmf-dist/fonts/map/pdftex/context/cs-qbk.map
+ texmf-dist/fonts/map/pdftex/context/cs-qcs.map
+ texmf-dist/fonts/map/pdftex/context/cs-qpl.map
+ texmf-dist/fonts/map/pdftex/context/cs-qtm.map
+ texmf-dist/fonts/map/pdftex/context/ec-base.map
+ texmf-dist/fonts/map/pdftex/context/ec-lm.map
+ texmf-dist/fonts/map/pdftex/context/ec-os-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/ec-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/ec-qbk.map
+ texmf-dist/fonts/map/pdftex/context/ec-qcs.map
+ texmf-dist/fonts/map/pdftex/context/ec-qpl.map
+ texmf-dist/fonts/map/pdftex/context/ec-qtm.map
+ texmf-dist/fonts/map/pdftex/context/el-lm.map
+ texmf-dist/fonts/map/pdftex/context/el-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/el-qbk.map
+ texmf-dist/fonts/map/pdftex/context/el-qcs.map
+ texmf-dist/fonts/map/pdftex/context/el-qpl.map
+ texmf-dist/fonts/map/pdftex/context/el-qtm.map
+ texmf-dist/fonts/map/pdftex/context/koeieletters.map
+ texmf-dist/fonts/map/pdftex/context/l7x-lm.map
+ texmf-dist/fonts/map/pdftex/context/l7x-qbk.map
+ texmf-dist/fonts/map/pdftex/context/l7x-qcs.map
+ texmf-dist/fonts/map/pdftex/context/l7x-qpl.map
+ texmf-dist/fonts/map/pdftex/context/l7x-qtm.map
+ texmf-dist/fonts/map/pdftex/context/original-adobe-euro.map
+ texmf-dist/fonts/map/pdftex/context/original-ams-base.map
+ texmf-dist/fonts/map/pdftex/context/original-ams-cmr.map
+ texmf-dist/fonts/map/pdftex/context/original-ams-euler.map
+ texmf-dist/fonts/map/pdftex/context/original-base.map
+ texmf-dist/fonts/map/pdftex/context/original-context-symbol.map
+ texmf-dist/fonts/map/pdftex/context/original-dummy.map
+ texmf-dist/fonts/map/pdftex/context/original-empty.map
+ texmf-dist/fonts/map/pdftex/context/original-micropress-informal.map
+ texmf-dist/fonts/map/pdftex/context/original-public-csr.map
+ texmf-dist/fonts/map/pdftex/context/original-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/original-public-plr.map
+ texmf-dist/fonts/map/pdftex/context/original-public-vnr.map
+ texmf-dist/fonts/map/pdftex/context/original-vogel-symbol.map
+ texmf-dist/fonts/map/pdftex/context/original-wasy.map
+ texmf-dist/fonts/map/pdftex/context/original-youngryu-px.map
+ texmf-dist/fonts/map/pdftex/context/original-youngryu-tx.map
+ texmf-dist/fonts/map/pdftex/context/qx-base.map
+ texmf-dist/fonts/map/pdftex/context/qx-lm.map
+ texmf-dist/fonts/map/pdftex/context/qx-os-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/qx-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/qx-qbk.map
+ texmf-dist/fonts/map/pdftex/context/qx-qcs.map
+ texmf-dist/fonts/map/pdftex/context/qx-qpl.map
+ texmf-dist/fonts/map/pdftex/context/qx-qtm.map
+ texmf-dist/fonts/map/pdftex/context/rm-lm.map
+ texmf-dist/fonts/map/pdftex/context/rm-qbk.map
+ texmf-dist/fonts/map/pdftex/context/rm-qcs.map
+ texmf-dist/fonts/map/pdftex/context/rm-qpl.map
+ texmf-dist/fonts/map/pdftex/context/rm-qtm.map
+ texmf-dist/fonts/map/pdftex/context/t2a-qbk.map
+ texmf-dist/fonts/map/pdftex/context/t2a-qcs.map
+ texmf-dist/fonts/map/pdftex/context/t2a-qpl.map
+ texmf-dist/fonts/map/pdftex/context/t2a-qtm.map
+ texmf-dist/fonts/map/pdftex/context/t2b-qbk.map
+ texmf-dist/fonts/map/pdftex/context/t2b-qcs.map
+ texmf-dist/fonts/map/pdftex/context/t2b-qpl.map
+ texmf-dist/fonts/map/pdftex/context/t2b-qtm.map
+ texmf-dist/fonts/map/pdftex/context/t2c-qbk.map
+ texmf-dist/fonts/map/pdftex/context/t2c-qcs.map
+ texmf-dist/fonts/map/pdftex/context/t2c-qpl.map
+ texmf-dist/fonts/map/pdftex/context/t2c-qtm.map
+ texmf-dist/fonts/map/pdftex/context/t5-base.map
+ texmf-dist/fonts/map/pdftex/context/t5-lm.map
+ texmf-dist/fonts/map/pdftex/context/t5-os-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/t5-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/t5-qbk.map
+ texmf-dist/fonts/map/pdftex/context/t5-qcs.map
+ texmf-dist/fonts/map/pdftex/context/t5-qpl.map
+ texmf-dist/fonts/map/pdftex/context/t5-qtm.map
+ texmf-dist/fonts/map/pdftex/context/texnansi-base.map
+ texmf-dist/fonts/map/pdftex/context/texnansi-lm.map
+ texmf-dist/fonts/map/pdftex/context/texnansi-os-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/texnansi-public-lm.map
+ texmf-dist/fonts/map/pdftex/context/texnansi-qbk.map
+ texmf-dist/fonts/map/pdftex/context/texnansi-qcs.map
+ texmf-dist/fonts/map/pdftex/context/texnansi-qpl.map
+ texmf-dist/fonts/map/pdftex/context/texnansi-qtm.map
+ texmf-dist/fonts/map/pdftex/context/ts1-lm.map
+ texmf-dist/fonts/map/pdftex/context/ts1-qbk.map
+ texmf-dist/fonts/map/pdftex/context/ts1-qcs.map
+ texmf-dist/fonts/map/pdftex/context/ts1-qpl.map
+ texmf-dist/fonts/map/pdftex/context/ts1-qtm.map
+ texmf-dist/fonts/pfm/hoekwater/context/contnav.pfm
+ texmf-dist/fonts/tfm/hoekwater/context/contnav.tfm
+ texmf-dist/fonts/type1/hoekwater/context/contnav.pfb
+ texmf-dist/metapost/context/base/metafun.mp
+ texmf-dist/metapost/context/base/mp-back.mp
+ texmf-dist/metapost/context/base/mp-base.mp
+ texmf-dist/metapost/context/base/mp-butt.mp
+ texmf-dist/metapost/context/base/mp-char.mp
+ texmf-dist/metapost/context/base/mp-core.mp
+ texmf-dist/metapost/context/base/mp-figs.mp
+ texmf-dist/metapost/context/base/mp-fobg.mp
+ texmf-dist/metapost/context/base/mp-form.mp
+ texmf-dist/metapost/context/base/mp-func.mp
+ texmf-dist/metapost/context/base/mp-grid.mp
+ texmf-dist/metapost/context/base/mp-grph.mp
+ texmf-dist/metapost/context/base/mp-page.mp
+ texmf-dist/metapost/context/base/mp-shap.mp
+ texmf-dist/metapost/context/base/mp-spec.mp
+ texmf-dist/metapost/context/base/mp-step.mp
+ texmf-dist/metapost/context/base/mp-symb.mp
+ texmf-dist/metapost/context/base/mp-text.mp
+ texmf-dist/metapost/context/base/mp-tool.mp
+ texmf-dist/metapost/context/base/mp-txts.mp
+ texmf-dist/scripts/context/lua/scite-ctx.lua
+ texmf-dist/scripts/context/perl/cont_mis.pm
+ texmf-dist/scripts/context/perl/cont_set.pm
+ texmf-dist/scripts/context/perl/makempy.pl
+ texmf-dist/scripts/context/perl/mptopdf.pl
+ texmf-dist/scripts/context/perl/path_tre.pm
+ texmf-dist/scripts/context/perl/pdftrimwhite.pl
+ texmf-dist/scripts/context/perl/texexec.pl
+ texmf-dist/scripts/context/perl/texexec.rme
+ texmf-dist/scripts/context/perl/texfind.pl
+ texmf-dist/scripts/context/perl/texfont.pl
+ texmf-dist/scripts/context/perl/texshow.pl
+ texmf-dist/scripts/context/perl/texutil.pl
+ texmf-dist/scripts/context/perl/utiplug.pm
+ texmf-dist/scripts/context/ruby/base/ctx.rb
+ texmf-dist/scripts/context/ruby/base/exa.rb
+ texmf-dist/scripts/context/ruby/base/file.rb
+ texmf-dist/scripts/context/ruby/base/kpse.rb
+ texmf-dist/scripts/context/ruby/base/kpse/drb.rb
+ texmf-dist/scripts/context/ruby/base/kpse/soap.rb
+ texmf-dist/scripts/context/ruby/base/kpse/trees.rb
+ texmf-dist/scripts/context/ruby/base/kpsedirect.rb
+ texmf-dist/scripts/context/ruby/base/kpsefast.rb
+ texmf-dist/scripts/context/ruby/base/kpseremote.rb
+ texmf-dist/scripts/context/ruby/base/kpserunner.rb
+ texmf-dist/scripts/context/ruby/base/kpsetrees.rb
+ texmf-dist/scripts/context/ruby/base/logger.rb
+ texmf-dist/scripts/context/ruby/base/merge.rb
+ texmf-dist/scripts/context/ruby/base/mp.rb
+ texmf-dist/scripts/context/ruby/base/pdf.rb
+ texmf-dist/scripts/context/ruby/base/state.rb
+ texmf-dist/scripts/context/ruby/base/switch.rb
+ texmf-dist/scripts/context/ruby/base/system.rb
+ texmf-dist/scripts/context/ruby/base/tex.rb
+ texmf-dist/scripts/context/ruby/base/texutil.rb
+ texmf-dist/scripts/context/ruby/base/tool.rb
+ texmf-dist/scripts/context/ruby/base/variables.rb
+ texmf-dist/scripts/context/ruby/concheck.rb
+ texmf-dist/scripts/context/ruby/ctxtools.rb
+ texmf-dist/scripts/context/ruby/fcd_start.rb
+ texmf-dist/scripts/context/ruby/graphics/gs.rb
+ texmf-dist/scripts/context/ruby/graphics/inkscape.rb
+ texmf-dist/scripts/context/ruby/graphics/magick.rb
+ texmf-dist/scripts/context/ruby/imgtopdf.rb
+ texmf-dist/scripts/context/ruby/kpseclient.rb
+ texmf-dist/scripts/context/ruby/kpseserver.rb
+ texmf-dist/scripts/context/ruby/mpstools.rb
+ texmf-dist/scripts/context/ruby/mtxtools.rb
+ texmf-dist/scripts/context/ruby/newimgtopdf.rb
+ texmf-dist/scripts/context/ruby/newpstopdf.rb
+ texmf-dist/scripts/context/ruby/newtexexec.rb
+ texmf-dist/scripts/context/ruby/newtexutil.rb
+ texmf-dist/scripts/context/ruby/pdftools.rb
+ texmf-dist/scripts/context/ruby/pstopdf.rb
+ texmf-dist/scripts/context/ruby/rlxtools.rb
+ texmf-dist/scripts/context/ruby/rscortool.rb
+ texmf-dist/scripts/context/ruby/rsfiltool.rb
+ texmf-dist/scripts/context/ruby/rslibtool.rb
+ texmf-dist/scripts/context/ruby/runtools.rb
+ texmf-dist/scripts/context/ruby/texexec.rb
+ texmf-dist/scripts/context/ruby/texmfstart.rb
+ texmf-dist/scripts/context/ruby/texsync.rb
+ texmf-dist/scripts/context/ruby/textools.rb
+ texmf-dist/scripts/context/ruby/texutil.rb
+ texmf-dist/scripts/context/ruby/tmftools.rb
+ texmf-dist/scripts/context/ruby/www/admin.rb
+ texmf-dist/scripts/context/ruby/www/common.rb
+ texmf-dist/scripts/context/ruby/www/dir.rb
+ texmf-dist/scripts/context/ruby/www/exa.rb
+ texmf-dist/scripts/context/ruby/www/lib.rb
+ texmf-dist/scripts/context/ruby/www/login.rb
+ texmf-dist/scripts/context/ruby/wwwclient.rb
+ texmf-dist/scripts/context/ruby/wwwserver.rb
+ texmf-dist/scripts/context/ruby/wwwwatch.rb
+ texmf-dist/scripts/context/ruby/xmltools.rb
+ texmf-dist/scripts/context/stubs/mswin/ctxtools.bat
+ texmf-dist/scripts/context/stubs/mswin/exatools.bat
+ texmf-dist/scripts/context/stubs/mswin/luatools.bat
+ texmf-dist/scripts/context/stubs/mswin/makempy.bat
+ texmf-dist/scripts/context/stubs/mswin/mpstools.bat
+ texmf-dist/scripts/context/stubs/mswin/mptopdf.bat
+ texmf-dist/scripts/context/stubs/mswin/mtxtools.bat
+ texmf-dist/scripts/context/stubs/mswin/pdftools.bat
+ texmf-dist/scripts/context/stubs/mswin/pstopdf.bat
+ texmf-dist/scripts/context/stubs/mswin/rlxtools.bat
+ texmf-dist/scripts/context/stubs/mswin/runtools.bat
+ texmf-dist/scripts/context/stubs/mswin/texexec.bat
+ texmf-dist/scripts/context/stubs/mswin/texfont.bat
+ texmf-dist/scripts/context/stubs/mswin/textools.bat
+ texmf-dist/scripts/context/stubs/mswin/texutil.bat
+ texmf-dist/scripts/context/stubs/mswin/tmftools.bat
+ texmf-dist/scripts/context/stubs/mswin/xmltools.bat
+ texmf-dist/scripts/context/stubs/unix/ctxtools
+ texmf-dist/scripts/context/stubs/unix/exatools
+ texmf-dist/scripts/context/stubs/unix/luatools
+ texmf-dist/scripts/context/stubs/unix/makempy
+ texmf-dist/scripts/context/stubs/unix/mpstools
+ texmf-dist/scripts/context/stubs/unix/mptopdf
+ texmf-dist/scripts/context/stubs/unix/mtxtools
+ texmf-dist/scripts/context/stubs/unix/pdftools
+ texmf-dist/scripts/context/stubs/unix/pstopdf
+ texmf-dist/scripts/context/stubs/unix/rlxtools
+ texmf-dist/scripts/context/stubs/unix/runtools
+ texmf-dist/scripts/context/stubs/unix/texexec
+ texmf-dist/scripts/context/stubs/unix/texfont
+ texmf-dist/scripts/context/stubs/unix/textools
+ texmf-dist/scripts/context/stubs/unix/texutil
+ texmf-dist/scripts/context/stubs/unix/tmftools
+ texmf-dist/scripts/context/stubs/unix/xmltools
+ texmf-dist/tex/context/base/colo-ema.tex
+ texmf-dist/tex/context/base/colo-ext.tex
+ texmf-dist/tex/context/base/colo-hex.tex
+ texmf-dist/tex/context/base/colo-ini.tex
+ texmf-dist/tex/context/base/colo-rgb.tex
+ texmf-dist/tex/context/base/colo-run.tex
+ texmf-dist/tex/context/base/colo-xwi.tex
+ texmf-dist/tex/context/base/cont-cz.tex
+ texmf-dist/tex/context/base/cont-de.tex
+ texmf-dist/tex/context/base/cont-en.tex
+ texmf-dist/tex/context/base/cont-err.tex
+ texmf-dist/tex/context/base/cont-fil.tex
+ texmf-dist/tex/context/base/cont-fr.tex
+ texmf-dist/tex/context/base/cont-it.tex
+ texmf-dist/tex/context/base/cont-log.tex
+ texmf-dist/tex/context/base/cont-new.mkii
+ texmf-dist/tex/context/base/cont-new.tex
+ texmf-dist/tex/context/base/cont-nl.tex
+ texmf-dist/tex/context/base/cont-old.tex
+ texmf-dist/tex/context/base/cont-ro.tex
+ texmf-dist/tex/context/base/cont-sys.ori
+ texmf-dist/tex/context/base/cont-uk.tex
+ texmf-dist/tex/context/base/cont-usr.ori
+ texmf-dist/tex/context/base/context.tex
+ texmf-dist/tex/context/base/core-bar.tex
+ texmf-dist/tex/context/base/core-blk.tex
+ texmf-dist/tex/context/base/core-box.tex
+ texmf-dist/tex/context/base/core-buf.mkii
+ texmf-dist/tex/context/base/core-buf.tex
+ texmf-dist/tex/context/base/core-con.mkii
+ texmf-dist/tex/context/base/core-con.tex
+ texmf-dist/tex/context/base/core-ctx.tex
+ texmf-dist/tex/context/base/core-dat.tex
+ texmf-dist/tex/context/base/core-def.tex
+ texmf-dist/tex/context/base/core-des.tex
+ texmf-dist/tex/context/base/core-fig.tex
+ texmf-dist/tex/context/base/core-fil.tex
+ texmf-dist/tex/context/base/core-fld.tex
+ texmf-dist/tex/context/base/core-fnt.tex
+ texmf-dist/tex/context/base/core-gen.tex
+ texmf-dist/tex/context/base/core-grd.tex
+ texmf-dist/tex/context/base/core-hlp.tex
+ texmf-dist/tex/context/base/core-ini.tex
+ texmf-dist/tex/context/base/core-ins.tex
+ texmf-dist/tex/context/base/core-int.tex
+ texmf-dist/tex/context/base/core-itm.tex
+ texmf-dist/tex/context/base/core-job.tex
+ texmf-dist/tex/context/base/core-lme.tex
+ texmf-dist/tex/context/base/core-lnt.tex
+ texmf-dist/tex/context/base/core-lst.tex
+ texmf-dist/tex/context/base/core-ltb.tex
+ texmf-dist/tex/context/base/core-mak.tex
+ texmf-dist/tex/context/base/core-mar.tex
+ texmf-dist/tex/context/base/core-mat.tex
+ texmf-dist/tex/context/base/core-mis.tex
+ texmf-dist/tex/context/base/core-nav.tex
+ texmf-dist/tex/context/base/core-new.tex
+ texmf-dist/tex/context/base/core-not.tex
+ texmf-dist/tex/context/base/core-ntb.tex
+ texmf-dist/tex/context/base/core-num.tex
+ texmf-dist/tex/context/base/core-obj.mkii
+ texmf-dist/tex/context/base/core-obj.tex
+ texmf-dist/tex/context/base/core-par.tex
+ texmf-dist/tex/context/base/core-pgr.tex
+ texmf-dist/tex/context/base/core-pos.mkii
+ texmf-dist/tex/context/base/core-pos.tex
+ texmf-dist/tex/context/base/core-ref.tex
+ texmf-dist/tex/context/base/core-reg.tex
+ texmf-dist/tex/context/base/core-rul.tex
+ texmf-dist/tex/context/base/core-sec.tex
+ texmf-dist/tex/context/base/core-snc.tex
+ texmf-dist/tex/context/base/core-spa.tex
+ texmf-dist/tex/context/base/core-stg.tex
+ texmf-dist/tex/context/base/core-syn.tex
+ texmf-dist/tex/context/base/core-sys.mkii
+ texmf-dist/tex/context/base/core-sys.tex
+ texmf-dist/tex/context/base/core-tab.tex
+ texmf-dist/tex/context/base/core-tbl.tex
+ texmf-dist/tex/context/base/core-trf.tex
+ texmf-dist/tex/context/base/core-tsp.tex
+ texmf-dist/tex/context/base/core-two.mkii
+ texmf-dist/tex/context/base/core-two.tex
+ texmf-dist/tex/context/base/core-uti.mkii
+ texmf-dist/tex/context/base/core-uti.tex
+ texmf-dist/tex/context/base/core-var.tex
+ texmf-dist/tex/context/base/core-ver.mkii
+ texmf-dist/tex/context/base/core-ver.tex
+ texmf-dist/tex/context/base/core-vis.tex
+ texmf-dist/tex/context/base/enco-032.tex
+ texmf-dist/tex/context/base/enco-037.tex
+ texmf-dist/tex/context/base/enco-acc.tex
+ texmf-dist/tex/context/base/enco-agr.tex
+ texmf-dist/tex/context/base/enco-ans.tex
+ texmf-dist/tex/context/base/enco-cas.tex
+ texmf-dist/tex/context/base/enco-chi.tex
+ texmf-dist/tex/context/base/enco-com.tex
+ texmf-dist/tex/context/base/enco-cyr.tex
+ texmf-dist/tex/context/base/enco-def.tex
+ texmf-dist/tex/context/base/enco-ec.tex
+ texmf-dist/tex/context/base/enco-ecm.tex
+ texmf-dist/tex/context/base/enco-el.tex
+ texmf-dist/tex/context/base/enco-fde.tex
+ texmf-dist/tex/context/base/enco-ffr.tex
+ texmf-dist/tex/context/base/enco-fpl.tex
+ texmf-dist/tex/context/base/enco-fro.tex
+ texmf-dist/tex/context/base/enco-fsl.tex
+ texmf-dist/tex/context/base/enco-grk.tex
+ texmf-dist/tex/context/base/enco-heb.tex
+ texmf-dist/tex/context/base/enco-ibm.tex
+ texmf-dist/tex/context/base/enco-il2.tex
+ texmf-dist/tex/context/base/enco-ini.tex
+ texmf-dist/tex/context/base/enco-lat.tex
+ texmf-dist/tex/context/base/enco-mis.tex
+ texmf-dist/tex/context/base/enco-pdf.tex
+ texmf-dist/tex/context/base/enco-pfr.mkii
+ texmf-dist/tex/context/base/enco-pfr.tex
+ texmf-dist/tex/context/base/enco-pol.tex
+ texmf-dist/tex/context/base/enco-qx.tex
+ texmf-dist/tex/context/base/enco-raw.tex
+ texmf-dist/tex/context/base/enco-run.tex
+ texmf-dist/tex/context/base/enco-t5.tex
+ texmf-dist/tex/context/base/enco-tbo.tex
+ texmf-dist/tex/context/base/enco-uc.tex
+ texmf-dist/tex/context/base/enco-utf.tex
+ texmf-dist/tex/context/base/enco-vis.tex
+ texmf-dist/tex/context/base/enco-vna.tex
+ texmf-dist/tex/context/base/enco-win.tex
+ texmf-dist/tex/context/base/enco-x5.tex
+ texmf-dist/tex/context/base/filt-bas.tex
+ texmf-dist/tex/context/base/filt-ini.tex
+ texmf-dist/tex/context/base/font-arb.tex
+ texmf-dist/tex/context/base/font-bfm.tex
+ texmf-dist/tex/context/base/font-chi.tex
+ texmf-dist/tex/context/base/font-heb.tex
+ texmf-dist/tex/context/base/font-ini.tex
+ texmf-dist/tex/context/base/font-jap.tex
+ texmf-dist/tex/context/base/font-run.tex
+ texmf-dist/tex/context/base/font-uni.tex
+ texmf-dist/tex/context/base/font-unk.tex
+ texmf-dist/tex/context/base/hand-def.tex
+ texmf-dist/tex/context/base/hand-ini.tex
+ texmf-dist/tex/context/base/java-ans.tex
+ texmf-dist/tex/context/base/java-exa.tex
+ texmf-dist/tex/context/base/java-fil.tex
+ texmf-dist/tex/context/base/java-fld.tex
+ texmf-dist/tex/context/base/java-ini.tex
+ texmf-dist/tex/context/base/java-stp.tex
+ texmf-dist/tex/context/base/lang-all.xml
+ texmf-dist/tex/context/base/lang-alt.tex
+ texmf-dist/tex/context/base/lang-ana.tex
+ texmf-dist/tex/context/base/lang-art.tex
+ texmf-dist/tex/context/base/lang-bal.tex
+ texmf-dist/tex/context/base/lang-cel.tex
+ texmf-dist/tex/context/base/lang-chi.tex
+ texmf-dist/tex/context/base/lang-ctx.tex
+ texmf-dist/tex/context/base/lang-cyr.tex
+ texmf-dist/tex/context/base/lang-dis.tex
+ texmf-dist/tex/context/base/lang-frd.tex
+ texmf-dist/tex/context/base/lang-frq.tex
+ texmf-dist/tex/context/base/lang-ger.tex
+ texmf-dist/tex/context/base/lang-grk.tex
+ texmf-dist/tex/context/base/lang-ind.tex
+ texmf-dist/tex/context/base/lang-ini.tex
+ texmf-dist/tex/context/base/lang-ita.tex
+ texmf-dist/tex/context/base/lang-jap.tex
+ texmf-dist/tex/context/base/lang-lab.tex
+ texmf-dist/tex/context/base/lang-mis.tex
+ texmf-dist/tex/context/base/lang-run.tex
+ texmf-dist/tex/context/base/lang-sla.mkii
+ texmf-dist/tex/context/base/lang-sla.tex
+ texmf-dist/tex/context/base/lang-spa.tex
+ texmf-dist/tex/context/base/lang-spe.tex
+ texmf-dist/tex/context/base/lang-ura.tex
+ texmf-dist/tex/context/base/lang-vn.tex
+ texmf-dist/tex/context/base/m-arabtex.tex
+ texmf-dist/tex/context/base/m-chart.tex
+ texmf-dist/tex/context/base/m-chemic.tex
+ texmf-dist/tex/context/base/m-cweb.tex
+ texmf-dist/tex/context/base/m-database.tex
+ texmf-dist/tex/context/base/m-dratex.tex
+ texmf-dist/tex/context/base/m-edtsnc.tex
+ texmf-dist/tex/context/base/m-educat.tex
+ texmf-dist/tex/context/base/m-gamma.tex
+ texmf-dist/tex/context/base/m-graph.tex
+ texmf-dist/tex/context/base/m-layout.tex
+ texmf-dist/tex/context/base/m-level.tex
+ texmf-dist/tex/context/base/m-narrowtt.tex
+ texmf-dist/tex/context/base/m-newmat.tex
+ texmf-dist/tex/context/base/m-pdfsnc.tex
+ texmf-dist/tex/context/base/m-pictex.tex
+ texmf-dist/tex/context/base/m-plus.tex
+ texmf-dist/tex/context/base/m-pstric.tex
+ texmf-dist/tex/context/base/m-quest.tex
+ texmf-dist/tex/context/base/m-r.tex
+ texmf-dist/tex/context/base/m-steps.tex
+ texmf-dist/tex/context/base/m-streams.tex
+ texmf-dist/tex/context/base/m-subsub.tex
+ texmf-dist/tex/context/base/m-tex4ht.tex
+ texmf-dist/tex/context/base/m-tryout.tex
+ texmf-dist/tex/context/base/m-units.tex
+ texmf-dist/tex/context/base/m-visual.tex
+ texmf-dist/tex/context/base/math-ams.tex
+ texmf-dist/tex/context/base/math-cow.tex
+ texmf-dist/tex/context/base/math-eul.tex
+ texmf-dist/tex/context/base/math-ext.tex
+ texmf-dist/tex/context/base/math-fou.tex
+ texmf-dist/tex/context/base/math-ini.tex
+ texmf-dist/tex/context/base/math-lbr.tex
+ texmf-dist/tex/context/base/math-mis.tex
+ texmf-dist/tex/context/base/math-pln.tex
+ texmf-dist/tex/context/base/math-run.tex
+ texmf-dist/tex/context/base/math-tex.tex
+ texmf-dist/tex/context/base/math-tim.tex
+ texmf-dist/tex/context/base/math-uni.tex
+ texmf-dist/tex/context/base/meta-clp.tex
+ texmf-dist/tex/context/base/meta-dum.tex
+ texmf-dist/tex/context/base/meta-fig.tex
+ texmf-dist/tex/context/base/meta-ini.tex
+ texmf-dist/tex/context/base/meta-mis.tex
+ texmf-dist/tex/context/base/meta-nav.tex
+ texmf-dist/tex/context/base/meta-pag.tex
+ texmf-dist/tex/context/base/meta-pdf.mkii
+ texmf-dist/tex/context/base/meta-pdf.tex
+ texmf-dist/tex/context/base/meta-pre.tex
+ texmf-dist/tex/context/base/meta-tex.tex
+ texmf-dist/tex/context/base/meta-txt.tex
+ texmf-dist/tex/context/base/meta-xml.tex
+ texmf-dist/tex/context/base/mult-com.tex
+ texmf-dist/tex/context/base/mult-con.tex
+ texmf-dist/tex/context/base/mult-fst.tex
+ texmf-dist/tex/context/base/mult-ini.tex
+ texmf-dist/tex/context/base/mult-sys.tex
+ texmf-dist/tex/context/base/page-app.tex
+ texmf-dist/tex/context/base/page-bck.tex
+ texmf-dist/tex/context/base/page-flt.tex
+ texmf-dist/tex/context/base/page-flw.tex
+ texmf-dist/tex/context/base/page-imp.tex
+ texmf-dist/tex/context/base/page-ini.tex
+ texmf-dist/tex/context/base/page-lay.tex
+ texmf-dist/tex/context/base/page-lin.tex
+ texmf-dist/tex/context/base/page-log.tex
+ texmf-dist/tex/context/base/page-lyr.tex
+ texmf-dist/tex/context/base/page-mak.tex
+ texmf-dist/tex/context/base/page-mar.tex
+ texmf-dist/tex/context/base/page-mul.tex
+ texmf-dist/tex/context/base/page-new.tex
+ texmf-dist/tex/context/base/page-not.tex
+ texmf-dist/tex/context/base/page-num.tex
+ texmf-dist/tex/context/base/page-one.tex
+ texmf-dist/tex/context/base/page-plg.tex
+ texmf-dist/tex/context/base/page-run.tex
+ texmf-dist/tex/context/base/page-set.tex
+ texmf-dist/tex/context/base/page-sid.tex
+ texmf-dist/tex/context/base/page-spr.tex
+ texmf-dist/tex/context/base/page-str.tex
+ texmf-dist/tex/context/base/page-txt.tex
+ texmf-dist/tex/context/base/pdfr-def.tex
+ texmf-dist/tex/context/base/pdfr-ec.tex
+ texmf-dist/tex/context/base/ppchtex.tex
+ texmf-dist/tex/context/base/prop-ini.tex
+ texmf-dist/tex/context/base/prop-lay.tex
+ texmf-dist/tex/context/base/prop-mis.tex
+ texmf-dist/tex/context/base/prop-run.tex
+ texmf-dist/tex/context/base/regi-8859-1.tex
+ texmf-dist/tex/context/base/regi-8859-10.tex
+ texmf-dist/tex/context/base/regi-8859-13.tex
+ texmf-dist/tex/context/base/regi-8859-15.tex
+ texmf-dist/tex/context/base/regi-8859-16.tex
+ texmf-dist/tex/context/base/regi-8859-2.tex
+ texmf-dist/tex/context/base/regi-8859-3.tex
+ texmf-dist/tex/context/base/regi-8859-4.tex
+ texmf-dist/tex/context/base/regi-8859-5.tex
+ texmf-dist/tex/context/base/regi-8859-7.tex
+ texmf-dist/tex/context/base/regi-8859-9.tex
+ texmf-dist/tex/context/base/regi-cp1250.tex
+ texmf-dist/tex/context/base/regi-cp1251.tex
+ texmf-dist/tex/context/base/regi-cp1252.tex
+ texmf-dist/tex/context/base/regi-cp1253.tex
+ texmf-dist/tex/context/base/regi-cp1254.tex
+ texmf-dist/tex/context/base/regi-cp1257.tex
+ texmf-dist/tex/context/base/regi-cyp.tex
+ texmf-dist/tex/context/base/regi-cyr.tex
+ texmf-dist/tex/context/base/regi-def.tex
+ texmf-dist/tex/context/base/regi-ibm.tex
+ texmf-dist/tex/context/base/regi-ini.mkii
+ texmf-dist/tex/context/base/regi-ini.tex
+ texmf-dist/tex/context/base/regi-mac.tex
+ texmf-dist/tex/context/base/regi-run.mkii
+ texmf-dist/tex/context/base/regi-syn.tex
+ texmf-dist/tex/context/base/regi-uni.tex
+ texmf-dist/tex/context/base/regi-utf.tex
+ texmf-dist/tex/context/base/regi-vis.tex
+ texmf-dist/tex/context/base/rlxtools.rlx
+ texmf-dist/tex/context/base/s-abr-01.tex
+ texmf-dist/tex/context/base/s-abr-02.tex
+ texmf-dist/tex/context/base/s-abr-03.tex
+ texmf-dist/tex/context/base/s-chi-00.tex
+ texmf-dist/tex/context/base/s-faq-00.tex
+ texmf-dist/tex/context/base/s-faq-01.tex
+ texmf-dist/tex/context/base/s-faq-02.tex
+ texmf-dist/tex/context/base/s-faq-03.tex
+ texmf-dist/tex/context/base/s-fnt-01.tex
+ texmf-dist/tex/context/base/s-fnt-02.tex
+ texmf-dist/tex/context/base/s-grk-00.tex
+ texmf-dist/tex/context/base/s-jap-00.tex
+ texmf-dist/tex/context/base/s-mag-01.tex
+ texmf-dist/tex/context/base/s-map-10.tex
+ texmf-dist/tex/context/base/s-mod-00.tex
+ texmf-dist/tex/context/base/s-mod-01.tex
+ texmf-dist/tex/context/base/s-mod-02.tex
+ texmf-dist/tex/context/base/s-pre-00.tex
+ texmf-dist/tex/context/base/s-pre-01.tex
+ texmf-dist/tex/context/base/s-pre-02.tex
+ texmf-dist/tex/context/base/s-pre-03.tex
+ texmf-dist/tex/context/base/s-pre-04.tex
+ texmf-dist/tex/context/base/s-pre-05.tex
+ texmf-dist/tex/context/base/s-pre-06.tex
+ texmf-dist/tex/context/base/s-pre-07.tex
+ texmf-dist/tex/context/base/s-pre-08.tex
+ texmf-dist/tex/context/base/s-pre-09.tex
+ texmf-dist/tex/context/base/s-pre-10.tex
+ texmf-dist/tex/context/base/s-pre-13.tex
+ texmf-dist/tex/context/base/s-pre-14.tex
+ texmf-dist/tex/context/base/s-pre-15.tex
+ texmf-dist/tex/context/base/s-pre-16.tex
+ texmf-dist/tex/context/base/s-pre-19.tex
+ texmf-dist/tex/context/base/s-pre-22.tex
+ texmf-dist/tex/context/base/s-pre-23.tex
+ texmf-dist/tex/context/base/s-pre-30.tex
+ texmf-dist/tex/context/base/s-pre-50.tex
+ texmf-dist/tex/context/base/s-pre-60.tex
+ texmf-dist/tex/context/base/s-pre-61.tex
+ texmf-dist/tex/context/base/s-pre-62.tex
+ texmf-dist/tex/context/base/s-pre-63.tex
+ texmf-dist/tex/context/base/s-ptj-01.tex
+ texmf-dist/tex/context/base/s-syn-01.tex
+ texmf-dist/tex/context/base/sort-def.tex
+ texmf-dist/tex/context/base/sort-ini.tex
+ texmf-dist/tex/context/base/sort-lan.tex
+ texmf-dist/tex/context/base/spec-def.mkii
+ texmf-dist/tex/context/base/spec-def.tex
+ texmf-dist/tex/context/base/spec-dpm.tex
+ texmf-dist/tex/context/base/spec-dpx.tex
+ texmf-dist/tex/context/base/spec-dvi.tex
+ texmf-dist/tex/context/base/spec-fdf.mkii
+ texmf-dist/tex/context/base/spec-fdf.tex
+ texmf-dist/tex/context/base/spec-ini.tex
+ texmf-dist/tex/context/base/spec-mis.tex
+ texmf-dist/tex/context/base/spec-pdf.tex
+ texmf-dist/tex/context/base/spec-ps.tex
+ texmf-dist/tex/context/base/spec-tpd.tex
+ texmf-dist/tex/context/base/spec-tr.tex
+ texmf-dist/tex/context/base/spec-tst.tex
+ texmf-dist/tex/context/base/spec-var.tex
+ texmf-dist/tex/context/base/spec-win.tex
+ texmf-dist/tex/context/base/spec-xtx.tex
+ texmf-dist/tex/context/base/spec-yy.tex
+ texmf-dist/tex/context/base/supp-ali.tex
+ texmf-dist/tex/context/base/supp-box.tex
+ texmf-dist/tex/context/base/supp-dir.tex
+ texmf-dist/tex/context/base/supp-emp.tex
+ texmf-dist/tex/context/base/supp-eps.tex
+ texmf-dist/tex/context/base/supp-fil.mkii
+ texmf-dist/tex/context/base/supp-fil.tex
+ texmf-dist/tex/context/base/supp-fun.tex
+ texmf-dist/tex/context/base/supp-ini.tex
+ texmf-dist/tex/context/base/supp-lan.tex
+ texmf-dist/tex/context/base/supp-mat.tex
+ texmf-dist/tex/context/base/supp-mis.tex
+ texmf-dist/tex/context/base/supp-mpe.tex
+ texmf-dist/tex/context/base/supp-mps.tex
+ texmf-dist/tex/context/base/supp-mrk.tex
+ texmf-dist/tex/context/base/supp-num.tex
+ texmf-dist/tex/context/base/supp-pat.tex
+ texmf-dist/tex/context/base/supp-pdf.tex
+ texmf-dist/tex/context/base/supp-ran.tex
+ texmf-dist/tex/context/base/supp-spe.tex
+ texmf-dist/tex/context/base/supp-tpi.tex
+ texmf-dist/tex/context/base/supp-vis.tex
+ texmf-dist/tex/context/base/symb-cow.tex
+ texmf-dist/tex/context/base/symb-eur.tex
+ texmf-dist/tex/context/base/symb-glm.tex
+ texmf-dist/tex/context/base/symb-ini.tex
+ texmf-dist/tex/context/base/symb-jmn.tex
+ texmf-dist/tex/context/base/symb-mis.tex
+ texmf-dist/tex/context/base/symb-mvs.tex
+ texmf-dist/tex/context/base/symb-nav.tex
+ texmf-dist/tex/context/base/symb-run.tex
+ texmf-dist/tex/context/base/symb-uni.tex
+ texmf-dist/tex/context/base/symb-was.tex
+ texmf-dist/tex/context/base/syst-cat.mkii
+ texmf-dist/tex/context/base/syst-cat.tex
+ texmf-dist/tex/context/base/syst-chr.tex
+ texmf-dist/tex/context/base/syst-con.mkii
+ texmf-dist/tex/context/base/syst-con.tex
+ texmf-dist/tex/context/base/syst-etx.tex
+ texmf-dist/tex/context/base/syst-ext.tex
+ texmf-dist/tex/context/base/syst-fnt.tex
+ texmf-dist/tex/context/base/syst-gen.tex
+ texmf-dist/tex/context/base/syst-mtx.tex
+ texmf-dist/tex/context/base/syst-new.tex
+ texmf-dist/tex/context/base/syst-omg.tex
+ texmf-dist/tex/context/base/syst-pdt.tex
+ texmf-dist/tex/context/base/syst-pln.tex
+ texmf-dist/tex/context/base/syst-prm.tex
+ texmf-dist/tex/context/base/syst-rtp.mkii
+ texmf-dist/tex/context/base/syst-rtp.tex
+ texmf-dist/tex/context/base/syst-str.mkii
+ texmf-dist/tex/context/base/syst-str.tex
+ texmf-dist/tex/context/base/syst-tex.tex
+ texmf-dist/tex/context/base/syst-var.tex
+ texmf-dist/tex/context/base/syst-xtx.tex
+ texmf-dist/tex/context/base/thrd-pic.tex
+ texmf-dist/tex/context/base/thrd-ran.tex
+ texmf-dist/tex/context/base/thrd-tab.tex
+ texmf-dist/tex/context/base/thrd-trg.tex
+ texmf-dist/tex/context/base/type-akb.tex
+ texmf-dist/tex/context/base/type-buy.tex
+ texmf-dist/tex/context/base/type-cbg.tex
+ texmf-dist/tex/context/base/type-cow.tex
+ texmf-dist/tex/context/base/type-def.tex
+ texmf-dist/tex/context/base/type-dis.tex
+ texmf-dist/tex/context/base/type-enc.tex
+ texmf-dist/tex/context/base/type-exa.tex
+ texmf-dist/tex/context/base/type-fsf.tex
+ texmf-dist/tex/context/base/type-ghz.tex
+ texmf-dist/tex/context/base/type-gyr.tex
+ texmf-dist/tex/context/base/type-ini.tex
+ texmf-dist/tex/context/base/type-map.tex
+ texmf-dist/tex/context/base/type-msw.tex
+ texmf-dist/tex/context/base/type-old.tex
+ texmf-dist/tex/context/base/type-omg.tex
+ texmf-dist/tex/context/base/type-pre.tex
+ texmf-dist/tex/context/base/type-run.tex
+ texmf-dist/tex/context/base/type-siz.tex
+ texmf-dist/tex/context/base/type-spe.tex
+ texmf-dist/tex/context/base/type-syn.tex
+ texmf-dist/tex/context/base/type-xtx.tex
+ texmf-dist/tex/context/base/typo-ini.tex
+ texmf-dist/tex/context/base/unic-000.tex
+ texmf-dist/tex/context/base/unic-001.tex
+ texmf-dist/tex/context/base/unic-002.tex
+ texmf-dist/tex/context/base/unic-003.tex
+ texmf-dist/tex/context/base/unic-004.tex
+ texmf-dist/tex/context/base/unic-005.tex
+ texmf-dist/tex/context/base/unic-030.tex
+ texmf-dist/tex/context/base/unic-031.tex
+ texmf-dist/tex/context/base/unic-032.tex
+ texmf-dist/tex/context/base/unic-033.tex
+ texmf-dist/tex/context/base/unic-034.tex
+ texmf-dist/tex/context/base/unic-037.tex
+ texmf-dist/tex/context/base/unic-039.tex
+ texmf-dist/tex/context/base/unic-251.tex
+ texmf-dist/tex/context/base/unic-cjk.tex
+ texmf-dist/tex/context/base/unic-exp.tex
+ texmf-dist/tex/context/base/unic-ini.tex
+ texmf-dist/tex/context/base/unic-run.tex
+ texmf-dist/tex/context/base/verb-c.tex
+ texmf-dist/tex/context/base/verb-eif.tex
+ texmf-dist/tex/context/base/verb-ini.tex
+ texmf-dist/tex/context/base/verb-js.tex
+ texmf-dist/tex/context/base/verb-jv.tex
+ texmf-dist/tex/context/base/verb-mp.tex
+ texmf-dist/tex/context/base/verb-pas.tex
+ texmf-dist/tex/context/base/verb-pl.tex
+ texmf-dist/tex/context/base/verb-raw.tex
+ texmf-dist/tex/context/base/verb-sql.tex
+ texmf-dist/tex/context/base/verb-tex.tex
+ texmf-dist/tex/context/base/verb-xml.tex
+ texmf-dist/tex/context/base/x-chemml.tex
+ texmf-dist/tex/context/base/x-chemml.xsd
+ texmf-dist/tex/context/base/x-contml.tex
+ texmf-dist/tex/context/base/x-contml.xsd
+ texmf-dist/tex/context/base/x-corres.rng
+ texmf-dist/tex/context/base/x-corres.tex
+ texmf-dist/tex/context/base/x-dir-01.tex
+ texmf-dist/tex/context/base/x-fdf-00.tex
+ texmf-dist/tex/context/base/x-fe.tex
+ texmf-dist/tex/context/base/x-fig-00.dtd
+ texmf-dist/tex/context/base/x-fig-00.tex
+ texmf-dist/tex/context/base/x-fig-00.xsd
+ texmf-dist/tex/context/base/x-fig-01.tex
+ texmf-dist/tex/context/base/x-fig-02.tex
+ texmf-dist/tex/context/base/x-fig-03.tex
+ texmf-dist/tex/context/base/x-fo.tex
+ texmf-dist/tex/context/base/x-foxet.tex
+ texmf-dist/tex/context/base/x-mathml.tex
+ texmf-dist/tex/context/base/x-mathml.xsd
+ texmf-dist/tex/context/base/x-newcml.tex
+ texmf-dist/tex/context/base/x-newmme.tex
+ texmf-dist/tex/context/base/x-newmml.tex
+ texmf-dist/tex/context/base/x-newmmo.tex
+ texmf-dist/tex/context/base/x-newpml.tex
+ texmf-dist/tex/context/base/x-om2cml.xsl
+ texmf-dist/tex/context/base/x-openmath.tex
+ texmf-dist/tex/context/base/x-openmath.xsl
+ texmf-dist/tex/context/base/x-physml.tex
+ texmf-dist/tex/context/base/x-physml.xsd
+ texmf-dist/tex/context/base/x-res-00.tex
+ texmf-dist/tex/context/base/x-res-01.tex
+ texmf-dist/tex/context/base/x-res-02.tex
+ texmf-dist/tex/context/base/x-res-03.tex
+ texmf-dist/tex/context/base/x-res-04.tex
+ texmf-dist/tex/context/base/x-res-08.tex
+ texmf-dist/tex/context/base/x-res-09.tex
+ texmf-dist/tex/context/base/x-res-10.tex
+ texmf-dist/tex/context/base/x-res-11.tex
+ texmf-dist/tex/context/base/x-res-12.tex
+ texmf-dist/tex/context/base/x-res-20.tex
+ texmf-dist/tex/context/base/x-res-50.tex
+ texmf-dist/tex/context/base/x-sch-00.tex
+ texmf-dist/tex/context/base/x-sch-01.tex
+ texmf-dist/tex/context/base/x-set-01.tex
+ texmf-dist/tex/context/base/x-set-02.tex
+ texmf-dist/tex/context/base/x-set-11.tex
+ texmf-dist/tex/context/base/x-set-12.tex
+ texmf-dist/tex/context/base/x-sm2om.xsl
+ texmf-dist/tex/context/base/x-xml-01.tex
+ texmf-dist/tex/context/base/x-xml-02.tex
+ texmf-dist/tex/context/base/x-xml-11.tex
+ texmf-dist/tex/context/base/xtag-cml.tex
+ texmf-dist/tex/context/base/xtag-ent.tex
+ texmf-dist/tex/context/base/xtag-exp.tex
+ texmf-dist/tex/context/base/xtag-ext.tex
+ texmf-dist/tex/context/base/xtag-hyp.tex
+ texmf-dist/tex/context/base/xtag-ini.tex
+ texmf-dist/tex/context/base/xtag-map.tex
+ texmf-dist/tex/context/base/xtag-mea.tex
+ texmf-dist/tex/context/base/xtag-meb.tex
+ texmf-dist/tex/context/base/xtag-mec.tex
+ texmf-dist/tex/context/base/xtag-meh.tex
+ texmf-dist/tex/context/base/xtag-men.tex
+ texmf-dist/tex/context/base/xtag-meo.tex
+ texmf-dist/tex/context/base/xtag-mer.tex
+ texmf-dist/tex/context/base/xtag-mmc.tex
+ texmf-dist/tex/context/base/xtag-mml.tex
+ texmf-dist/tex/context/base/xtag-mmp.tex
+ texmf-dist/tex/context/base/xtag-mxa.tex
+ texmf-dist/tex/context/base/xtag-mxb.tex
+ texmf-dist/tex/context/base/xtag-mxc.tex
+ texmf-dist/tex/context/base/xtag-mxh.tex
+ texmf-dist/tex/context/base/xtag-mxn.tex
+ texmf-dist/tex/context/base/xtag-mxo.tex
+ texmf-dist/tex/context/base/xtag-mxr.tex
+ texmf-dist/tex/context/base/xtag-pml.tex
+ texmf-dist/tex/context/base/xtag-pmu.tex
+ texmf-dist/tex/context/base/xtag-pre.tex
+ texmf-dist/tex/context/base/xtag-prs.tex
+ texmf-dist/tex/context/base/xtag-raw.tex
+ texmf-dist/tex/context/base/xtag-rng.tex
+ texmf-dist/tex/context/base/xtag-run.tex
+ texmf-dist/tex/context/base/xtag-stk.tex
+ texmf-dist/tex/context/base/xtag-utf.tex
+ texmf-dist/tex/context/base/xtag-xsd.tex
+ texmf-dist/tex/context/base/xtag-xsl.tex
+ texmf-dist/tex/context/bib/bibl-ams.tex
+ texmf-dist/tex/context/bib/bibl-apa-de.tex
+ texmf-dist/tex/context/bib/bibl-apa-fr.tex
+ texmf-dist/tex/context/bib/bibl-apa.tex
+ texmf-dist/tex/context/bib/bibl-aps.tex
+ texmf-dist/tex/context/bib/bibl-num-fr.tex
+ texmf-dist/tex/context/bib/bibl-num.tex
+ texmf-dist/tex/context/bib/bibl-ssa.tex
+ texmf-dist/tex/context/bib/t-bib.tex
+ texmf-dist/tex/context/bib/t-bibltx.tex
+ texmf-dist/tex/context/config/cont-cz.ini
+ texmf-dist/tex/context/config/cont-de.ini
+ texmf-dist/tex/context/config/cont-en.ini
+ texmf-dist/tex/context/config/cont-fmt.tex
+ texmf-dist/tex/context/config/cont-fr.ini
+ texmf-dist/tex/context/config/cont-it.ini
+ texmf-dist/tex/context/config/cont-nl.ini
+ texmf-dist/tex/context/config/cont-ro.ini
+ texmf-dist/tex/context/config/cont-uk.ini
+ texmf-dist/tex/context/config/cont-usr.tex
+ texmf-dist/tex/context/extra/mag-0000.tex
+ texmf-dist/tex/context/extra/setup-qr.tex
+ texmf-dist/tex/context/extra/showunic.tex
+ texmf-dist/tex/context/foxet/fe-bryson.xml
+ texmf-dist/tex/context/foxet/fe-ward.xml
+ texmf-dist/tex/context/foxet/fe-zapf.xml
+ texmf-dist/tex/context/foxet/fo-0101.fo
+ texmf-dist/tex/context/foxet/fo-0102.fo
+ texmf-dist/tex/context/foxet/fo-0103.fo
+ texmf-dist/tex/context/foxet/fo-0201.fo
+ texmf-dist/tex/context/foxet/fo-0301.fo
+ texmf-dist/tex/context/foxet/fo-0601.fo
+ texmf-dist/tex/context/foxet/fo-0602.fo
+ texmf-dist/tex/context/foxet/fo-0603.fo
+ texmf-dist/tex/context/foxet/fo-0604.fo
+ texmf-dist/tex/context/foxet/fo-0611.fo
+ texmf-dist/tex/context/foxet/fo-0612.fo
+ texmf-dist/tex/context/foxet/fo-0613.fo
+ texmf-dist/tex/context/foxet/fo-0621.fo
+ texmf-dist/tex/context/foxet/fo-0641.fo
+ texmf-dist/tex/context/foxet/fo-0642.fo
+ texmf-dist/tex/context/foxet/fo-0643.fo
+ texmf-dist/tex/context/foxet/fo-0644.fo
+ texmf-dist/tex/context/foxet/fo-0650.fo
+ texmf-dist/tex/context/foxet/fo-0651.fo
+ texmf-dist/tex/context/foxet/fo-0701.fo
+ texmf-dist/tex/context/foxet/fo-0801.fo
+ texmf-dist/tex/context/foxet/fo-0901.fo
+ texmf-dist/tex/context/foxet/fo-0902.fo
+ texmf-dist/tex/context/foxet/fo-1001.fo
+ texmf-dist/tex/context/foxet/fo-1002.fo
+ texmf-dist/tex/context/foxet/fo-1003.fo
+ texmf-dist/tex/context/foxet/fo-1004.fo
+ texmf-dist/tex/context/foxet/fo-1101.fo
+ texmf-dist/tex/context/foxet/fo-1102.fo
+ texmf-dist/tex/context/foxet/fo-1103.fo
+ texmf-dist/tex/context/foxet/fo-1104.fo
+ texmf-dist/tex/context/foxet/fo-1201.fo
+ texmf-dist/tex/context/interface/cont-cz.xml
+ texmf-dist/tex/context/interface/cont-de.xml
+ texmf-dist/tex/context/interface/cont-en.xml
+ texmf-dist/tex/context/interface/cont-fr.xml
+ texmf-dist/tex/context/interface/cont-it.xml
+ texmf-dist/tex/context/interface/cont-nl.xml
+ texmf-dist/tex/context/interface/cont-ro.xml
+ texmf-dist/tex/context/interface/keys-cz.xml
+ texmf-dist/tex/context/interface/keys-de.xml
+ texmf-dist/tex/context/interface/keys-en.xml
+ texmf-dist/tex/context/interface/keys-fr.xml
+ texmf-dist/tex/context/interface/keys-it.xml
+ texmf-dist/tex/context/interface/keys-nl.xml
+ texmf-dist/tex/context/interface/keys-ro.xml
+ texmf-dist/tex/context/interface/t-bib.xml
+ texmf-dist/tex/context/patterns/lang-agr.hyp
+ texmf-dist/tex/context/patterns/lang-agr.pat
+ texmf-dist/tex/context/patterns/lang-ba.hyp
+ texmf-dist/tex/context/patterns/lang-ba.pat
+ texmf-dist/tex/context/patterns/lang-ca.hyp
+ texmf-dist/tex/context/patterns/lang-ca.pat
+ texmf-dist/tex/context/patterns/lang-cy.hyp
+ texmf-dist/tex/context/patterns/lang-cy.pat
+ texmf-dist/tex/context/patterns/lang-cz.hyp
+ texmf-dist/tex/context/patterns/lang-cz.pat
+ texmf-dist/tex/context/patterns/lang-da.hyp
+ texmf-dist/tex/context/patterns/lang-da.pat
+ texmf-dist/tex/context/patterns/lang-de.hyp
+ texmf-dist/tex/context/patterns/lang-de.pat
+ texmf-dist/tex/context/patterns/lang-deo.hyp
+ texmf-dist/tex/context/patterns/lang-deo.pat
+ texmf-dist/tex/context/patterns/lang-en.hyp
+ texmf-dist/tex/context/patterns/lang-en.pat
+ texmf-dist/tex/context/patterns/lang-es.hyp
+ texmf-dist/tex/context/patterns/lang-es.pat
+ texmf-dist/tex/context/patterns/lang-fi.hyp
+ texmf-dist/tex/context/patterns/lang-fi.pat
+ texmf-dist/tex/context/patterns/lang-fr.hyp
+ texmf-dist/tex/context/patterns/lang-fr.pat
+ texmf-dist/tex/context/patterns/lang-hr.hyp
+ texmf-dist/tex/context/patterns/lang-hr.pat
+ texmf-dist/tex/context/patterns/lang-hu.hyp
+ texmf-dist/tex/context/patterns/lang-hu.pat
+ texmf-dist/tex/context/patterns/lang-is.hyp
+ texmf-dist/tex/context/patterns/lang-is.pat
+ texmf-dist/tex/context/patterns/lang-it.hyp
+ texmf-dist/tex/context/patterns/lang-it.pat
+ texmf-dist/tex/context/patterns/lang-la.hyp
+ texmf-dist/tex/context/patterns/lang-la.pat
+ texmf-dist/tex/context/patterns/lang-nl.hyp
+ texmf-dist/tex/context/patterns/lang-nl.pat
+ texmf-dist/tex/context/patterns/lang-no.hyp
+ texmf-dist/tex/context/patterns/lang-no.pat
+ texmf-dist/tex/context/patterns/lang-pl.hyp
+ texmf-dist/tex/context/patterns/lang-pl.pat
+ texmf-dist/tex/context/patterns/lang-pt.hyp
+ texmf-dist/tex/context/patterns/lang-pt.pat
+ texmf-dist/tex/context/patterns/lang-ro.hyp
+ texmf-dist/tex/context/patterns/lang-ro.pat
+ texmf-dist/tex/context/patterns/lang-ru.hyp
+ texmf-dist/tex/context/patterns/lang-ru.pat
+ texmf-dist/tex/context/patterns/lang-sk.hyp
+ texmf-dist/tex/context/patterns/lang-sk.pat
+ texmf-dist/tex/context/patterns/lang-sl.hyp
+ texmf-dist/tex/context/patterns/lang-sl.pat
+ texmf-dist/tex/context/patterns/lang-sv.hyp
+ texmf-dist/tex/context/patterns/lang-sv.pat
+ texmf-dist/tex/context/patterns/lang-tr.hyp
+ texmf-dist/tex/context/patterns/lang-tr.pat
+ texmf-dist/tex/context/patterns/lang-uk.hyp
+ texmf-dist/tex/context/patterns/lang-uk.pat
+ texmf-dist/tex/context/patterns/lang-us.hyp
+ texmf-dist/tex/context/patterns/lang-us.pat
+ texmf-dist/tex/context/pgf/basiclayer/t-pgf.tex
+ texmf-dist/tex/context/pgf/basiclayer/t-pgfbim.tex
+ texmf-dist/tex/context/pgf/basiclayer/t-pgfbla.tex
+ texmf-dist/tex/context/pgf/basiclayer/t-pgfbma.tex
+ texmf-dist/tex/context/pgf/basiclayer/t-pgfbpl.tex
+ texmf-dist/tex/context/pgf/basiclayer/t-pgfbpt.tex
+ texmf-dist/tex/context/pgf/basiclayer/t-pgfbsh.tex
+ texmf-dist/tex/context/pgf/basiclayer/t-pgfbsn.tex
+ texmf-dist/tex/context/pgf/basiclayer/t-pgfcor.tex
+ texmf-dist/tex/context/pgf/frontendlayer/t-tikz.tex
+ texmf-dist/tex/context/pgf/math/t-pgfmat.tex
+ texmf-dist/tex/context/pgf/systemlayer/t-pgfsys.tex
+ texmf-dist/tex/context/pgf/utilities/t-pgfcal.tex
+ texmf-dist/tex/context/pgf/utilities/t-pgffor.tex
+ texmf-dist/tex/context/pgf/utilities/t-pgfmod.tex
+ texmf-dist/tex/context/pgf/utilities/t-pgfrcs.tex
+ texmf-dist/tex/context/sample/aesop-de.tex
+ texmf-dist/tex/context/sample/bryson.tex
+ texmf-dist/tex/context/sample/davis.tex
+ texmf-dist/tex/context/sample/dawkins.tex
+ texmf-dist/tex/context/sample/demo-mps.tex
+ texmf-dist/tex/context/sample/demo-tex.tex
+ texmf-dist/tex/context/sample/demo-xml.tex
+ texmf-dist/tex/context/sample/douglas.tex
+ texmf-dist/tex/context/sample/hawking.tex
+ texmf-dist/tex/context/sample/knuth.tex
+ texmf-dist/tex/context/sample/materie.tex
+ texmf-dist/tex/context/sample/reich.tex
+ texmf-dist/tex/context/sample/sample.tex
+ texmf-dist/tex/context/sample/thuan.tex
+ texmf-dist/tex/context/sample/tufte.tex
+ texmf-dist/tex/context/sample/ward.tex
+ texmf-dist/tex/context/sample/zapf.tex
+ texmf-dist/tex/context/user/cont-sys.rme
+ texmf-dist/tex/generic/context/m-ch-de.tex
+ texmf-dist/tex/generic/context/m-ch-en.tex
+ texmf-dist/tex/generic/context/m-ch-nl.tex
+ texmf-dist/tex/generic/context/m-metapo.tex
+ texmf-dist/tex/generic/context/mptopdf.tex
+ texmf-dist/tex/generic/context/ppchtex.noc
+ texmf-dist/tex/latex/context/m-ch-de.sty
+ texmf-dist/tex/latex/context/m-ch-en.sty
+ texmf-dist/tex/latex/context/m-ch-nl.sty
+ texmf-dist/tex/latex/context/m-metapo.sty
+ texmf-dist/tex/latex/context/m-pictex.sty
+catalogue-version
+catalogue-date 2007-10-01 14:11:07 +0200
+catalogue-ctan /macros/context/current
+catalogue-license nocommercial
+
+name contour
+category Package
+revision 786
+shortdesc Print a coloured contour around text.
+longdesc This package generates a coloured contour around a given text
+longdesc in order to enable printing text over a background without the
+longdesc need of a coloured box around the text.
+docfiles size=201348
+ texmf-dist/doc/latex/contour/ChangeLog
+ texmf-dist/doc/latex/contour/README details="Package Readme"
+ texmf-dist/doc/latex/contour/contour.pdf details="Package documentation"
+ texmf-dist/doc/latex/contour/contourtest.pdf
+ texmf-dist/doc/latex/contour/contourtest.tex
+srcfiles size=29595
+ texmf-dist/source/latex/contour/Makefile
+ texmf-dist/source/latex/contour/contour.dtx
+ texmf-dist/source/latex/contour/contour.ins
+runfiles size=9885
+ texmf-dist/tex/latex/contour/contour.cfg
+ texmf-dist/tex/latex/contour/contour.sty
+ texmf-dist/tex/latex/contour/dvips.cnt
+ texmf-dist/tex/latex/contour/dvipsone.cnt
+ texmf-dist/tex/latex/contour/pdftex.cnt
+ texmf-dist/tex/latex/contour/vtex.cnt
+catalogue-version 2.14
+catalogue-date 2006-12-09 15:50:57 +0100
+catalogue-ctan /macros/latex/contrib/contour
+catalogue-license lppl
+
+name cooking
+category Package
+revision 2663
+shortdesc Typeset recipes.
+longdesc The package typesets recipes according to the style used in a
+longdesc well-respected German cookery book.
+docfiles size=94217
+ texmf-dist/doc/latex/cooking/COPYING
+ texmf-dist/doc/latex/cooking/README details="Package Readme"
+ texmf-dist/doc/latex/cooking/cooking.pdf details="Package documentation"
+ texmf-dist/doc/latex/cooking/kraut.tex
+srcfiles size=22215
+ texmf-dist/source/latex/cooking/cooking.dtx
+ texmf-dist/source/latex/cooking/cooking.ins
+runfiles size=3302
+ texmf-dist/tex/latex/cooking/cooking.sty
+catalogue-version 0.9b
+catalogue-date 2006-12-09 15:50:57 +0100
+catalogue-ctan /macros/latex/contrib/cooking
+catalogue-license gpl
+
+name cool
+category Package
+revision 3072
+shortdesc COntent-Oriented LaTeX.
+longdesc The package gives LaTeX the power to retain mathematical
+longdesc meaning of its expressions in addition to the typsetting
+longdesc instructions; essentially separating style from the content of
+longdesc the math. One advantage of keeping mathematical meaning is that
+longdesc conversion of LaTeX documents to other executable formats (such
+longdesc as Content MathML or Mathematica code) is greatly simplified.
+longdesc The package requires the coolstr, coollist and forloop
+longdesc packages.
+docfiles size=573564
+ texmf-dist/doc/latex/cool/Content_LaTeX_Package_Demo.pdf details="EXamples of use"
+ texmf-dist/doc/latex/cool/Content_LaTeX_Package_Demo.tex
+ texmf-dist/doc/latex/cool/README details="Package README"
+ texmf-dist/doc/latex/cool/cool.pdf details="Package documentation"
+srcfiles size=185316
+ texmf-dist/source/latex/cool/cool.dtx
+ texmf-dist/source/latex/cool/cool.ins
+runfiles size=76030
+ texmf-dist/tex/latex/cool/cool.sty
+catalogue-version 1.35
+catalogue-date 2007-03-05 15:26:58 +0100
+catalogue-ctan /macros/latex/contrib/cool
+catalogue-license lgpl
+
+name coollist
+category Package
+revision 5448
+shortdesc Manipulate COntent Oriented LaTeX Lists.
+longdesc Lists are defined as a sequence of tokens separated by a comma.
+longdesc The coollist package allows the user to access certain elements
+longdesc of the list while neglecting others—essentially turning lists
+longdesc into a sort of array. Lists elements are accessed by specifying
+longdesc the position of the object within the list (the index of the
+longdesc item).
+docfiles size=121708
+ texmf-dist/doc/latex/coollist/README
+ texmf-dist/doc/latex/coollist/coollist.pdf details="Package documentation"
+srcfiles size=27687
+ texmf-dist/source/latex/coollist/coollist.dtx
+ texmf-dist/source/latex/coollist/coollist.ins
+runfiles size=7199
+ texmf-dist/tex/latex/coollist/coollist.sty
+catalogue-version 1.2
+catalogue-date 2007-10-11 10:23:14 +0200
+catalogue-ctan /macros/latex/contrib/coollist
+catalogue-license lgpl
+
+name coolstr
+category Package
+revision 5435
+shortdesc String manipulation in LaTeX.
+longdesc Coolstr is a subpackage of the cool bundle that deals with the
+longdesc manipulation of strings. A string is defined as a sequence of
+longdesc characters (not tokens). The package provides the ability to
+longdesc access a specific character of a string, as well as determine
+longdesc if the string contains numeric or integer data.
+docfiles size=135468
+ texmf-dist/doc/latex/coolstr/README details="Readme"
+ texmf-dist/doc/latex/coolstr/coolstr.pdf details="Package documentation"
+srcfiles size=29836
+ texmf-dist/source/latex/coolstr/coolstr.dtx
+ texmf-dist/source/latex/coolstr/coolstr.ins
+runfiles size=8368
+ texmf-dist/tex/latex/coolstr/coolstr.sty
+catalogue-version 2.1
+catalogue-date 2007-03-05 15:26:58 +0100
+catalogue-ctan /macros/latex/contrib/coolstr
+catalogue-license lgpl
+
+name cooltooltips
+category Package
+revision 1865
+shortdesc Associate a pop-up window and tooltip with PDF hyperlinks.
+longdesc The cooltooltips package enables a document to contain
+longdesc hyperlinks that pop up a brief tooltip when the mouse moves
+longdesc over them and also open a small window containing additional
+longdesc text. cooltooltips provides the mechanism used by the Visual
+longdesc LaTeX FAQ to indicate the question that each hyperlink answers.
+docfiles size=227854
+ texmf-dist/doc/latex/cooltooltips/README details="Readme"
+ texmf-dist/doc/latex/cooltooltips/cooltooltips.pdf details="Package documentation"
+srcfiles size=31406
+ texmf-dist/source/latex/cooltooltips/cooltooltips.dtx
+ texmf-dist/source/latex/cooltooltips/cooltooltips.ins
+runfiles size=6112
+ texmf-dist/tex/latex/cooltooltips/cooltooltips.sty
+catalogue-version 1.0
+catalogue-date 2007-03-05 15:26:58 +0100
+catalogue-ctan /macros/latex/contrib/cooltooltips
+catalogue-license lppl
+
+name coordsys
+category Package
+revision 2411
+shortdesc Draw cartesian coordinate systems.
+longdesc The package provides commands for typesetting number lines
+longdesc (coordinate axes), coordinate systems and grids in the picture
+longdesc environment. The package may be integrated with other drawing
+longdesc mechanisms: the documentation shows examples of drawing graphs
+longdesc (coordinate tables created by Maple), using the eepic package's
+longdesc drawing capabilities.
+docfiles size=346702
+ texmf-dist/doc/latex/coordsys/README details="Bundle Readme"
+ texmf-dist/doc/latex/coordsys/coordsys.pdf details="Bundle documentation"
+ texmf-dist/doc/latex/coordsys/putfile.
+srcfiles size=115166
+ texmf-dist/source/latex/coordsys/coordsys.dtx
+ texmf-dist/source/latex/coordsys/coordsys.ins
+runfiles size=32033
+ texmf-dist/tex/latex/coordsys/coordsys.sty
+ texmf-dist/tex/latex/coordsys/logsys.sty
+catalogue-version 1.4
+catalogue-date 2007-02-20 10:49:06 +0100
+catalogue-ctan /macros/latex/contrib/coordsys
+catalogue-license lppl
+
+name coronet
+category Package
+revision 90
+runfiles size=13396
+ texmf-dist/fonts/tfm/cg/coronet/cor10u.tfm
+ texmf-dist/fonts/tfm/cg/coronet/cor6j.tfm
+ texmf-dist/fonts/tfm/cg/coronet/cor7j.tfm
+ texmf-dist/fonts/tfm/cg/coronet/cor8u.tfm
+ texmf-dist/fonts/tfm/cg/coronet/cotr.tfm
+ texmf-dist/fonts/tfm/cg/coronet/cotr8t.tfm
+ texmf-dist/fonts/vf/cg/coronet/cotr.vf
+ texmf-dist/fonts/vf/cg/coronet/cotr8t.vf
+
+name courier
+category Package
+revision 2488
+runfiles size=1254943
+ texmf-dist/dvips/courier/config.ucr
+ texmf-dist/fonts/afm/adobe/courier/pcrb8a.afm
+ texmf-dist/fonts/afm/adobe/courier/pcrbo8a.afm
+ texmf-dist/fonts/afm/adobe/courier/pcrr8a.afm
+ texmf-dist/fonts/afm/adobe/courier/pcrro8a.afm
+ texmf-dist/fonts/afm/ibm/courier/cour.afm
+ texmf-dist/fonts/afm/ibm/courier/courb.afm
+ texmf-dist/fonts/afm/ibm/courier/courbi.afm
+ texmf-dist/fonts/afm/ibm/courier/couri.afm
+ texmf-dist/fonts/afm/ibm/courier/cr-pc8.afm
+ texmf-dist/fonts/afm/ibm/courier/crb-pc8.afm
+ texmf-dist/fonts/afm/ibm/courier/crbi-pc8.afm
+ texmf-dist/fonts/afm/ibm/courier/cri-pc8.afm
+ texmf-dist/fonts/afm/urw/courier/ucrb8a.afm
+ texmf-dist/fonts/afm/urw/courier/ucrbo8a.afm
+ texmf-dist/fonts/afm/urw/courier/ucrr8a.afm
+ texmf-dist/fonts/afm/urw/courier/ucrro8a.afm
+ texmf-dist/fonts/map/dvips/courier/ucr.map
+ texmf-dist/fonts/tfm/adobe/courier/pcrb.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrb7t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrb8c.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrb8r.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrb8t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrb8y.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrbc.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrbc7t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrbc8t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrbo.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrbo7t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrbo8c.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrbo8r.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrbo8t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrbo8y.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrr.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrr7t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrr8c.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrr8r.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrr8t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrr8y.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrrc.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrrc7t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrrc8t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrro.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrro7t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrro8c.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrro8r.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrro8t.tfm
+ texmf-dist/fonts/tfm/adobe/courier/pcrro8y.tfm
+ texmf-dist/fonts/tfm/adobe/courier/rpcrb.tfm
+ texmf-dist/fonts/tfm/adobe/courier/rpcrbo.tfm
+ texmf-dist/fonts/tfm/adobe/courier/rpcrr.tfm
+ texmf-dist/fonts/tfm/adobe/courier/rpcrro.tfm
+ texmf-dist/fonts/tfm/cg/courier/ccrb.tfm
+ texmf-dist/fonts/tfm/cg/courier/ccrb8t.tfm
+ texmf-dist/fonts/tfm/cg/courier/ccrbi.tfm
+ texmf-dist/fonts/tfm/cg/courier/ccrbi8t.tfm
+ texmf-dist/fonts/tfm/cg/courier/ccrr.tfm
+ texmf-dist/fonts/tfm/cg/courier/ccrr8t.tfm
+ texmf-dist/fonts/tfm/cg/courier/ccrri.tfm
+ texmf-dist/fonts/tfm/cg/courier/ccrri8t.tfm
+ texmf-dist/fonts/tfm/cg/courier/crb10u.tfm
+ texmf-dist/fonts/tfm/cg/courier/crb2n.tfm
+ texmf-dist/fonts/tfm/cg/courier/crb6j.tfm
+ texmf-dist/fonts/tfm/cg/courier/crb7j.tfm
+ texmf-dist/fonts/tfm/cg/courier/crb8u.tfm
+ texmf-dist/fonts/tfm/cg/courier/crb9t.tfm
+ texmf-dist/fonts/tfm/cg/courier/cri10u.tfm
+ texmf-dist/fonts/tfm/cg/courier/cri2n.tfm
+ texmf-dist/fonts/tfm/cg/courier/cri6j.tfm
+ texmf-dist/fonts/tfm/cg/courier/cri7j.tfm
+ texmf-dist/fonts/tfm/cg/courier/cri8u.tfm
+ texmf-dist/fonts/tfm/cg/courier/cri9t.tfm
+ texmf-dist/fonts/tfm/cg/courier/crj10u.tfm
+ texmf-dist/fonts/tfm/cg/courier/crj2n.tfm
+ texmf-dist/fonts/tfm/cg/courier/crj6j.tfm
+ texmf-dist/fonts/tfm/cg/courier/crj7j.tfm
+ texmf-dist/fonts/tfm/cg/courier/crj8u.tfm
+ texmf-dist/fonts/tfm/cg/courier/crj9t.tfm
+ texmf-dist/fonts/tfm/cg/courier/crr10u.tfm
+ texmf-dist/fonts/tfm/cg/courier/crr2n.tfm
+ texmf-dist/fonts/tfm/cg/courier/crr6j.tfm
+ texmf-dist/fonts/tfm/cg/courier/crr7j.tfm
+ texmf-dist/fonts/tfm/cg/courier/crr8u.tfm
+ texmf-dist/fonts/tfm/cg/courier/crr9t.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/courier/pcrb8u.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/courier/pcrbc8u.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/courier/pcrbo8u.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/courier/pcrr8u.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/courier/pcrrc8u.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/courier/pcrro8u.tfm
+ texmf-dist/fonts/tfm/groff/courier/pcrb8g.tfm
+ texmf-dist/fonts/tfm/groff/courier/pcrbo8g.tfm
+ texmf-dist/fonts/tfm/groff/courier/pcrr8g.tfm
+ texmf-dist/fonts/tfm/groff/courier/pcrro8g.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrb7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrb8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrb8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrb8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrbc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrbc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrbo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrbo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrbo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrbo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrr7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrr8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrr8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrr8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrrc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrrc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrro7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrro8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrro8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/courier/ucrro8t.tfm
+ texmf-dist/fonts/type1/adobe/courier/pcrb8a.pfb
+ texmf-dist/fonts/type1/adobe/courier/pcrbi8a.pfb
+ texmf-dist/fonts/type1/adobe/courier/pcrbo8a.pfb
+ texmf-dist/fonts/type1/adobe/courier/pcri8a.pfb
+ texmf-dist/fonts/type1/adobe/courier/pcrr8a.pfb
+ texmf-dist/fonts/type1/adobe/courier/pcrro8a.pfb
+ texmf-dist/fonts/type1/urw/courier/ucrb8a.pfb
+ texmf-dist/fonts/type1/urw/courier/ucrb8a.pfm
+ texmf-dist/fonts/type1/urw/courier/ucrbo8a.pfb
+ texmf-dist/fonts/type1/urw/courier/ucrbo8a.pfm
+ texmf-dist/fonts/type1/urw/courier/ucrr8a.pfb
+ texmf-dist/fonts/type1/urw/courier/ucrr8a.pfm
+ texmf-dist/fonts/type1/urw/courier/ucrro8a.pfb
+ texmf-dist/fonts/type1/urw/courier/ucrro8a.pfm
+ texmf-dist/fonts/vf/adobe/courier/pcrb.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrb7t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrb8c.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrb8t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrbc.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrbc7t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrbc8t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrbo.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrbo7t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrbo8c.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrbo8t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrr.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrr7t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrr8c.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrr8t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrrc.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrrc7t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrrc8t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrro.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrro7t.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrro8c.vf
+ texmf-dist/fonts/vf/adobe/courier/pcrro8t.vf
+ texmf-dist/fonts/vf/cg/courier/ccrb.vf
+ texmf-dist/fonts/vf/cg/courier/ccrb8t.vf
+ texmf-dist/fonts/vf/cg/courier/ccrbi.vf
+ texmf-dist/fonts/vf/cg/courier/ccrbi8t.vf
+ texmf-dist/fonts/vf/cg/courier/ccrr.vf
+ texmf-dist/fonts/vf/cg/courier/ccrr8t.vf
+ texmf-dist/fonts/vf/cg/courier/ccrri.vf
+ texmf-dist/fonts/vf/cg/courier/ccrri8t.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/courier/pcrb8u.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/courier/pcrbc8u.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/courier/pcrbo8u.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/courier/pcrr8u.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/courier/pcrrc8u.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/courier/pcrro8u.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrb7t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrb8c.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrb8t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrbc7t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrbc8t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrbo7t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrbo8c.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrbo8t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrr7t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrr8c.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrr8t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrrc7t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrrc8t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrro7t.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrro8c.vf
+ texmf-dist/fonts/vf/urw35vf/courier/ucrro8t.vf
+ texmf-dist/tex/latex/courier/8rucr.fd
+ texmf-dist/tex/latex/courier/omlucr.fd
+ texmf-dist/tex/latex/courier/omsucr.fd
+ texmf-dist/tex/latex/courier/ot1ucr.fd
+ texmf-dist/tex/latex/courier/t1ucr.fd
+ texmf-dist/tex/latex/courier/ts1ucr.fd
+
+name courier-scaled
+category Package
+revision 1477
+docfiles size=57167
+ texmf-dist/doc/latex/courier-scaled/Couriers.pdf
+ texmf-dist/doc/latex/courier-scaled/README
+runfiles size=9783
+ texmf-dist/tex/latex/courier-scaled/8rpcrs.fd
+ texmf-dist/tex/latex/courier-scaled/couriers.sty
+ texmf-dist/tex/latex/courier-scaled/il2pcrs.fd
+ texmf-dist/tex/latex/courier-scaled/ly1pcrs.fd
+ texmf-dist/tex/latex/courier-scaled/omlpcrs.fd
+ texmf-dist/tex/latex/courier-scaled/omspcrs.fd
+ texmf-dist/tex/latex/courier-scaled/ot1pcrs.fd
+ texmf-dist/tex/latex/courier-scaled/t1pcrs.fd
+ texmf-dist/tex/latex/courier-scaled/t5pcrs.fd
+ texmf-dist/tex/latex/courier-scaled/ts1pcrs.fd
+ texmf-dist/tex/latex/courier-scaled/xl2pcrs.fd
+
+name courseoutline
+category Package
+revision 792
+shortdesc Prepare university course outlines.
+longdesc Courseoutline is a class designed to minimise markup in a
+longdesc tedious task that needs to be repeated often.
+docfiles size=6112
+ texmf-dist/doc/latex/courseoutline/Outline.tex
+runfiles size=10114
+ texmf-dist/tex/latex/courseoutline/courseoutline.cls
+catalogue-version 1.0
+catalogue-date 2006-12-09 15:50:57 +0100
+catalogue-ctan /macros/latex/contrib/courseoutline
+catalogue-license unknown
+
+name coursepaper
+category Package
+revision 793
+shortdesc Prepare university course papers.
+longdesc Coursepaper is a class with which students can provide simple
+longdesc course papers, in a uniform design to ease the task of marking.
+docfiles size=4512
+ texmf-dist/doc/latex/coursepaper/coursepaper.tex
+runfiles size=12345
+ texmf-dist/tex/latex/coursepaper/coursepaper.cls
+catalogue-version 2.0
+catalogue-date 2006-12-09 15:50:57 +0100
+catalogue-ctan /macros/latex/contrib/coursepaper
+catalogue-license unknown
+
+name coverpage
+category Package
+revision 1906
+shortdesc Automatic cover page creation for scientific papers (with BibTeX data and copyright notice).
+longdesc The package CoverPage was created to supplement scientific
+longdesc papers with a cover page containing bibliographical
+longdesc information, a copyright notice, and/or some logos of the
+longdesc author's institution. The cover page is created (almost)
+longdesc automatically; this is done by parsing BibTeX information
+longdesc corresponding to the main document and reading a configuration
+longdesc file in which the author can set information like the
+longdesc affiliation he or she is associated with. The cover page
+longdesc consists of header, body and footer; all three are macros which
+longdesc can be redefined using \renewcommand, thus allowing easy
+longdesc customization of the package. Additionally, it should be
+longdesc stressed that the cover page layout is totally independent of
+longdesc the main document and its page layout. This package requires
+longdesc four other packages (keyval, url, textcomp, and verbatim), but
+longdesc all of them are standard packages and should be part of every
+longdesc LaTeX installation.
+docfiles size=336157
+ texmf-dist/doc/latex/coverpage/CoverPage.pdf details="Package documentation:"
+ texmf-dist/doc/latex/coverpage/ECCV06Sample.pdf details="Another sample:"
+ texmf-dist/doc/latex/coverpage/README details="README file"
+ texmf-dist/doc/latex/coverpage/SimpleSample.BibTeX.txt
+ texmf-dist/doc/latex/coverpage/SimpleSample.pdf details="Simple sample:"
+ texmf-dist/doc/latex/coverpage/SimpleSample.tex
+srcfiles size=33010
+ texmf-dist/source/latex/coverpage/CoverPage.dtx
+ texmf-dist/source/latex/coverpage/CoverPage.ins
+runfiles size=8298
+ texmf-dist/tex/latex/coverpage/CoverPage.cfg
+ texmf-dist/tex/latex/coverpage/CoverPage.sty
+catalogue-version 1.01
+catalogue-date 2007-03-05 15:26:58 +0100
+catalogue-ctan /macros/latex/contrib/coverpage
+catalogue-license lppl
+
+name covington
+category Package
+revision 1487
+shortdesc Linguistic support.
+longdesc Numerous minor LaTeX enhancements for linguistics, including
+longdesc multiple accents on the same letter, interline glosses (word-
+longdesc by-word translations), Discourse Representation Structures, and
+longdesc example numbering.
+docfiles size=40336
+ texmf-dist/doc/latex/covington/covington.dvi
+ texmf-dist/doc/latex/covington/covington.tex
+runfiles size=14945
+ texmf-dist/tex/latex/covington/covington.sty
+catalogue-version
+catalogue-date 2006-12-02 12:02:27 +0100
+catalogue-ctan /macros/latex/contrib/covington
+catalogue-license pd
+
+name croatian
+category Package
+revision 621
+shortdesc Fonts for Croatian Glagolitic and other Croatian scripts.
+longdesc The package provides several fonts: Croatian Glagolitic
+longdesc (round—sometimes called Bulgarian Glagolitic, angular, Baška
+longdesc tablet, cursive, ligatures, the Baromić broken ligatures,
+longdesc calligraphic), Croatian Cyrillic, stećak ornaments and
+longdesc Croatian wattle patterns. The fonts are provided as MetaFont
+longdesc source; some Plain TeX macro support is provided, including
+longdesc hyphenation patterns.
+docfiles size=19579
+ texmf-dist/doc/fonts/croatian/crogl.tex
+ texmf-dist/doc/fonts/croatian/readme.txt
+runfiles size=289619
+ texmf-dist/fonts/source/public/croatian/bass.mf
+ texmf-dist/fonts/source/public/croatian/bass10.mf
+ texmf-dist/fonts/source/public/croatian/basscc.mf
+ texmf-dist/fonts/source/public/croatian/cal.mf
+ texmf-dist/fonts/source/public/croatian/cal10.mf
+ texmf-dist/fonts/source/public/croatian/croatian-i.mf
+ texmf-dist/fonts/source/public/croatian/croblm.mf
+ texmf-dist/fonts/source/public/croatian/croblv.mf
+ texmf-dist/fonts/source/public/croatian/crocyrm.mf
+ texmf-dist/fonts/source/public/croatian/crocyrv.mf
+ texmf-dist/fonts/source/public/croatian/gg.mf
+ texmf-dist/fonts/source/public/croatian/gg10.mf
+ texmf-dist/fonts/source/public/croatian/ggv.mf
+ texmf-dist/fonts/source/public/croatian/ggv1.mf
+ texmf-dist/fonts/source/public/croatian/glz.mf
+ texmf-dist/fonts/source/public/croatian/hcyr.mf
+ texmf-dist/fonts/source/public/croatian/kraj.mf
+ texmf-dist/fonts/source/public/croatian/kur.mf
+ texmf-dist/fonts/source/public/croatian/kurzivm.mf
+ texmf-dist/fonts/source/public/croatian/kurzivv.mf
+ texmf-dist/fonts/source/public/croatian/lom.mf
+ texmf-dist/fonts/source/public/croatian/lomm.mf
+ texmf-dist/fonts/source/public/croatian/lomv.mf
+ texmf-dist/fonts/source/public/croatian/obl.mf
+ texmf-dist/fonts/source/public/croatian/obl10.mf
+ texmf-dist/fonts/source/public/croatian/oblm.mf
+ texmf-dist/fonts/source/public/croatian/oblv.mf
+ texmf-dist/fonts/source/public/croatian/ple.mf
+ texmf-dist/fonts/source/public/croatian/plet.mf
+ texmf-dist/fonts/source/public/croatian/pleter.mf
+ texmf-dist/fonts/source/public/croatian/stechak.mf
+ texmf-dist/fonts/source/public/croatian/ugl.mf
+ texmf-dist/fonts/source/public/croatian/ugl10.mf
+ texmf-dist/fonts/source/public/croatian/ugv.mf
+ texmf-dist/fonts/source/public/croatian/ugve.mf
+ texmf-dist/tex/plain/croatian/glhyphen.tex
+ texmf-dist/tex/plain/croatian/llig.tex
+ texmf-dist/tex/plain/croatian/ste.tex
+ texmf-dist/tex/plain/croatian/ttabl.tex
+ texmf-dist/tex/plain/croatian/ttablb.tex
+ texmf-dist/tex/plain/croatian/ttablhc.tex
+ texmf-dist/tex/plain/croatian/ttablo.tex
+ texmf-dist/tex/plain/croatian/ttabloku.tex
+ texmf-dist/tex/plain/croatian/ttlis.tex
+catalogue-version
+catalogue-date 2007-01-01 17:45:33 +0100
+catalogue-ctan /language/croatian/fonts
+catalogue-license unknown
+
+name crop
+category Package
+revision 795
+shortdesc Support for cropmarks.
+longdesc A package providing corner marks for camera alignment as well
+longdesc as for trimming paper stacks, and additional page information
+longdesc on every page if required. Most macros are easily adaptable to
+longdesc personal preferences. An option is provided for selectively
+longdesc suppressing graphics or text, which may be useful for printing
+longdesc just colour graphics on a colour laser printer and the rest on
+longdesc a cheap mono laser printer. A page info line contains the time
+longdesc and a new cropmarks index and is printed at the top of the
+longdesc page. A configuration command is provided for the info line
+longdesc font. Options for better collaboration with dvips, pdftex and
+longdesc vtex are provided.
+docfiles size=243347
+ texmf-dist/doc/latex/crop/crop.pdf
+ texmf-dist/doc/latex/crop/crop.txt
+srcfiles size=67463
+ texmf-dist/source/latex/crop/Makefile
+ texmf-dist/source/latex/crop/crop.dtx
+ texmf-dist/source/latex/crop/crop.ins
+runfiles size=17647
+ texmf-dist/tex/latex/crop/crop.sty
+catalogue-version 1.5
+catalogue-date 2007-01-01 17:45:33 +0100
+catalogue-ctan /macros/latex/contrib/crop
+catalogue-license lppl
+
+name crossreference
+category Package
+revision 3108
+shortdesc Crossreferences within documents.
+longdesc The package defines cross-references (essentially ‘grand’
+longdesc label references), which may be listed in a table of cross-
+longdesc references.
+docfiles size=61126
+ texmf-dist/doc/latex/crossreference/README details="Readme"
+ texmf-dist/doc/latex/crossreference/crossreference.pdf details="Package documentation"
+ texmf-dist/doc/latex/crossreference/xrefexample.tex
+srcfiles size=6929
+ texmf-dist/source/latex/crossreference/crossreference.drv
+ texmf-dist/source/latex/crossreference/crossreference.dtx
+ texmf-dist/source/latex/crossreference/crossreference.ins
+runfiles size=2643
+ texmf-dist/tex/latex/crossreference/crossreference.sty
+catalogue-version
+catalogue-date 2007-01-01 17:45:33 +0100
+catalogue-ctan /macros/latex/contrib/crossreference
+catalogue-license lppl
+
+name crosswrd
+category Package
+revision 1487
+shortdesc Macros for typesetting crossword puzzles.
+longdesc The package provides a LaTeX method of typesetting crosswords,
+longdesc and assists the composer ensure that the grid all goes together
+longdesc properly. Brian Hamilton Kelly's original was written for LaTeX
+longdesc 2.09, and needed to be updated to run with current LaTeX.
+docfiles size=81611
+ texmf-dist/doc/latex/crosswrd/crosswrd.dvi
+ texmf-dist/doc/latex/crosswrd/grid0.tex
+ texmf-dist/doc/latex/crosswrd/grid1.tex
+ texmf-dist/doc/latex/crosswrd/test0.tex
+ texmf-dist/doc/latex/crosswrd/test1.tex
+srcfiles size=59249
+ texmf-dist/source/latex/crosswrd/00readme
+ texmf-dist/source/latex/crosswrd/crosswrd.dtx
+ texmf-dist/source/latex/crosswrd/crosswrd.ins
+runfiles size=7684
+ texmf-dist/tex/latex/crosswrd/crosswrd.sty
+catalogue-version 2.8b
+catalogue-date 2006-12-09 15:50:57 +0100
+catalogue-ctan /macros/latex/contrib/crosswrd
+catalogue-license unknown
+
+name cryst
+category Package
+revision 1487
+shortdesc Font for symmetry elements in crystallography.
+longdesc The font is in MetaFont source; a LaTeX .fd file for its use is
+longdesc also provided.
+docfiles size=30681
+ texmf-dist/doc/fonts/cryst/cryst.dvi details="Package documentation (DVI)" language="de"
+ texmf-dist/doc/fonts/cryst/cryst.ger details="Package documentation (text)" language="de"
+ texmf-dist/doc/fonts/cryst/cryst.tex
+runfiles size=52174
+ texmf-dist/fonts/source/public/cryst/cryst.mf
+ texmf-dist/fonts/tfm/public/cryst/cryst.tfm
+ texmf-dist/tex/latex/cryst/ucrys.fd
+catalogue-version
+catalogue-date 2007-09-14 23:08:22 +0200
+catalogue-ctan /fonts/cryst
+catalogue-license other-free
+
+name cs
+category Package
+revision 101
+execute addMixedMap csother.map
+execute addMixedMap cstext.map
+runfiles size=2319088
+ texmf-dist/dvips/cs/config.cs
+ texmf-dist/fonts/enc/dvips/cs/csin.enc
+ texmf-dist/fonts/enc/dvips/cs/csr.enc
+ texmf-dist/fonts/enc/dvips/cs/csr1.enc
+ texmf-dist/fonts/enc/dvips/cs/cstt.enc
+ texmf-dist/fonts/map/dvips/cs/csfont-e.map
+ texmf-dist/fonts/map/dvips/cs/csother.map
+ texmf-dist/fonts/map/dvips/cs/cstext.map
+ texmf-dist/fonts/source/public/cs/csaccent.mf
+ texmf-dist/fonts/source/public/cs/csacutl.mf
+ texmf-dist/fonts/source/public/cs/csacutu.mf
+ texmf-dist/fonts/source/public/cs/csadded.mf
+ texmf-dist/fonts/source/public/cs/csb10.mf
+ texmf-dist/fonts/source/public/cs/csb12.mf
+ texmf-dist/fonts/source/public/cs/csb17.mf
+ texmf-dist/fonts/source/public/cs/csb5.mf
+ texmf-dist/fonts/source/public/cs/csb6.mf
+ texmf-dist/fonts/source/public/cs/csb7.mf
+ texmf-dist/fonts/source/public/cs/csb8.mf
+ texmf-dist/fonts/source/public/cs/csb9.mf
+ texmf-dist/fonts/source/public/cs/csbx10.mf
+ texmf-dist/fonts/source/public/cs/csbx12.mf
+ texmf-dist/fonts/source/public/cs/csbx5.mf
+ texmf-dist/fonts/source/public/cs/csbx6.mf
+ texmf-dist/fonts/source/public/cs/csbx7.mf
+ texmf-dist/fonts/source/public/cs/csbx8.mf
+ texmf-dist/fonts/source/public/cs/csbx9.mf
+ texmf-dist/fonts/source/public/cs/csbxsl10.mf
+ texmf-dist/fonts/source/public/cs/csbxsl12.mf
+ texmf-dist/fonts/source/public/cs/csbxsl5.mf
+ texmf-dist/fonts/source/public/cs/csbxsl6.mf
+ texmf-dist/fonts/source/public/cs/csbxsl7.mf
+ texmf-dist/fonts/source/public/cs/csbxsl8.mf
+ texmf-dist/fonts/source/public/cs/csbxsl9.mf
+ texmf-dist/fonts/source/public/cs/csbxti10.mf
+ texmf-dist/fonts/source/public/cs/csbxti12.mf
+ texmf-dist/fonts/source/public/cs/csbxti17.mf
+ texmf-dist/fonts/source/public/cs/cscode.mf
+ texmf-dist/fonts/source/public/cs/cscsc10.mf
+ texmf-dist/fonts/source/public/cs/cscsc12.mf
+ texmf-dist/fonts/source/public/cs/cscsc17.mf
+ texmf-dist/fonts/source/public/cs/cscsc8.mf
+ texmf-dist/fonts/source/public/cs/cscsc9.mf
+ texmf-dist/fonts/source/public/cs/csdunh10.mf
+ texmf-dist/fonts/source/public/cs/csdunh12.mf
+ texmf-dist/fonts/source/public/cs/csdunh17.mf
+ texmf-dist/fonts/source/public/cs/csdunh5.mf
+ texmf-dist/fonts/source/public/cs/csdunh6.mf
+ texmf-dist/fonts/source/public/cs/csdunh7.mf
+ texmf-dist/fonts/source/public/cs/csdunh8.mf
+ texmf-dist/fonts/source/public/cs/csdunh9.mf
+ texmf-dist/fonts/source/public/cs/csff10.mf
+ texmf-dist/fonts/source/public/cs/csfi10.mf
+ texmf-dist/fonts/source/public/cs/csfib10.mf
+ texmf-dist/fonts/source/public/cs/csfib12.mf
+ texmf-dist/fonts/source/public/cs/csfib8.mf
+ texmf-dist/fonts/source/public/cs/csfib9.mf
+ texmf-dist/fonts/source/public/cs/cshachel.mf
+ texmf-dist/fonts/source/public/cs/cshacheu.mf
+ texmf-dist/fonts/source/public/cs/cshyph.mf
+ texmf-dist/fonts/source/public/cs/csiacutl.mf
+ texmf-dist/fonts/source/public/cs/csihachl.mf
+ texmf-dist/fonts/source/public/cs/csinch.mf
+ texmf-dist/fonts/source/public/cs/csiothrl.mf
+ texmf-dist/fonts/source/public/cs/csitt10.mf
+ texmf-dist/fonts/source/public/cs/csitt12.mf
+ texmf-dist/fonts/source/public/cs/csitt17.mf
+ texmf-dist/fonts/source/public/cs/csitt8.mf
+ texmf-dist/fonts/source/public/cs/csitt9.mf
+ texmf-dist/fonts/source/public/cs/csotherl.mf
+ texmf-dist/fonts/source/public/cs/csotheru.mf
+ texmf-dist/fonts/source/public/cs/csr10.mf
+ texmf-dist/fonts/source/public/cs/csr12.mf
+ texmf-dist/fonts/source/public/cs/csr17.mf
+ texmf-dist/fonts/source/public/cs/csr5.mf
+ texmf-dist/fonts/source/public/cs/csr6.mf
+ texmf-dist/fonts/source/public/cs/csr7.mf
+ texmf-dist/fonts/source/public/cs/csr8.mf
+ texmf-dist/fonts/source/public/cs/csr9.mf
+ texmf-dist/fonts/source/public/cs/cssl10.mf
+ texmf-dist/fonts/source/public/cs/cssl12.mf
+ texmf-dist/fonts/source/public/cs/cssl17.mf
+ texmf-dist/fonts/source/public/cs/cssl5.mf
+ texmf-dist/fonts/source/public/cs/cssl6.mf
+ texmf-dist/fonts/source/public/cs/cssl7.mf
+ texmf-dist/fonts/source/public/cs/cssl8.mf
+ texmf-dist/fonts/source/public/cs/cssl9.mf
+ texmf-dist/fonts/source/public/cs/cssltt10.mf
+ texmf-dist/fonts/source/public/cs/cssltt12.mf
+ texmf-dist/fonts/source/public/cs/cssltt8.mf
+ texmf-dist/fonts/source/public/cs/cssltt9.mf
+ texmf-dist/fonts/source/public/cs/csss10.mf
+ texmf-dist/fonts/source/public/cs/csss12.mf
+ texmf-dist/fonts/source/public/cs/csss17.mf
+ texmf-dist/fonts/source/public/cs/csss8.mf
+ texmf-dist/fonts/source/public/cs/csss9.mf
+ texmf-dist/fonts/source/public/cs/csssbx10.mf
+ texmf-dist/fonts/source/public/cs/csssbx12.mf
+ texmf-dist/fonts/source/public/cs/csssbx17.mf
+ texmf-dist/fonts/source/public/cs/csssbx9.mf
+ texmf-dist/fonts/source/public/cs/csssdc10.mf
+ texmf-dist/fonts/source/public/cs/csssi10.mf
+ texmf-dist/fonts/source/public/cs/csssi12.mf
+ texmf-dist/fonts/source/public/cs/csssi17.mf
+ texmf-dist/fonts/source/public/cs/csssi8.mf
+ texmf-dist/fonts/source/public/cs/csssi9.mf
+ texmf-dist/fonts/source/public/cs/csssq8.mf
+ texmf-dist/fonts/source/public/cs/csssqi8.mf
+ texmf-dist/fonts/source/public/cs/cstcsc10.mf
+ texmf-dist/fonts/source/public/cs/cstcsc12.mf
+ texmf-dist/fonts/source/public/cs/cstcsc17.mf
+ texmf-dist/fonts/source/public/cs/cstex10.mf
+ texmf-dist/fonts/source/public/cs/cstex8.mf
+ texmf-dist/fonts/source/public/cs/cstex9.mf
+ texmf-dist/fonts/source/public/cs/csti10.mf
+ texmf-dist/fonts/source/public/cs/csti12.mf
+ texmf-dist/fonts/source/public/cs/csti17.mf
+ texmf-dist/fonts/source/public/cs/csti7.mf
+ texmf-dist/fonts/source/public/cs/csti8.mf
+ texmf-dist/fonts/source/public/cs/csti9.mf
+ texmf-dist/fonts/source/public/cs/cstt10.mf
+ texmf-dist/fonts/source/public/cs/cstt12.mf
+ texmf-dist/fonts/source/public/cs/cstt8.mf
+ texmf-dist/fonts/source/public/cs/cstt9.mf
+ texmf-dist/fonts/source/public/cs/csu10.mf
+ texmf-dist/fonts/source/public/cs/csu12.mf
+ texmf-dist/fonts/source/public/cs/csu17.mf
+ texmf-dist/fonts/source/public/cs/csu7.mf
+ texmf-dist/fonts/source/public/cs/csu8.mf
+ texmf-dist/fonts/source/public/cs/csu9.mf
+ texmf-dist/fonts/source/public/cs/csvtt10.mf
+ texmf-dist/fonts/source/public/cs/csvtt12.mf
+ texmf-dist/fonts/source/public/cs/csvtt8.mf
+ texmf-dist/fonts/source/public/cs/csvtt9.mf
+ texmf-dist/fonts/source/public/cs/icscsc10.mf
+ texmf-dist/fonts/source/public/cs/icstt8.mf
+ texmf-dist/fonts/source/public/cs/ilcsss8.mf
+ texmf-dist/fonts/source/public/cs/ilcsssb8.mf
+ texmf-dist/fonts/source/public/cs/ilcsssi8.mf
+ texmf-dist/fonts/source/public/cs/kmcsc.mf
+ texmf-dist/fonts/source/public/cs/kmroman.mf
+ texmf-dist/fonts/source/public/cs/kmtexset.mf
+ texmf-dist/fonts/source/public/cs/kmtextit.mf
+ texmf-dist/fonts/source/public/cs/kmtitle.mf
+ texmf-dist/fonts/source/public/cs/lcsss8.mf
+ texmf-dist/fonts/source/public/cs/lcsssb8.mf
+ texmf-dist/fonts/source/public/cs/lcsssi8.mf
+ texmf-dist/fonts/tfm/public/cs/csb10.tfm
+ texmf-dist/fonts/tfm/public/cs/csb12.tfm
+ texmf-dist/fonts/tfm/public/cs/csb17.tfm
+ texmf-dist/fonts/tfm/public/cs/csb5.tfm
+ texmf-dist/fonts/tfm/public/cs/csb6.tfm
+ texmf-dist/fonts/tfm/public/cs/csb7.tfm
+ texmf-dist/fonts/tfm/public/cs/csb8.tfm
+ texmf-dist/fonts/tfm/public/cs/csb9.tfm
+ texmf-dist/fonts/tfm/public/cs/csbx10.tfm
+ texmf-dist/fonts/tfm/public/cs/csbx12.tfm
+ texmf-dist/fonts/tfm/public/cs/csbx5.tfm
+ texmf-dist/fonts/tfm/public/cs/csbx6.tfm
+ texmf-dist/fonts/tfm/public/cs/csbx7.tfm
+ texmf-dist/fonts/tfm/public/cs/csbx8.tfm
+ texmf-dist/fonts/tfm/public/cs/csbx9.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxsl10.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxsl12.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxsl5.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxsl6.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxsl7.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxsl8.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxsl9.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxti10.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxti12.tfm
+ texmf-dist/fonts/tfm/public/cs/csbxti17.tfm
+ texmf-dist/fonts/tfm/public/cs/cscsc10.tfm
+ texmf-dist/fonts/tfm/public/cs/cscsc12.tfm
+ texmf-dist/fonts/tfm/public/cs/cscsc17.tfm
+ texmf-dist/fonts/tfm/public/cs/cscsc8.tfm
+ texmf-dist/fonts/tfm/public/cs/cscsc9.tfm
+ texmf-dist/fonts/tfm/public/cs/csdunh10.tfm
+ texmf-dist/fonts/tfm/public/cs/csdunh12.tfm
+ texmf-dist/fonts/tfm/public/cs/csdunh17.tfm
+ texmf-dist/fonts/tfm/public/cs/csdunh5.tfm
+ texmf-dist/fonts/tfm/public/cs/csdunh6.tfm
+ texmf-dist/fonts/tfm/public/cs/csdunh7.tfm
+ texmf-dist/fonts/tfm/public/cs/csdunh8.tfm
+ texmf-dist/fonts/tfm/public/cs/csdunh9.tfm
+ texmf-dist/fonts/tfm/public/cs/csff10.tfm
+ texmf-dist/fonts/tfm/public/cs/csfi10.tfm
+ texmf-dist/fonts/tfm/public/cs/csfib10.tfm
+ texmf-dist/fonts/tfm/public/cs/csfib12.tfm
+ texmf-dist/fonts/tfm/public/cs/csfib8.tfm
+ texmf-dist/fonts/tfm/public/cs/csfib9.tfm
+ texmf-dist/fonts/tfm/public/cs/csinch.tfm
+ texmf-dist/fonts/tfm/public/cs/csitt10.tfm
+ texmf-dist/fonts/tfm/public/cs/csitt12.tfm
+ texmf-dist/fonts/tfm/public/cs/csitt17.tfm
+ texmf-dist/fonts/tfm/public/cs/csitt8.tfm
+ texmf-dist/fonts/tfm/public/cs/csitt9.tfm
+ texmf-dist/fonts/tfm/public/cs/csr10.tfm
+ texmf-dist/fonts/tfm/public/cs/csr12.tfm
+ texmf-dist/fonts/tfm/public/cs/csr17.tfm
+ texmf-dist/fonts/tfm/public/cs/csr5.tfm
+ texmf-dist/fonts/tfm/public/cs/csr6.tfm
+ texmf-dist/fonts/tfm/public/cs/csr7.tfm
+ texmf-dist/fonts/tfm/public/cs/csr8.tfm
+ texmf-dist/fonts/tfm/public/cs/csr9.tfm
+ texmf-dist/fonts/tfm/public/cs/cssl10.tfm
+ texmf-dist/fonts/tfm/public/cs/cssl12.tfm
+ texmf-dist/fonts/tfm/public/cs/cssl17.tfm
+ texmf-dist/fonts/tfm/public/cs/cssl5.tfm
+ texmf-dist/fonts/tfm/public/cs/cssl6.tfm
+ texmf-dist/fonts/tfm/public/cs/cssl7.tfm
+ texmf-dist/fonts/tfm/public/cs/cssl8.tfm
+ texmf-dist/fonts/tfm/public/cs/cssl9.tfm
+ texmf-dist/fonts/tfm/public/cs/cssltt10.tfm
+ texmf-dist/fonts/tfm/public/cs/cssltt12.tfm
+ texmf-dist/fonts/tfm/public/cs/cssltt8.tfm
+ texmf-dist/fonts/tfm/public/cs/cssltt9.tfm
+ texmf-dist/fonts/tfm/public/cs/csss10.tfm
+ texmf-dist/fonts/tfm/public/cs/csss12.tfm
+ texmf-dist/fonts/tfm/public/cs/csss17.tfm
+ texmf-dist/fonts/tfm/public/cs/csss8.tfm
+ texmf-dist/fonts/tfm/public/cs/csss9.tfm
+ texmf-dist/fonts/tfm/public/cs/csssbx10.tfm
+ texmf-dist/fonts/tfm/public/cs/csssbx12.tfm
+ texmf-dist/fonts/tfm/public/cs/csssbx17.tfm
+ texmf-dist/fonts/tfm/public/cs/csssbx9.tfm
+ texmf-dist/fonts/tfm/public/cs/csssdc10.tfm
+ texmf-dist/fonts/tfm/public/cs/csssi10.tfm
+ texmf-dist/fonts/tfm/public/cs/csssi12.tfm
+ texmf-dist/fonts/tfm/public/cs/csssi17.tfm
+ texmf-dist/fonts/tfm/public/cs/csssi8.tfm
+ texmf-dist/fonts/tfm/public/cs/csssi9.tfm
+ texmf-dist/fonts/tfm/public/cs/csssq8.tfm
+ texmf-dist/fonts/tfm/public/cs/csssqi8.tfm
+ texmf-dist/fonts/tfm/public/cs/cstcsc10.tfm
+ texmf-dist/fonts/tfm/public/cs/cstcsc12.tfm
+ texmf-dist/fonts/tfm/public/cs/cstcsc17.tfm
+ texmf-dist/fonts/tfm/public/cs/csti10.tfm
+ texmf-dist/fonts/tfm/public/cs/csti12.tfm
+ texmf-dist/fonts/tfm/public/cs/csti17.tfm
+ texmf-dist/fonts/tfm/public/cs/csti7.tfm
+ texmf-dist/fonts/tfm/public/cs/csti8.tfm
+ texmf-dist/fonts/tfm/public/cs/csti9.tfm
+ texmf-dist/fonts/tfm/public/cs/cstt10.tfm
+ texmf-dist/fonts/tfm/public/cs/cstt12.tfm
+ texmf-dist/fonts/tfm/public/cs/cstt8.tfm
+ texmf-dist/fonts/tfm/public/cs/cstt9.tfm
+ texmf-dist/fonts/tfm/public/cs/csu10.tfm
+ texmf-dist/fonts/tfm/public/cs/csu12.tfm
+ texmf-dist/fonts/tfm/public/cs/csu17.tfm
+ texmf-dist/fonts/tfm/public/cs/csu7.tfm
+ texmf-dist/fonts/tfm/public/cs/csu8.tfm
+ texmf-dist/fonts/tfm/public/cs/csu9.tfm
+ texmf-dist/fonts/tfm/public/cs/csvtt10.tfm
+ texmf-dist/fonts/tfm/public/cs/csvtt12.tfm
+ texmf-dist/fonts/tfm/public/cs/csvtt8.tfm
+ texmf-dist/fonts/tfm/public/cs/csvtt9.tfm
+ texmf-dist/fonts/tfm/public/cs/icscsc10.tfm
+ texmf-dist/fonts/tfm/public/cs/icstt8.tfm
+ texmf-dist/fonts/tfm/public/cs/ilcsss8.tfm
+ texmf-dist/fonts/tfm/public/cs/ilcsssb8.tfm
+ texmf-dist/fonts/tfm/public/cs/ilcsssi8.tfm
+ texmf-dist/fonts/tfm/public/cs/lcsss8.tfm
+ texmf-dist/fonts/tfm/public/cs/lcsssb8.tfm
+ texmf-dist/fonts/tfm/public/cs/lcsssi8.tfm
+ texmf-dist/fonts/type1/public/cs/README
+ texmf-dist/fonts/type1/public/cs/csb10.pfb
+ texmf-dist/fonts/type1/public/cs/csbx10.pfb
+ texmf-dist/fonts/type1/public/cs/csbx12.pfb
+ texmf-dist/fonts/type1/public/cs/csbx5.pfb
+ texmf-dist/fonts/type1/public/cs/csbx6.pfb
+ texmf-dist/fonts/type1/public/cs/csbx7.pfb
+ texmf-dist/fonts/type1/public/cs/csbx8.pfb
+ texmf-dist/fonts/type1/public/cs/csbx9.pfb
+ texmf-dist/fonts/type1/public/cs/csbxsl10.pfb
+ texmf-dist/fonts/type1/public/cs/csbxti10.pfb
+ texmf-dist/fonts/type1/public/cs/cscsc10.pfb
+ texmf-dist/fonts/type1/public/cs/csdunh10.pfb
+ texmf-dist/fonts/type1/public/cs/csff10.pfb
+ texmf-dist/fonts/type1/public/cs/csfi10.pfb
+ texmf-dist/fonts/type1/public/cs/csfib8.pfb
+ texmf-dist/fonts/type1/public/cs/csinch.pfb
+ texmf-dist/fonts/type1/public/cs/csitt10.pfb
+ texmf-dist/fonts/type1/public/cs/csr10.pfb
+ texmf-dist/fonts/type1/public/cs/csr12.pfb
+ texmf-dist/fonts/type1/public/cs/csr17.pfb
+ texmf-dist/fonts/type1/public/cs/csr5.pfb
+ texmf-dist/fonts/type1/public/cs/csr6.pfb
+ texmf-dist/fonts/type1/public/cs/csr7.pfb
+ texmf-dist/fonts/type1/public/cs/csr8.pfb
+ texmf-dist/fonts/type1/public/cs/csr9.pfb
+ texmf-dist/fonts/type1/public/cs/cssl10.pfb
+ texmf-dist/fonts/type1/public/cs/cssl12.pfb
+ texmf-dist/fonts/type1/public/cs/cssl8.pfb
+ texmf-dist/fonts/type1/public/cs/cssl9.pfb
+ texmf-dist/fonts/type1/public/cs/cssltt10.pfb
+ texmf-dist/fonts/type1/public/cs/csss10.pfb
+ texmf-dist/fonts/type1/public/cs/csss12.pfb
+ texmf-dist/fonts/type1/public/cs/csss17.pfb
+ texmf-dist/fonts/type1/public/cs/csss8.pfb
+ texmf-dist/fonts/type1/public/cs/csss9.pfb
+ texmf-dist/fonts/type1/public/cs/csssbx10.pfb
+ texmf-dist/fonts/type1/public/cs/csssdc10.pfb
+ texmf-dist/fonts/type1/public/cs/csssi10.pfb
+ texmf-dist/fonts/type1/public/cs/csssi12.pfb
+ texmf-dist/fonts/type1/public/cs/csssi17.pfb
+ texmf-dist/fonts/type1/public/cs/csssi8.pfb
+ texmf-dist/fonts/type1/public/cs/csssi9.pfb
+ texmf-dist/fonts/type1/public/cs/csssq8.pfb
+ texmf-dist/fonts/type1/public/cs/csssqi8.pfb
+ texmf-dist/fonts/type1/public/cs/cstcsc10.pfb
+ texmf-dist/fonts/type1/public/cs/csti10.pfb
+ texmf-dist/fonts/type1/public/cs/csti12.pfb
+ texmf-dist/fonts/type1/public/cs/csti7.pfb
+ texmf-dist/fonts/type1/public/cs/csti8.pfb
+ texmf-dist/fonts/type1/public/cs/csti9.pfb
+ texmf-dist/fonts/type1/public/cs/cstt10.pfb
+ texmf-dist/fonts/type1/public/cs/cstt12.pfb
+ texmf-dist/fonts/type1/public/cs/cstt8.pfb
+ texmf-dist/fonts/type1/public/cs/cstt9.pfb
+ texmf-dist/fonts/type1/public/cs/csu10.pfb
+ texmf-dist/fonts/type1/public/cs/csvtt10.pfb
+
+name cslatex
+category Package
+revision 4912
+shortdesc LaTeX support for Czech/Slovak typesetting.
+docfiles size=170753
+ texmf-dist/doc/cslatex/base/INSTALL.cslatex
+ texmf-dist/doc/cslatex/base/README-cspsfont
+ texmf-dist/doc/cslatex/base/README.cslatex
+ texmf-dist/doc/cslatex/base/cs-fonts.doc
+ texmf-dist/doc/cslatex/base/cscorr.tab
+ texmf-dist/doc/cslatex/base/csplain.doc
+ texmf-dist/doc/cslatex/base/license.eng
+ texmf-dist/doc/cslatex/base/mklinks
+ texmf-dist/doc/cslatex/base/parpozn.tex
+ texmf-dist/doc/cslatex/base/prvni.tex
+ texmf-dist/doc/cslatex/base/test8z.tex
+ texmf-dist/doc/cslatex/base/testlat.tex
+ texmf-dist/doc/cslatex/base/zmeny.txt
+srcfiles size=45854
+ texmf-dist/source/cslatex/base/cslatex.dtx
+ texmf-dist/source/cslatex/base/cslatex.ins
+ texmf-dist/source/cslatex/base/cslatex.txt
+runfiles size=63903
+ texmf-dist/tex/cslatex/base/cslatex-utf8.ini
+ texmf-dist/tex/cslatex/base/cslatex.ini
+ texmf-dist/tex/cslatex/base/cspsfont.il2
+ texmf-dist/tex/cslatex/base/cspsfont.tex
+ texmf-dist/tex/cslatex/base/cspsfont.xl2
+ texmf-dist/tex/cslatex/base/fonttext.cfg
+ texmf-dist/tex/cslatex/base/hyphen.cfg
+ texmf-dist/tex/cslatex/base/il2pag.fd
+ texmf-dist/tex/cslatex/base/il2pbk.fd
+ texmf-dist/tex/cslatex/base/il2pcr.fd
+ texmf-dist/tex/cslatex/base/il2phv.fd
+ texmf-dist/tex/cslatex/base/il2phvn.fd
+ texmf-dist/tex/cslatex/base/il2pnc.fd
+ texmf-dist/tex/cslatex/base/il2ppl.fd
+ texmf-dist/tex/cslatex/base/il2ptm.fd
+ texmf-dist/tex/cslatex/base/il2pzc.fd
+ texmf-dist/tex/cslatex/base/nhelvet.sty
+ texmf-dist/tex/cslatex/base/ntimes.sty
+ texmf-dist/tex/cslatex/base/xl2pag.fd
+ texmf-dist/tex/cslatex/base/xl2pbk.fd
+ texmf-dist/tex/cslatex/base/xl2pcr.fd
+ texmf-dist/tex/cslatex/base/xl2phv.fd
+ texmf-dist/tex/cslatex/base/xl2phvn.fd
+ texmf-dist/tex/cslatex/base/xl2pnc.fd
+ texmf-dist/tex/cslatex/base/xl2ppl.fd
+ texmf-dist/tex/cslatex/base/xl2ptm.fd
+ texmf-dist/tex/cslatex/base/xl2pzc.fd
+ texmf-dist/tex/latex/cslatex/il2cmdh.fd
+ texmf-dist/tex/latex/cslatex/il2cmfib.fd
+ texmf-dist/tex/latex/cslatex/il2cmfr.fd
+ texmf-dist/tex/latex/cslatex/il2cmr.fd
+ texmf-dist/tex/latex/cslatex/il2cmss.fd
+ texmf-dist/tex/latex/cslatex/il2cmtt.fd
+ texmf-dist/tex/latex/cslatex/il2cmvtt.fd
+ texmf-dist/tex/latex/cslatex/il2enc.def
+ texmf-dist/tex/latex/cslatex/il2lcmss.fd
+ texmf-dist/tex/latex/cslatex/il2lcmtt.fd
+catalogue-version
+catalogue-date 2007-01-02 10:01:06 +0100
+catalogue-ctan /macros/cstex/base/cslatex.tar.gz
+catalogue-license gpl
+
+name csplain
+category Package
+revision 4912
+shortdesc Plain TeX support for Czech/Slovak typesetting.
+runfiles size=119220
+ texmf-dist/tex/csplain/base/cavantga.tex
+ texmf-dist/tex/csplain/base/cbookman.tex
+ texmf-dist/tex/csplain/base/chelvet.tex
+ texmf-dist/tex/csplain/base/cncent.tex
+ texmf-dist/tex/csplain/base/cpalatin.tex
+ texmf-dist/tex/csplain/base/csenc-k.tex
+ texmf-dist/tex/csplain/base/csenc-p.tex
+ texmf-dist/tex/csplain/base/csenc-u.tex
+ texmf-dist/tex/csplain/base/csenc-w.tex
+ texmf-dist/tex/csplain/base/cseplain.ini
+ texmf-dist/tex/csplain/base/csfonts.tex
+ texmf-dist/tex/csplain/base/csplain-utf8.ini
+ texmf-dist/tex/csplain/base/csplain.ini
+ texmf-dist/tex/csplain/base/ctimes.tex
+ texmf-dist/tex/csplain/base/czech.sty
+ texmf-dist/tex/csplain/base/czhyphen.ex
+ texmf-dist/tex/csplain/base/czhyphen.tex
+ texmf-dist/tex/csplain/base/dcfonts.tex
+ texmf-dist/tex/csplain/base/ecfonts.tex
+ texmf-dist/tex/csplain/base/extcode.tex
+ texmf-dist/tex/csplain/base/fonttabs.tex
+ texmf-dist/tex/csplain/base/hyphen.ex
+ texmf-dist/tex/csplain/base/hyphen.lan
+ texmf-dist/tex/csplain/base/il2code.tex
+ texmf-dist/tex/csplain/base/plaina4.tex
+ texmf-dist/tex/csplain/base/skhyphen.ex
+ texmf-dist/tex/csplain/base/skhyphen.tex
+ texmf-dist/tex/csplain/base/slovak.sty
+ texmf-dist/tex/csplain/base/t1code.tex
+ texmf-dist/tex/csplain/base/ttimes.tex
+catalogue-version
+catalogue-date 2007-09-06 20:43:59 +0200
+catalogue-ctan /macros/cstex/base/csplain.tar.gz
+catalogue-license other-free
+
+name csquotes
+category Package
+revision 4097
+shortdesc Context sensitive quotation facilities.
+longdesc This package provides advanced facilities for inline and
+longdesc display quotations. It is designed for a wide range of tasks
+longdesc ranging from the most simple applications to the more complex
+longdesc demands of formal quotations. The facilities include commands,
+longdesc environments, and user-definable ‘smart quotes’ which
+longdesc dynamically adjust to their context. Quotation marks are
+longdesc switched automatically if quotations are nested and they can be
+longdesc adjusted to the current language if the babel package is
+longdesc available. There are additional facilities designed to cope
+longdesc with the more specific demands of academic writing, especially
+longdesc in the humanities and the social sciences. All quote styles as
+longdesc well as the optional active quotes are freely configurable.
+docfiles size=310084
+ texmf-dist/doc/latex/csquotes/README details="Package README"
+ texmf-dist/doc/latex/csquotes/csquotes.pdf details="Tutorial on use of the package"
+ texmf-dist/doc/latex/csquotes/tutorial.tex
+runfiles size=63729
+ texmf-dist/tex/latex/csquotes/csquotes.cfg
+ texmf-dist/tex/latex/csquotes/csquotes.sty
+catalogue-version 3.7
+catalogue-date 2007-03-26 23:03:53 +0200
+catalogue-ctan /macros/latex/contrib/csquotes
+catalogue-license lppl
+
+name ctable
+category Package
+revision 5449
+shortdesc Easily typeset centered tables.
+longdesc Provides commands to easily typeset centered, left- or right-
+longdesc aligned table and (multiple-)figure floats, with footnotes.
+longdesc Instead of an environment, a command with 4 arguments is used;
+longdesc the first is optional and is used for key,value pairs
+longdesc generating variations on the defaults and offering a route for
+longdesc future extensions.
+docfiles size=1127634
+ texmf-dist/doc/latex/ctable/01a
+ texmf-dist/doc/latex/ctable/01a.pdf
+ texmf-dist/doc/latex/ctable/01b
+ texmf-dist/doc/latex/ctable/01b.pdf
+ texmf-dist/doc/latex/ctable/02k
+ texmf-dist/doc/latex/ctable/02k.pdf
+ texmf-dist/doc/latex/ctable/02l
+ texmf-dist/doc/latex/ctable/02l.pdf
+ texmf-dist/doc/latex/ctable/02m
+ texmf-dist/doc/latex/ctable/02m.pdf
+ texmf-dist/doc/latex/ctable/03a
+ texmf-dist/doc/latex/ctable/03a.pdf
+ texmf-dist/doc/latex/ctable/03b
+ texmf-dist/doc/latex/ctable/03b.pdf
+ texmf-dist/doc/latex/ctable/04a
+ texmf-dist/doc/latex/ctable/04a.pdf
+ texmf-dist/doc/latex/ctable/04b
+ texmf-dist/doc/latex/ctable/04b.pdf
+ texmf-dist/doc/latex/ctable/05a
+ texmf-dist/doc/latex/ctable/05a.pdf
+ texmf-dist/doc/latex/ctable/05b
+ texmf-dist/doc/latex/ctable/05b.pdf
+ texmf-dist/doc/latex/ctable/06a
+ texmf-dist/doc/latex/ctable/06a.pdf
+ texmf-dist/doc/latex/ctable/06b
+ texmf-dist/doc/latex/ctable/06b.pdf
+ texmf-dist/doc/latex/ctable/07a
+ texmf-dist/doc/latex/ctable/07a.pdf
+ texmf-dist/doc/latex/ctable/07b
+ texmf-dist/doc/latex/ctable/07b.pdf
+ texmf-dist/doc/latex/ctable/08a
+ texmf-dist/doc/latex/ctable/08a.pdf
+ texmf-dist/doc/latex/ctable/08b
+ texmf-dist/doc/latex/ctable/08b.pdf
+ texmf-dist/doc/latex/ctable/09b
+ texmf-dist/doc/latex/ctable/09b.pdf
+ texmf-dist/doc/latex/ctable/10a
+ texmf-dist/doc/latex/ctable/10a.pdf
+ texmf-dist/doc/latex/ctable/10b
+ texmf-dist/doc/latex/ctable/10b.pdf
+ texmf-dist/doc/latex/ctable/11k
+ texmf-dist/doc/latex/ctable/11k.pdf
+ texmf-dist/doc/latex/ctable/11l
+ texmf-dist/doc/latex/ctable/11l.pdf
+ texmf-dist/doc/latex/ctable/11m
+ texmf-dist/doc/latex/ctable/11m.pdf
+ texmf-dist/doc/latex/ctable/README details="Readme"
+ texmf-dist/doc/latex/ctable/ctable.pdf details="Package documentation"
+ texmf-dist/doc/latex/ctable/s01a.pdf
+ texmf-dist/doc/latex/ctable/s01b.pdf
+ texmf-dist/doc/latex/ctable/s02k.pdf
+ texmf-dist/doc/latex/ctable/s02l.pdf
+ texmf-dist/doc/latex/ctable/s02m.pdf
+ texmf-dist/doc/latex/ctable/s03a.pdf
+ texmf-dist/doc/latex/ctable/s03b.pdf
+ texmf-dist/doc/latex/ctable/s04a.pdf
+ texmf-dist/doc/latex/ctable/s04b.pdf
+ texmf-dist/doc/latex/ctable/s05a.pdf
+ texmf-dist/doc/latex/ctable/s05b.pdf
+ texmf-dist/doc/latex/ctable/s06a.pdf
+ texmf-dist/doc/latex/ctable/s06b.pdf
+ texmf-dist/doc/latex/ctable/s07a.pdf
+ texmf-dist/doc/latex/ctable/s07b.pdf
+ texmf-dist/doc/latex/ctable/s08a.pdf
+ texmf-dist/doc/latex/ctable/s08b.pdf
+ texmf-dist/doc/latex/ctable/s09b.pdf
+ texmf-dist/doc/latex/ctable/s10a.pdf
+ texmf-dist/doc/latex/ctable/s10b.pdf
+ texmf-dist/doc/latex/ctable/s11k.pdf
+ texmf-dist/doc/latex/ctable/s11l.pdf
+ texmf-dist/doc/latex/ctable/s11m.pdf
+srcfiles size=35582
+ texmf-dist/source/latex/ctable/ctable.dtx
+ texmf-dist/source/latex/ctable/ctable.ins
+runfiles size=6156
+ texmf-dist/tex/latex/ctable/ctable.sty
+catalogue-version 1.11
+catalogue-date 2007-09-07 11:17:10 +0200
+catalogue-ctan /macros/latex/contrib/ctable
+catalogue-license lppl
+
+name ctib
+category Package
+revision 803
+docfiles size=402332
+ texmf-dist/doc/latex/ctib/README
+ texmf-dist/doc/latex/ctib/ctib4tex.pdf
+ texmf-dist/doc/latex/ctib/ctib4tex.tex
+srcfiles size=22941
+ texmf-dist/source/latex/ctib/COPYING
+ texmf-dist/source/latex/ctib/EMTEX
+ texmf-dist/source/latex/ctib/HISTORY
+ texmf-dist/source/latex/ctib/INSTALL
+ texmf-dist/source/latex/ctib/MIKTEX
+runfiles size=819036
+ texmf-dist/fonts/source/public/ctib/bzrsetup.mf
+ texmf-dist/fonts/source/public/ctib/ctib.mf
+ texmf-dist/fonts/source/public/ctib/ctibcode.mf
+ texmf-dist/fonts/source/public/ctib/ctiblett.mf
+ texmf-dist/fonts/source/public/ctib/ctibligs.mf
+ texmf-dist/fonts/source/public/ctib/ctibnum.mf
+ texmf-dist/fonts/source/public/ctib/ctibpunc.mf
+ texmf-dist/fonts/source/public/ctib/ctibsplt.mf
+ texmf-dist/fonts/source/public/ctib/ctibvow.mf
+ texmf-dist/fonts/tfm/public/ctib/ctib.tfm
+ texmf-dist/tex/latex/ctib/ctib.sty
+ texmf-dist/tex/latex/ctib/ctib.tex
+ texmf-dist/tex/latex/ctib/lctctib.fd
+ texmf-dist/tex/latex/ctib/lctenc.def
+
+name cuisine
+category Package
+revision 2664
+shortdesc Typeset recipes.
+longdesc Typeset recipes with the ingredients lined up with their method
+longdesc step (somewhat similarly to the layout used in cooking).
+docfiles size=93026
+ texmf-dist/doc/latex/cuisine/README details="Package Readme"
+ texmf-dist/doc/latex/cuisine/cuisine.pdf details="Package documentation"
+srcfiles size=38787
+ texmf-dist/source/latex/cuisine/cuisine.dtx
+ texmf-dist/source/latex/cuisine/cuisine.ins
+runfiles size=9906
+ texmf-dist/tex/latex/cuisine/cuisine.sty
+catalogue-version 0.5
+catalogue-date 2006-12-09 15:50:57 +0100
+catalogue-ctan /macros/latex/contrib/cuisine
+catalogue-license lppl
+
+name currvita
+category Package
+revision 2665
+shortdesc Typeset a curriculum vitae.
+longdesc Currvita is a package rather than a class (like most other
+longdesc curriculum vitae offerings). The author considers that a
+longdesc curriculum vitae can quite reasonably form part of another
+longdesc document (such as a letter, or a dissertation).
+docfiles size=115640
+ texmf-dist/doc/latex/currvita/README details="Package Readme"
+ texmf-dist/doc/latex/currvita/currvita.pdf details="Package documentation"
+ texmf-dist/doc/latex/currvita/cvtest.tex
+srcfiles size=55487
+ texmf-dist/source/latex/currvita/currvita.dtx
+ texmf-dist/source/latex/currvita/currvita.ins
+runfiles size=5754
+ texmf-dist/tex/latex/currvita/currvita.sty
+catalogue-version
+catalogue-date 2006-12-09 16:04:04 +0100
+catalogue-ctan /macros/latex/contrib/currvita
+catalogue-license gpl
+
+name cursolatex
+category Documentation
+revision 1756
+shortdesc A LaTeX tutorial.
+longdesc The tutorial is presented as a set of slides (in Portuguese).
+docfiles size=2211769
+ texmf-doc/doc/portuguese/cursolatex/README
+ texmf-doc/doc/portuguese/cursolatex/cursolatex.pdf language="pt"
+ texmf-doc/doc/portuguese/cursolatex/src/TeXniccenter.eps
+ texmf-doc/doc/portuguese/cursolatex/src/cursolatex.tex
+ texmf-doc/doc/portuguese/cursolatex/src/emacstex.eps
+ texmf-doc/doc/portuguese/cursolatex/src/integra.eps
+ texmf-doc/doc/portuguese/cursolatex/src/lyx.eps
+ texmf-doc/doc/portuguese/cursolatex/src/miktex.eps
+ texmf-doc/doc/portuguese/cursolatex/src/vitex.eps
+catalogue-version
+catalogue-date 2007-03-05 15:26:58 +0100
+catalogue-ctan /info/portuguese/cursolatex
+catalogue-license gpl
+
+name cursor
+category Package
+revision 3107
+shortdesc Draw a cursor in an equation.
+longdesc Creates a simple L-shaped ‘cursor’ in a mathematics
+longdesc environment to highlight a part of an equation.
+docfiles size=28150
+ texmf-dist/doc/latex/cursor/cursor.pdf details="Samples of use (with source)"
+ texmf-dist/doc/latex/cursor/cursor.tex
+ texmf-dist/doc/latex/cursor/read.me
+runfiles size=4092
+ texmf-dist/tex/latex/cursor/cursor.sty
+catalogue-version
+catalogue-date 2007-01-01 17:26:34 +0100
+catalogue-ctan /macros/latex/contrib/cursor
+catalogue-license unknown
+
+name curve
+category Package
+revision 4674
+docfiles size=190911
+ texmf-dist/doc/latex/curve/NEWS
+ texmf-dist/doc/latex/curve/README
+ texmf-dist/doc/latex/curve/curve.el
+ texmf-dist/doc/latex/curve/curve.pdf
+ texmf-dist/doc/latex/curve/cv.tex
+ texmf-dist/doc/latex/curve/rubric.tex
+srcfiles size=65136
+ texmf-dist/source/latex/curve/curve.dtx
+ texmf-dist/source/latex/curve/curve.ins
+runfiles size=17690
+ texmf-dist/tex/latex/curve/curve.cls
+
+name curve2e
+category Package
+revision 2944
+shortdesc Extensions for package pict2e.
+longdesc Curve2e extends the drawing capacities of the new standard
+longdesc pict2e LaTeX package. In particular, it introduces new macros
+longdesc for lines and vectors, new specifications for line terminations
+longdesc and joins, arcs with any angular aperture, arcs with arrows at
+longdesc one or both ends, generic curves specified with their nodes and
+longdesc the tangent direction at these nodes.
+docfiles size=222485
+ texmf-dist/doc/latex/curve2e/README
+ texmf-dist/doc/latex/curve2e/curve2e.pdf details="Package documentation"
+ texmf-dist/doc/latex/curve2e/manifest.txt
+srcfiles size=72992
+ texmf-dist/source/latex/curve2e/curve2e.dtx
+ texmf-dist/source/latex/curve2e/curve2e.ins
+runfiles size=21649
+ texmf-dist/tex/latex/curve2e/curve2e.sty
+catalogue-version 1.0
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/curve2e
+catalogue-license lppl
+
+name curves
+category Package
+revision 1674
+shortdesc Curves for LaTeX picture environment
+longdesc Draws curves in the standard LaTeX picture environment using
+longdesc parabolas between data points with continuous slope at joins.
+longdesc For circles and arcs uses up to 16 parabolas. Also draws
+longdesc symbols or dash patterns along curves. Equivalent to technical
+longdesc pens with compasses and French curves. Curves consist of short
+longdesc secants drawn by overlapping disks or line drawing \specials
+longdesc selected by package options.
+docfiles size=147599
+ texmf-dist/doc/latex/curves/curves.pdf details="Package documentation"
+srcfiles size=69477
+ texmf-dist/source/latex/curves/curves.dtx
+ texmf-dist/source/latex/curves/curves.ins
+runfiles size=16724
+ texmf-dist/tex/latex/curves/curves.sty
+ texmf-dist/tex/latex/curves/curvesls.sty
+catalogue-version 1.50
+catalogue-date 2007-01-01 17:45:33 +0100
+catalogue-ctan /macros/latex/contrib/curves
+catalogue-license lppl
+
+name custom-bib
+category Package
+revision 4201
+shortdesc Customised BibTeX styles.
+longdesc Package generating customized BibTeX bibliography styles from a
+longdesc generic file using docstrip driven by parameters generated by a
+longdesc menu application. Includes support for the Harvard style of
+longdesc citations.
+docfiles size=472544
+ texmf-dist/doc/latex/custom-bib/README.420
+ texmf-dist/doc/latex/custom-bib/makebst.pdf details="Package documentation"
+ texmf-dist/doc/latex/custom-bib/merlin.pdf details="Master style file documentation"
+srcfiles size=58482
+ texmf-dist/source/latex/custom-bib/makebst.drv
+ texmf-dist/source/latex/custom-bib/makebst.dtx
+ texmf-dist/source/latex/custom-bib/makebst.ins
+ texmf-dist/source/latex/custom-bib/shorthnd.ins
+runfiles size=513176
+ texmf-dist/tex/latex/custom-bib/catalan.mbs
+ texmf-dist/tex/latex/custom-bib/dansk.mbs
+ texmf-dist/tex/latex/custom-bib/dutch.mbs
+ texmf-dist/tex/latex/custom-bib/english.mbs
+ texmf-dist/tex/latex/custom-bib/esperant.mbs
+ texmf-dist/tex/latex/custom-bib/finnish.mbs
+ texmf-dist/tex/latex/custom-bib/french.mbs
+ texmf-dist/tex/latex/custom-bib/geojour.mbs
+ texmf-dist/tex/latex/custom-bib/geophys.tex
+ texmf-dist/tex/latex/custom-bib/german.mbs
+ texmf-dist/tex/latex/custom-bib/italian.mbs
+ texmf-dist/tex/latex/custom-bib/makebst.tex
+ texmf-dist/tex/latex/custom-bib/merlin.mbs
+ texmf-dist/tex/latex/custom-bib/norsk.mbs
+ texmf-dist/tex/latex/custom-bib/photjour.mbs
+ texmf-dist/tex/latex/custom-bib/physjour.mbs
+ texmf-dist/tex/latex/custom-bib/polski.mbs
+ texmf-dist/tex/latex/custom-bib/portuges.mbs
+ texmf-dist/tex/latex/custom-bib/shorthnd.tex
+ texmf-dist/tex/latex/custom-bib/slovene.mbs
+ texmf-dist/tex/latex/custom-bib/spanish.mbs
+ texmf-dist/tex/latex/custom-bib/suppjour.mbs
+catalogue-version 4.20
+catalogue-date 2007-04-26 17:59:57 +0200
+catalogue-ctan /macros/latex/contrib/custom-bib
+catalogue-license lppl
+
+name cv
+category Package
+revision 1487
+shortdesc A package for creating a curriculum vitae.
+longdesc The package is distributed with two example files.
+docfiles size=12659
+ texmf-dist/doc/latex/cv/ApplicationLetter.dvi
+ texmf-dist/doc/latex/cv/ApplicationLetter.tex
+ texmf-dist/doc/latex/cv/CVCTAN.dvi
+ texmf-dist/doc/latex/cv/CVCTAN.tex
+ texmf-dist/doc/latex/cv/README
+runfiles size=424
+ texmf-dist/tex/latex/cv/CV.sty
+catalogue-version
+catalogue-date 2006-12-13 11:35:55 +0100
+catalogue-ctan /macros/latex/contrib/cv
+catalogue-license gpl
+
+name cweb
+category Package
+revision 3424
+shortdesc A Web system in C.
+longdesc The Cweb system is a system for Structured Software
+longdesc Documentation (also known as Literate Programming) in the
+longdesc programming language C.
+docfiles size=135464
+ texmf-dist/doc/plain/cweb/cwebman.dvi
+runfiles size=73816
+ texmf-dist/tex/plain/cweb/cwebmac.tex
+ texmf-dist/tex/plain/cweb/pdfXcwebmac.tex
+ texmf-dist/tex/plain/cweb/pdfcwebmac.tex
+ texmf-dist/tex/plain/cweb/pdfdcwebmac.tex
+ texmf-dist/tex/plain/cweb/pdffcwebmac.tex
+ texmf-dist/tex/plain/cweb/pdficwebmac.tex
+ texmf-dist/tex/plain/cweb/pdfwebmac.tex
+catalogue-version 3.64ad
+catalogue-date 2007-05-17 10:20:12 +0200
+catalogue-ctan /web/c_cpp/cweb
+catalogue-license knuth
+
+name cweb-latex
+category Package
+revision 5271
+shortdesc A LaTeX version of CWEB.
+longdesc This bundle allows marking-up of CWEB code in LaTeX. The
+longdesc distribution includes the "Counting Words" program distributed
+longdesc with CWEB, edited to run with LaTeX.
+docfiles size=730235
+ texmf-dist/doc/latex/cweb-latex/CATALOG
+ texmf-dist/doc/latex/cweb-latex/History
+ texmf-dist/doc/latex/cweb-latex/INSTALL
+ texmf-dist/doc/latex/cweb-latex/License
+ texmf-dist/doc/latex/cweb-latex/MANIFEST
+ texmf-dist/doc/latex/cweb-latex/README details="Readme"
+ texmf-dist/doc/latex/cweb-latex/contrib/Index
+ texmf-dist/doc/latex/cweb-latex/contrib/cwbl-deutsch.sty
+ texmf-dist/doc/latex/cweb-latex/contrib/cwbl-french.sty
+ texmf-dist/doc/latex/cweb-latex/contrib/cwbl-italian.sty
+ texmf-dist/doc/latex/cweb-latex/contrib/cweb-hy/README.txt
+ texmf-dist/doc/latex/cweb-latex/contrib/cweb-hy/cwbasehy.tex
+ texmf-dist/doc/latex/cweb-latex/contrib/cweb-hy/cweb-hy.cls
+ texmf-dist/doc/latex/cweb-latex/contrib/cweb-hy/nodoc.tex
+ texmf-dist/doc/latex/cweb-latex/contrib/wagner/cwebzw.sty
+ texmf-dist/doc/latex/cweb-latex/cweb-conf.pdf details="Internal interfaces"
+ texmf-dist/doc/latex/cweb-latex/cweb-user.pdf details="User manual"
+ texmf-dist/doc/latex/cweb-latex/cwebbase.tex
+ texmf-dist/doc/latex/cweb-latex/examples/Makefile
+ texmf-dist/doc/latex/cweb-latex/examples/compare/wcltx.aux
+ texmf-dist/doc/latex/cweb-latex/examples/compare/wcltx.bbl
+ texmf-dist/doc/latex/cweb-latex/examples/compare/wcltx.dvi
+ texmf-dist/doc/latex/cweb-latex/examples/compare/wcltx.idx
+ texmf-dist/doc/latex/cweb-latex/examples/compare/wcltx.log
+ texmf-dist/doc/latex/cweb-latex/examples/compare/wcltx.scn
+ texmf-dist/doc/latex/cweb-latex/examples/compare/wcltx.tex
+ texmf-dist/doc/latex/cweb-latex/examples/rcs.sty
+ texmf-dist/doc/latex/cweb-latex/examples/tex-it
+ texmf-dist/doc/latex/cweb-latex/examples/wcltx.bib
+ texmf-dist/doc/latex/cweb-latex/examples/wcltx.w
+ texmf-dist/doc/latex/cweb-latex/src/Imakefile
+ texmf-dist/doc/latex/cweb-latex/src/README details="Readme"
+ texmf-dist/doc/latex/cweb-latex/src/TODO
+ texmf-dist/doc/latex/cweb-latex/src/cwbl-german.sty
+ texmf-dist/doc/latex/cweb-latex/src/cweave-spec.tex
+ texmf-dist/doc/latex/cweb-latex/src/cweb-conf.tex
+ texmf-dist/doc/latex/cweb-latex/src/cweb-doc.sty
+ texmf-dist/doc/latex/cweb-latex/src/cweb-fsa.fig
+ texmf-dist/doc/latex/cweb-latex/src/cweb-fsa.latex
+ texmf-dist/doc/latex/cweb-latex/src/cweb-fsa.ltx
+ texmf-dist/doc/latex/cweb-latex/src/cweb-user.tex
+ texmf-dist/doc/latex/cweb-latex/src/cweb.doc
+ texmf-dist/doc/latex/cweb-latex/src/cwebarray.sty
+ texmf-dist/doc/latex/cweb-latex/src/cwebbase.doc
+ texmf-dist/doc/latex/cweb-latex/src/cwebparts.doc
+ texmf-dist/doc/latex/cweb-latex/src/cwebx.sty
+ texmf-dist/doc/latex/cweb-latex/src/keyvald.dtx
+ texmf-dist/doc/latex/cweb-latex/src/keyvald.ins
+ texmf-dist/doc/latex/cweb-latex/src/style/cweb-doc.el
+ texmf-dist/doc/latex/cweb-latex/src/test/Imakefile
+ texmf-dist/doc/latex/cweb-latex/src/test/badend.w
+ texmf-dist/doc/latex/cweb-latex/src/test/badopts.w
+ texmf-dist/doc/latex/cweb-latex/src/test/change.ch
+ texmf-dist/doc/latex/cweb-latex/src/test/change.w
+ texmf-dist/doc/latex/cweb-latex/src/test/enddocbegin.w
+ texmf-dist/doc/latex/cweb-latex/src/test/flat.w
+ texmf-dist/doc/latex/cweb-latex/src/test/german.w
+ texmf-dist/doc/latex/cweb-latex/src/test/language-german.ch
+ texmf-dist/doc/latex/cweb-latex/src/test/language-german.w
+ texmf-dist/doc/latex/cweb-latex/src/test/minimal.w
+ texmf-dist/doc/latex/cweb-latex/src/test/modes.w
+ texmf-dist/doc/latex/cweb-latex/src/test/newif.w
+ texmf-dist/doc/latex/cweb-latex/src/test/nolists.w
+ texmf-dist/doc/latex/cweb-latex/src/test/parts-code.w
+ texmf-dist/doc/latex/cweb-latex/src/test/parts.tex
+ texmf-dist/doc/latex/cweb-latex/src/test/refname.w
+ texmf-dist/doc/latex/cweb-latex/src/test/report.w
+ texmf-dist/doc/latex/cweb-latex/src/test/section.w
+ texmf-dist/doc/latex/cweb-latex/src/test/sup-changes.w
+ texmf-dist/doc/latex/cweb-latex/src/test/sup-format.w
+ texmf-dist/doc/latex/cweb-latex/src/test/sup-lists.w
+ texmf-dist/doc/latex/cweb-latex/src/test/titlepage.w
+ texmf-dist/doc/latex/cweb-latex/src/test/token.w
+ texmf-dist/doc/latex/cweb-latex/src/test/vbar.w
+srcfiles size=1695
+ texmf-dist/source/latex/cweb-latex/Makefile
+runfiles size=55552
+ texmf-dist/tex/latex/cweb-latex/cwbl-german.sty
+ texmf-dist/tex/latex/cweb-latex/cweb.cls
+ texmf-dist/tex/latex/cweb-latex/cweb.cls.patch
+ texmf-dist/tex/latex/cweb-latex/cwebarray.sty
+ texmf-dist/tex/latex/cweb-latex/keyvald.sty
+catalogue-version
+catalogue-date 2007-02-04 13:34:13 +0100
+catalogue-ctan /macros/latex/contrib/cweb
+catalogue-license gpl
+
+name cwpuzzle
+category Package
+revision 1487
+docfiles size=50288
+ texmf-dist/doc/latex/cwpuzzle/cwpuzzle.dvi
+srcfiles size=64886
+ texmf-dist/source/latex/cwpuzzle/AcrossLite/README
+ texmf-dist/source/latex/cwpuzzle/AcrossLite/nytconv.c
+ texmf-dist/source/latex/cwpuzzle/AcrossLite/nytsconv.c
+ texmf-dist/source/latex/cwpuzzle/AcrossLite/usaconv.c
+ texmf-dist/source/latex/cwpuzzle/Makefile
+ texmf-dist/source/latex/cwpuzzle/README
+ texmf-dist/source/latex/cwpuzzle/cwpuzzle.dtx
+ texmf-dist/source/latex/cwpuzzle/cwpuzzle.ins
+runfiles size=6721
+ texmf-dist/tex/latex/cwpuzzle/cwpuzzle.sty
+
+name cyrillic
+category Package
+revision 2042
+shortdesc Support for Cyrillic fonts in LaTeX.
+longdesc This bundle of macros files provides macro support (including
+longdesc font encoding macros) for the use of Cyrillic characters in
+longdesc fonts encoded under the T2* and X2 encodings. These encodings
+longdesc cover (between them) pretty much every language that is written
+longdesc in a Cyrillic alphabet. This directory is part of the LaTeX
+longdesc “required” distribution.
+docfiles size=668286
+ texmf-dist/doc/latex/cyrillic/00readme.txt
+ texmf-dist/doc/latex/cyrillic/changes.txt
+ texmf-dist/doc/latex/cyrillic/cyinpenc.pdf
+ texmf-dist/doc/latex/cyrillic/cyoutenc.pdf
+ texmf-dist/doc/latex/cyrillic/lcy.pdf
+ texmf-dist/doc/latex/cyrillic/lcycmlh.pdf
+ texmf-dist/doc/latex/cyrillic/manifest.txt
+ texmf-dist/doc/latex/cyrillic/ot2.pdf
+ texmf-dist/doc/latex/cyrillic/ot2cmams.pdf
+ texmf-dist/doc/latex/cyrillic/ot2cmlh.pdf
+ texmf-dist/doc/latex/cyrillic/t2lhfnt.pdf
+srcfiles size=166324
+ texmf-dist/source/latex/cyrillic/cyinpenc.dtx
+ texmf-dist/source/latex/cyrillic/cyoutenc.dtx
+ texmf-dist/source/latex/cyrillic/cyrlatex.ins
+ texmf-dist/source/latex/cyrillic/lcy.dtx
+ texmf-dist/source/latex/cyrillic/lcycmlh.fdd
+ texmf-dist/source/latex/cyrillic/ot2.dtx
+ texmf-dist/source/latex/cyrillic/ot2cmams.fdd
+ texmf-dist/source/latex/cyrillic/ot2cmlh.fdd
+ texmf-dist/source/latex/cyrillic/t2lhfnt.fdd
+runfiles size=338784
+ texmf-dist/tex/latex/cyrillic/cp1251.def
+ texmf-dist/tex/latex/cyrillic/cp855.def
+ texmf-dist/tex/latex/cyrillic/cp866.def
+ texmf-dist/tex/latex/cyrillic/cp866av.def
+ texmf-dist/tex/latex/cyrillic/cp866mav.def
+ texmf-dist/tex/latex/cyrillic/cp866nav.def
+ texmf-dist/tex/latex/cyrillic/cp866tat.def
+ texmf-dist/tex/latex/cyrillic/ctt.def
+ texmf-dist/tex/latex/cyrillic/dbk.def
+ texmf-dist/tex/latex/cyrillic/iso88595.def
+ texmf-dist/tex/latex/cyrillic/isoir111.def
+ texmf-dist/tex/latex/cyrillic/koi8-r.def
+ texmf-dist/tex/latex/cyrillic/koi8-ru.def
+ texmf-dist/tex/latex/cyrillic/koi8-u.def
+ texmf-dist/tex/latex/cyrillic/lcy.sty
+ texmf-dist/tex/latex/cyrillic/lcyccr.fd
+ texmf-dist/tex/latex/cyrillic/lcycmbr.fd
+ texmf-dist/tex/latex/cyrillic/lcycmdh.fd
+ texmf-dist/tex/latex/cyrillic/lcycmfib.fd
+ texmf-dist/tex/latex/cyrillic/lcycmfr.fd
+ texmf-dist/tex/latex/cyrillic/lcycmr.fd
+ texmf-dist/tex/latex/cyrillic/lcycmss.fd
+ texmf-dist/tex/latex/cyrillic/lcycmtl.fd
+ texmf-dist/tex/latex/cyrillic/lcycmtt.fd
+ texmf-dist/tex/latex/cyrillic/lcycmvtt.fd
+ texmf-dist/tex/latex/cyrillic/lcydefs.tex
+ texmf-dist/tex/latex/cyrillic/lcyenc.def
+ texmf-dist/tex/latex/cyrillic/lcylcmss.fd
+ texmf-dist/tex/latex/cyrillic/lcylcmtt.fd
+ texmf-dist/tex/latex/cyrillic/maccyr.def
+ texmf-dist/tex/latex/cyrillic/macukr.def
+ texmf-dist/tex/latex/cyrillic/mik.def
+ texmf-dist/tex/latex/cyrillic/mls.def
+ texmf-dist/tex/latex/cyrillic/mnk.def
+ texmf-dist/tex/latex/cyrillic/mos.def
+ texmf-dist/tex/latex/cyrillic/ncc.def
+ texmf-dist/tex/latex/cyrillic/ot2ccr.fd
+ texmf-dist/tex/latex/cyrillic/ot2cmbr.fd
+ texmf-dist/tex/latex/cyrillic/ot2cmdh.fd
+ texmf-dist/tex/latex/cyrillic/ot2cmfib.fd
+ texmf-dist/tex/latex/cyrillic/ot2cmfr.fd
+ texmf-dist/tex/latex/cyrillic/ot2cmr.fd
+ texmf-dist/tex/latex/cyrillic/ot2cmss.fd
+ texmf-dist/tex/latex/cyrillic/ot2cmtl.fd
+ texmf-dist/tex/latex/cyrillic/ot2cmtt.fd
+ texmf-dist/tex/latex/cyrillic/ot2cmvtt.fd
+ texmf-dist/tex/latex/cyrillic/ot2enc.def
+ texmf-dist/tex/latex/cyrillic/ot2lcmss.fd
+ texmf-dist/tex/latex/cyrillic/ot2lcmtt.fd
+ texmf-dist/tex/latex/cyrillic/ot2wlcyr.fd
+ texmf-dist/tex/latex/cyrillic/ot2wlcyss.fd
+ texmf-dist/tex/latex/cyrillic/ot2wncyr.fd
+ texmf-dist/tex/latex/cyrillic/ot2wncyss.fd
+ texmf-dist/tex/latex/cyrillic/pt154.def
+ texmf-dist/tex/latex/cyrillic/pt254.def
+ texmf-dist/tex/latex/cyrillic/t2accr.fd
+ texmf-dist/tex/latex/cyrillic/t2acmbr.fd
+ texmf-dist/tex/latex/cyrillic/t2acmdh.fd
+ texmf-dist/tex/latex/cyrillic/t2acmfib.fd
+ texmf-dist/tex/latex/cyrillic/t2acmfr.fd
+ texmf-dist/tex/latex/cyrillic/t2acmr.fd
+ texmf-dist/tex/latex/cyrillic/t2acmss.fd
+ texmf-dist/tex/latex/cyrillic/t2acmtl.fd
+ texmf-dist/tex/latex/cyrillic/t2acmtt.fd
+ texmf-dist/tex/latex/cyrillic/t2acmvtt.fd
+ texmf-dist/tex/latex/cyrillic/t2aenc.def
+ texmf-dist/tex/latex/cyrillic/t2alcmss.fd
+ texmf-dist/tex/latex/cyrillic/t2alcmtt.fd
+ texmf-dist/tex/latex/cyrillic/t2bccr.fd
+ texmf-dist/tex/latex/cyrillic/t2bcmbr.fd
+ texmf-dist/tex/latex/cyrillic/t2bcmdh.fd
+ texmf-dist/tex/latex/cyrillic/t2bcmfib.fd
+ texmf-dist/tex/latex/cyrillic/t2bcmfr.fd
+ texmf-dist/tex/latex/cyrillic/t2bcmr.fd
+ texmf-dist/tex/latex/cyrillic/t2bcmss.fd
+ texmf-dist/tex/latex/cyrillic/t2bcmtl.fd
+ texmf-dist/tex/latex/cyrillic/t2bcmtt.fd
+ texmf-dist/tex/latex/cyrillic/t2bcmvtt.fd
+ texmf-dist/tex/latex/cyrillic/t2benc.def
+ texmf-dist/tex/latex/cyrillic/t2blcmss.fd
+ texmf-dist/tex/latex/cyrillic/t2blcmtt.fd
+ texmf-dist/tex/latex/cyrillic/t2cccr.fd
+ texmf-dist/tex/latex/cyrillic/t2ccmbr.fd
+ texmf-dist/tex/latex/cyrillic/t2ccmdh.fd
+ texmf-dist/tex/latex/cyrillic/t2ccmfib.fd
+ texmf-dist/tex/latex/cyrillic/t2ccmfr.fd
+ texmf-dist/tex/latex/cyrillic/t2ccmr.fd
+ texmf-dist/tex/latex/cyrillic/t2ccmss.fd
+ texmf-dist/tex/latex/cyrillic/t2ccmtl.fd
+ texmf-dist/tex/latex/cyrillic/t2ccmtt.fd
+ texmf-dist/tex/latex/cyrillic/t2ccmvtt.fd
+ texmf-dist/tex/latex/cyrillic/t2cenc.def
+ texmf-dist/tex/latex/cyrillic/t2clcmss.fd
+ texmf-dist/tex/latex/cyrillic/t2clcmtt.fd
+ texmf-dist/tex/latex/cyrillic/x2ccr.fd
+ texmf-dist/tex/latex/cyrillic/x2cmbr.fd
+ texmf-dist/tex/latex/cyrillic/x2cmdh.fd
+ texmf-dist/tex/latex/cyrillic/x2cmfib.fd
+ texmf-dist/tex/latex/cyrillic/x2cmfr.fd
+ texmf-dist/tex/latex/cyrillic/x2cmr.fd
+ texmf-dist/tex/latex/cyrillic/x2cmss.fd
+ texmf-dist/tex/latex/cyrillic/x2cmtl.fd
+ texmf-dist/tex/latex/cyrillic/x2cmtt.fd
+ texmf-dist/tex/latex/cyrillic/x2cmvtt.fd
+ texmf-dist/tex/latex/cyrillic/x2enc.def
+ texmf-dist/tex/latex/cyrillic/x2lcmss.fd
+ texmf-dist/tex/latex/cyrillic/x2lcmtt.fd
+catalogue-version
+catalogue-date 2006-12-13 11:35:55 +0100
+catalogue-ctan /macros/latex/required/cyrillic
+catalogue-license lppl
+
+name cyrplain
+category Package
+revision 621
+runfiles size=25003
+ texmf-dist/tex/plain/cyrplain/README
+ texmf-dist/tex/plain/cyrplain/cyramstx.ini
+ texmf-dist/tex/plain/cyrplain/cyrblue.ini
+ texmf-dist/tex/plain/cyrplain/cyrcmfnt.tex
+ texmf-dist/tex/plain/cyrplain/cyrecfnt.tex
+ texmf-dist/tex/plain/cyrplain/cyrtex.cfg
+ texmf-dist/tex/plain/cyrplain/cyrtex.ini
+ texmf-dist/tex/plain/cyrplain/cyrtex.tex
+ texmf-dist/tex/plain/cyrplain/cyrtxinf.ini
+ texmf-dist/tex/plain/cyrplain/makefmts.bat
+ texmf-dist/tex/plain/cyrplain/makefmts.sh
+ texmf-dist/tex/plain/cyrplain/plainenc.tex
+ texmf-dist/tex/plain/cyrplain/txxdefs.tex
+ texmf-dist/tex/plain/cyrplain/txxextra.tex
+
+name dancers
+category Package
+revision 101
+shortdesc Font for Conan Doyle's "The Dancing Men".
+longdesc The (Sherlock Holmes) book contains a code which uses dancing
+longdesc men as glyphs. The alphabet as given is not complete, lacking
+longdesc f, j, k, q, u, w, x and z, so those letters in the font are not
+longdesc due to Conan Doyle. The code required word endings to be marked
+longdesc by the dancing man representing the last letter to be holding a
+longdesc flag: these are coded as A-Z.
+longdesc thaTiStOsaYsentenceSiNthEcodElooKlikEthiS. In some cases, the
+longdesc man has no arms, making it impossible for him to hold a flag.
+longdesc In these cases, he is wearing a flag on his hat in the
+longdesc ‘character’. The font is distributed as MetaFont source.
+runfiles size=30752
+ texmf-dist/fonts/source/public/dancers/dancers.mf
+ texmf-dist/fonts/tfm/public/dancers/dancers.tfm
+catalogue-version
+catalogue-date 2007-09-25 10:08:38 +0200
+catalogue-ctan /fonts/dancers/dancers.mf
+catalogue-license unknown
+
+name dashbox
+category Package
+revision 814
+shortdesc Draw dashed boxes.
+longdesc The package can draw boxes that perform like \framebox or
+longdesc \fbox, but use dashed lines. The package can also draw (an
+longdesc illusion of) vertical stacks of boxes.
+srcfiles size=14604
+ texmf-dist/source/latex/dashbox/dashbox.dtx
+ texmf-dist/source/latex/dashbox/dashbox.ins
+runfiles size=5179
+ texmf-dist/tex/latex/dashbox/dashbox.sty
+catalogue-version
+catalogue-date 2007-03-05 22:02:45 +0100
+catalogue-ctan /macros/latex/contrib/dashbox
+catalogue-license lppl
+
+name dashrule
+category Package
+revision 815
+shortdesc Draw dashed rules.
+longdesc The dashrule package makes it easy to draw a huge variety of
+longdesc dashed rules (i.e., lines) in LaTeX. dashrule provides a
+longdesc command, \hdashrule, which is a cross between LaTeX's \rule and
+longdesc PostScript's setdash command. \hdashrule draws horizontally
+longdesc dashed rules using the same syntax as \rule, but with an
+longdesc additional, setdash-like parameter that specifies the pattern
+longdesc of dash segments and the space between those segments. Because
+longdesc dashrule's rules are constructed internally using \rule (as
+longdesc opposed to, e.g., PostScript \specials) they are fully
+longdesc compatible with every LaTeX back-end processor.
+docfiles size=1745
+ texmf-dist/doc/latex/dashrule/README
+srcfiles size=16373
+ texmf-dist/source/latex/dashrule/dashrule.dtx
+ texmf-dist/source/latex/dashrule/dashrule.ins
+runfiles size=1834
+ texmf-dist/tex/latex/dashrule/dashrule.sty
+catalogue-version 1.0
+catalogue-date 2006-12-17 18:48:45 +0100
+catalogue-ctan /macros/latex/contrib/dashrule
+catalogue-license lppl
+
+name datatool
+category Package
+revision 4804
+shortdesc Tools to load and manipulate data.
+longdesc The bundle provides five packages: – datatool.sty: databases
+longdesc may be created using LaTeX commands or by importing external
+longdesc files; they may be sorted numerically or alphabetically;
+longdesc repetitive operations (such as mail merging) may be performed
+longdesc on each row of a database, subject to conditions to exclude
+longdesc particular rows; commands are provided to examine database
+longdesc elements, and to convert formats (for example, to convert a
+longdesc numeric element to a format compatible with the fp package; –
+longdesc datapie.sty: a database may be represented as a pie chart;
+longdesc flexible options allow colouring of the chart, and annotation
+longdesc hooks are available; – dataplot.sty: a database may be
+longdesc represented as a 2-dimensional scatter or line plot; flexible
+longdesc options control of the plot's overall appearance, and of
+longdesc legends and other extra information; – databar.sty: a
+longdesc database may be represented as a bar chart; overall appearance,
+longdesc colouring and annotation are controllable; – databib.sty: a
+longdesc bibliography may be loaded into a datatool database, and
+longdesc manipulated there before being printed (this permits a LaTeX-
+longdesc based route to printing bibliographies in formats for which no
+longdesc BibTeX style is available). The bundle replaces and supersedes
+longdesc the author’s csvtools bundle.
+docfiles size=1184716
+ texmf-dist/doc/latex/datatool/README details="Readme"
+ texmf-dist/doc/latex/datatool/doc/CHANGES
+ texmf-dist/doc/latex/datatool/doc/datatool.pdf details="Package documentation"
+srcfiles size=605554
+ texmf-dist/source/latex/datatool/datatool.dtx
+ texmf-dist/source/latex/datatool/datatool.ins
+runfiles size=231683
+ texmf-dist/bibtex/bst/datatool/databib.bst
+ texmf-dist/tex/latex/datatool/databar.sty
+ texmf-dist/tex/latex/datatool/databib.sty
+ texmf-dist/tex/latex/datatool/datapie.sty
+ texmf-dist/tex/latex/datatool/dataplot.sty
+ texmf-dist/tex/latex/datatool/datatool.sty
+catalogue-version 1.0
+catalogue-date 2007-08-19 22:53:18 +0200
+catalogue-ctan /macros/latex/contrib/datatool
+catalogue-license lppl
+
+name dateiliste
+category Package
+revision 1984
+shortdesc Extensions of the \listfiles concept.
+longdesc The package provides a file list (similar to that offered by
+longdesc \listfiles), neatly laid out as a table. The main document can
+longdesc be included in the list, and a command is available for
+longdesc providing RCS-maintained data for printing in the file list.
+docfiles size=291090
+ texmf-dist/doc/latex/dateiliste/README details="Readme"
+ texmf-dist/doc/latex/dateiliste/README-de details="Readme" language="de"
+ texmf-dist/doc/latex/dateiliste/README-en details="Readme" language="en"
+ texmf-dist/doc/latex/dateiliste/README-eo details="Readme" language="eo"
+ texmf-dist/doc/latex/dateiliste/dateiliste.pdf details="Benutzerdoku:" language="de"
+srcfiles size=48286
+ texmf-dist/source/latex/dateiliste/dateiliste.dtx
+ texmf-dist/source/latex/dateiliste/dateiliste.ins
+runfiles size=10054
+ texmf-dist/tex/latex/dateiliste/dateiliste.sty
+catalogue-version 0.3
+catalogue-date 2007-03-05 22:02:45 +0100
+catalogue-ctan /macros/latex/contrib/dateiliste
+catalogue-license lppl
+
+name datenumber
+category Package
+revision 1487
+shortdesc Convert a date into a number and vice versa.
+longdesc This package provides commands to convert a date into a number
+longdesc and vice versa. Additionally there are commands for
+longdesc incrementing and decrementing a date. Leap years and the
+longdesc Gregorian calendar reform are considered.
+docfiles size=40247
+ texmf-dist/doc/latex/datenumber/README.txt details="Package README" language="en"
+ texmf-dist/doc/latex/datenumber/doc.dvi
+ texmf-dist/doc/latex/datenumber/doc.tex
+ texmf-dist/doc/latex/datenumber/docgerman.dvi
+ texmf-dist/doc/latex/datenumber/docgerman.tex
+srcfiles size=21311
+ texmf-dist/source/latex/datenumber/datenumber.dtx
+ texmf-dist/source/latex/datenumber/datenumber.ins
+runfiles size=17457
+ texmf-dist/tex/latex/datenumber/datenumber.sty
+ texmf-dist/tex/latex/datenumber/datenumberUSenglish.ldf
+ texmf-dist/tex/latex/datenumber/datenumberdummy.ldf
+ texmf-dist/tex/latex/datenumber/datenumberenglish.ldf
+ texmf-dist/tex/latex/datenumber/datenumberfrench.ldf
+ texmf-dist/tex/latex/datenumber/datenumbergerman.ldf
+ texmf-dist/tex/latex/datenumber/datenumberspanish.ldf
+catalogue-version 0.02
+catalogue-date 2006-11-16 11:36:05 +0100
+catalogue-ctan /macros/latex/contrib/datenumber
+catalogue-license lppl
+
+name datetime
+category Package
+revision 4803
+shortdesc Change format of \today with commands for current time.
+longdesc Provides various different formats for the command \today, and
+longdesc also provides commands for displaying the current time, in 12-
+longdesc hour, 24-hour or text format. The package requires the fmtcount
+longdesc package.
+docfiles size=243908
+ texmf-dist/doc/latex/datetime/CHANGES
+ texmf-dist/doc/latex/datetime/README details="Package README"
+ texmf-dist/doc/latex/datetime/datetime-manual.html
+ texmf-dist/doc/latex/datetime/datetime.pdf
+ texmf-dist/doc/latex/datetime/datetime.perl
+ texmf-dist/doc/latex/datetime/dt-lang.tex
+ texmf-dist/doc/latex/datetime/dt-sampl.tex
+srcfiles size=125696
+ texmf-dist/source/latex/datetime/datetime.dtx
+ texmf-dist/source/latex/datetime/datetime.ins
+runfiles size=172054
+ texmf-dist/tex/latex/datetime/datetime.sty
+ texmf-dist/tex/latex/datetime/dt-UKenglish.def
+ texmf-dist/tex/latex/datetime/dt-USenglish.def
+ texmf-dist/tex/latex/datetime/dt-austrian.def
+ texmf-dist/tex/latex/datetime/dt-bahasa.def
+ texmf-dist/tex/latex/datetime/dt-basque.def
+ texmf-dist/tex/latex/datetime/dt-breton.def
+ texmf-dist/tex/latex/datetime/dt-british.def
+ texmf-dist/tex/latex/datetime/dt-bulgarian.def
+ texmf-dist/tex/latex/datetime/dt-catalan.def
+ texmf-dist/tex/latex/datetime/dt-croatian.def
+ texmf-dist/tex/latex/datetime/dt-czech.def
+ texmf-dist/tex/latex/datetime/dt-danish.def
+ texmf-dist/tex/latex/datetime/dt-dutch.def
+ texmf-dist/tex/latex/datetime/dt-esperanto.def
+ texmf-dist/tex/latex/datetime/dt-estonian.def
+ texmf-dist/tex/latex/datetime/dt-finnish.def
+ texmf-dist/tex/latex/datetime/dt-french.def
+ texmf-dist/tex/latex/datetime/dt-galician.def
+ texmf-dist/tex/latex/datetime/dt-german.def
+ texmf-dist/tex/latex/datetime/dt-greek.def
+ texmf-dist/tex/latex/datetime/dt-hebrew.def
+ texmf-dist/tex/latex/datetime/dt-icelandic.def
+ texmf-dist/tex/latex/datetime/dt-irish.def
+ texmf-dist/tex/latex/datetime/dt-italian.def
+ texmf-dist/tex/latex/datetime/dt-latin.def
+ texmf-dist/tex/latex/datetime/dt-lsorbian.def
+ texmf-dist/tex/latex/datetime/dt-magyar.def
+ texmf-dist/tex/latex/datetime/dt-naustrian.def
+ texmf-dist/tex/latex/datetime/dt-ngerman.def
+ texmf-dist/tex/latex/datetime/dt-norsk.def
+ texmf-dist/tex/latex/datetime/dt-polish.def
+ texmf-dist/tex/latex/datetime/dt-portuges.def
+ texmf-dist/tex/latex/datetime/dt-romanian.def
+ texmf-dist/tex/latex/datetime/dt-russian.def
+ texmf-dist/tex/latex/datetime/dt-samin.def
+ texmf-dist/tex/latex/datetime/dt-scottish.def
+ texmf-dist/tex/latex/datetime/dt-serbian.def
+ texmf-dist/tex/latex/datetime/dt-slovak.def
+ texmf-dist/tex/latex/datetime/dt-slovene.def
+ texmf-dist/tex/latex/datetime/dt-spanish.def
+ texmf-dist/tex/latex/datetime/dt-swedish.def
+ texmf-dist/tex/latex/datetime/dt-turkish.def
+ texmf-dist/tex/latex/datetime/dt-ukraineb.def
+ texmf-dist/tex/latex/datetime/dt-usorbian.def
+ texmf-dist/tex/latex/datetime/dt-welsh.def
+catalogue-version 2.55
+catalogue-date 2007-08-20 18:17:26 +0200
+catalogue-ctan /macros/latex/contrib/datetime
+catalogue-license lppl
+
+name dcpic
+category Package
+revision 818
+docfiles size=350789
+ texmf-dist/doc/latex/dcpic/examples.tex
+ texmf-dist/doc/latex/dcpic/gpl.txt
+ texmf-dist/doc/latex/dcpic/man4.0-pt.pdf
+ texmf-dist/doc/latex/dcpic/man4.0.pdf
+runfiles size=37030
+ texmf-dist/tex/latex/dcpic/dcpic.sty
+
+name decimal
+category Package
+revision 819
+shortdesc LaTeX package for the English raised decimal point.
+longdesc This LaTeX package should be used by people who need the
+longdesc traditional English raised decimal point, instead of the
+longdesc American-style period.
+srcfiles size=10251
+ texmf-dist/source/latex/decimal/decimal.dtx
+ texmf-dist/source/latex/decimal/decimal.ins
+runfiles size=1828
+ texmf-dist/tex/latex/decimal/decimal.sty
+catalogue-version
+catalogue-date 2006-12-17 18:48:45 +0100
+catalogue-ctan /macros/latex/contrib/decimal
+catalogue-license lppl
+
+name deleq
+category Package
+revision 1487
+shortdesc Flexible numbering of equations.
+longdesc Provides a more flexible numbering of equations and 'recycled'
+longdesc equations, including 'partial' equation numbers ("3a", "3b",
+longdesc etc.).
+docfiles size=57645
+ texmf-dist/doc/latex/deleq/deleq.dvi
+ texmf-dist/doc/latex/deleq/delex.dvi
+ texmf-dist/doc/latex/deleq/delex.tex
+srcfiles size=43325
+ texmf-dist/source/latex/deleq/00readme.dlq
+ texmf-dist/source/latex/deleq/deleq.dtx
+ texmf-dist/source/latex/deleq/deleq.ins
+runfiles size=7540
+ texmf-dist/tex/latex/deleq/deleq.sty
+catalogue-version
+catalogue-date 2006-12-17 18:48:45 +0100
+catalogue-ctan /macros/latex/contrib/deleq
+catalogue-license nosell
+
+name delimtxt
+category Package
+revision 4333
+shortdesc Read and parse text tables.
+longdesc This experimental package can read and parse text tables
+longdesc delimited by user-defined tokens (e.g., tab). It can be used
+longdesc for serial letters and the like, making it easier to export the
+longdesc data file from MS-Excel/MS-Word
+docfiles size=57434
+ texmf-dist/doc/latex/delimtxt/delimtxt.pdf
+ texmf-dist/doc/latex/delimtxt/resulta.dat
+ texmf-dist/doc/latex/delimtxt/resultb.dat
+ texmf-dist/doc/latex/delimtxt/resultc.dat
+ texmf-dist/doc/latex/delimtxt/test1.tex
+ texmf-dist/doc/latex/delimtxt/test2.tex
+ texmf-dist/doc/latex/delimtxt/test3.tex
+srcfiles size=9141
+ texmf-dist/source/latex/delimtxt/delimtxt.dtx
+ texmf-dist/source/latex/delimtxt/delimtxt.ins
+runfiles size=4181
+ texmf-dist/tex/latex/delimtxt/delimtxt.sty
+catalogue-version
+catalogue-date 2006-03-21 15:26:53 +0100
+catalogue-ctan /macros/latex/exptl/delimtxt
+catalogue-license lppl
+
+name diagnose
+category Package
+revision 1487
+shortdesc A diagnostic tool for a TeX installation.
+longdesc Provides macros to assist evaluation of the capabilities of a
+longdesc TeX installation (i.e., what extensions it supports). An
+longdesc example document that examines the installation is available.
+docfiles size=111053
+ texmf-dist/doc/latex/diagnose/README details="Package Readme"
+ texmf-dist/doc/latex/diagnose/diagnose.pdf
+ texmf-dist/doc/latex/diagnose/diagnose.tex
+ texmf-dist/doc/latex/diagnose/mls-diag.dvi
+ texmf-dist/doc/latex/diagnose/mls-diag.tex
+srcfiles size=1470
+ texmf-dist/source/latex/diagnose/INSTALL
+runfiles size=1721
+ texmf-dist/tex/latex/diagnose/diagnose.sty
+catalogue-version 0.2
+catalogue-date 2006-12-17 18:48:45 +0100
+catalogue-ctan /macros/latex/contrib/diagnose
+catalogue-license gpl
+
+name dialogl
+category Package
+revision 1487
+shortdesc Macros for constructing interactive LaTeX scripts.
+longdesc Gathers together a bunch of code and examples about how to
+longdesc write macros to carry on a dialogue with the user.
+docfiles size=506061
+ texmf-dist/doc/latex/dialogl/animals.tex
+ texmf-dist/doc/latex/dialogl/animals2.tex
+ texmf-dist/doc/latex/dialogl/cnvunits.tex
+ texmf-dist/doc/latex/dialogl/codialog.dvi
+ texmf-dist/doc/latex/dialogl/codialog.tex
+ texmf-dist/doc/latex/dialogl/dia-driv.dvi
+ texmf-dist/doc/latex/dialogl/dia-driv.tex
+ texmf-dist/doc/latex/dialogl/diatest.tex
+ texmf-dist/doc/latex/dialogl/fontmenu.tex
+ texmf-dist/doc/latex/dialogl/listout.tex
+srcfiles size=293449
+ texmf-dist/source/latex/dialogl/READ.ME
+ texmf-dist/source/latex/dialogl/animal.dat
+ texmf-dist/source/latex/dialogl/default.los
+ texmf-dist/source/latex/dialogl/dialog.dtx
+ texmf-dist/source/latex/dialogl/dialog.stp
+ texmf-dist/source/latex/dialogl/dialogl.ins
+ texmf-dist/source/latex/dialogl/grabhedr.dtx
+ texmf-dist/source/latex/dialogl/grabhedr.stp
+ texmf-dist/source/latex/dialogl/listout.dtx
+ texmf-dist/source/latex/dialogl/menus.dtx
+ texmf-dist/source/latex/dialogl/menus.stp
+ texmf-dist/source/latex/dialogl/uktex91.1x
+runfiles size=40588
+ texmf-dist/tex/latex/dialogl/dialog.sty
+ texmf-dist/tex/latex/dialogl/dialogl.sty
+ texmf-dist/tex/latex/dialogl/grabhedr.sty
+ texmf-dist/tex/latex/dialogl/menus.sty
+catalogue-version
+catalogue-date 2006-12-17 18:48:45 +0100
+catalogue-ctan /macros/latex/contrib/dialogl
+catalogue-license unknown
+
+name dice
+category Package
+revision 1487
+shortdesc A font for die faces.
+longdesc A MetaFont font that can produce die faces in 2D or with
+longdesc various 3D effects.
+docfiles size=4147
+ texmf-dist/doc/fonts/dice/dice3d.dvi
+ texmf-dist/doc/fonts/dice/dice3d.tex
+runfiles size=17753
+ texmf-dist/fonts/source/public/dice/dice3d.mf
+ texmf-dist/fonts/tfm/public/dice/dice3d.tfm
+catalogue-version
+catalogue-date 2007-01-01 17:45:33 +0100
+catalogue-ctan /fonts/dice
+catalogue-license lppl
+
+name dichokey
+category Package
+revision 1487
+shortdesc Construct dichotomous identification keys.
+longdesc The package can be used to construct dichotomous identification
+longdesc keys (used especially in biology for species identification),
+longdesc taking care of numbering and indentation of successive key
+longdesc steps automatically. An example file is provided, which
+longdesc demonstrates usage.
+docfiles size=9001
+ texmf-dist/doc/latex/dichokey/rhodocyb.dvi
+ texmf-dist/doc/latex/dichokey/rhodocyb.tex
+runfiles size=4359
+ texmf-dist/tex/latex/dichokey/dichokey.sty
+catalogue-version
+catalogue-date 2006-10-17 17:36:43 +0200
+catalogue-ctan /macros/latex/contrib/dichokey
+catalogue-license pd
+
+name dictsym
+category Package
+revision 825
+shortdesc DictSym font and macro package
+longdesc This directory contains the DictSym Type1 font designed by
+longdesc Georg Verweyen and all files required to use it with LaTeX on
+longdesc the Unix or PC platforms. The font provides a number of symbols
+longdesc commonly used in dictionaries. The accompanying macro package
+longdesc makes the symbols accessible as LaTeX commands.
+execute addMap dictsym.map
+docfiles size=31644
+ texmf-dist/doc/fonts/dictsym/README details="Readme"
+ texmf-dist/doc/fonts/dictsym/dictsym.pdf details="Package documentation"
+ texmf-dist/doc/fonts/dictsym/dictsym.tex
+runfiles size=65022
+ texmf-dist/fonts/afm/public/dictsym/dictsym.afm
+ texmf-dist/fonts/map/dvips/dictsym/dictsym.map
+ texmf-dist/fonts/tfm/public/dictsym/dictsym.tfm
+ texmf-dist/fonts/type1/public/dictsym/dictsym.pfb
+ texmf-dist/fonts/type1/public/dictsym/dictsym.pfm
+ texmf-dist/tex/latex/dictsym/dictsym.sty
+catalogue-version
+catalogue-date 2007-09-25 10:20:14 +0200
+catalogue-ctan /fonts/dictsym
+catalogue-license lppl
+
+name digiconfigs
+category Package
+revision 1737
+shortdesc Writing "configurations"
+longdesc In Stochastic Geometry and Digital Image Analysis some problems
+longdesc can be solved in terms of so-called “configurations”. A
+longdesc configuration is basically a square matrix of \circ and \bullet
+longdesc symbols. This package provides a convenient and compact
+longdesc mechanism for displaying these configurations.
+docfiles size=133538
+ texmf-dist/doc/latex/digiconfigs/README details="Readme"
+ texmf-dist/doc/latex/digiconfigs/digiconfigs.pdf details="Package documentation"
+ texmf-dist/doc/latex/digiconfigs/digiconfigs.tex
+runfiles size=4719
+ texmf-dist/tex/latex/digiconfigs/digiconfigs.sty
+catalogue-version 0.5
+catalogue-date 2007-03-05 22:02:45 +0100
+catalogue-ctan /macros/latex/contrib/digiconfigs
+catalogue-license lppl
+
+name dinat
+category Package
+revision 4772
+shortdesc Bibliography style for German texts.
+longdesc Bibliography style files intended for texts in german. They
+longdesc draw up bibliographies in accordance with the german DIN 1505,
+longdesc parts 2 and 3. For more information see the included
+longdesc documentation.
+docfiles size=35149
+ texmf-dist/doc/bibtex/dinat/dinat-index.html language="de"
+ texmf-dist/doc/bibtex/dinat/history.html
+runfiles size=44478
+ texmf-dist/bibtex/bst/dinat/dinat.bst
+catalogue-version 2.3
+catalogue-date 2007-07-28 10:25:08 +0200
+catalogue-ctan /biblio/bibtex/contrib/german/dinat
+catalogue-license pd
+
+name dinbrief
+category Package
+revision 4668
+shortdesc German letter DIN style.
+longdesc Implements a document layout for writing letters according to
+longdesc the rules of DIN (Deutsches Institut für Normung, German
+longdesc standardisation institute). A style file for LaTeX 2.09 (with
+longdesc limited support of the features) is part of the package. Since
+longdesc the letter layout is based on a German standard, the user guide
+longdesc is written in German, but most macros have English names from
+longdesc which the user can recognize what they are used for. In
+longdesc addition there are example files showing how letters may be
+longdesc created with the package. A graphical interface for use of the
+longdesc dinbrief is provided in the dinbrief-GUI bundle.
+docfiles size=595386
+ texmf-dist/doc/latex/dinbrief/brfbody.tex
+ texmf-dist/doc/latex/dinbrief/brfkopf.tex
+ texmf-dist/doc/latex/dinbrief/dbold.tex
+ texmf-dist/doc/latex/dinbrief/dinbrief.pdf details="User Guide and Implementation"
+ texmf-dist/doc/latex/dinbrief/dinbrief.tex
+ texmf-dist/doc/latex/dinbrief/dintab.tex
+ texmf-dist/doc/latex/dinbrief/example.tex
+ texmf-dist/doc/latex/dinbrief/liesmich details="Package Readme" language="de"
+ texmf-dist/doc/latex/dinbrief/readme details="Package Readme" language="en"
+ texmf-dist/doc/latex/dinbrief/test10.tex
+ texmf-dist/doc/latex/dinbrief/test11.tex
+ texmf-dist/doc/latex/dinbrief/test12.tex
+ texmf-dist/doc/latex/dinbrief/testnorm.tex
+srcfiles size=253081
+ texmf-dist/source/latex/dinbrief/dinbrief.drv
+ texmf-dist/source/latex/dinbrief/dinbrief.dtx
+ texmf-dist/source/latex/dinbrief/dinbrief.ins
+runfiles size=62603
+ texmf-dist/tex/latex/dinbrief/dinbrief.cfg
+ texmf-dist/tex/latex/dinbrief/dinbrief.cls
+ texmf-dist/tex/latex/dinbrief/dinbrief.sty
+catalogue-version
+catalogue-date 2007-07-27 17:06:01 +0200
+catalogue-ctan /macros/latex/contrib/dinbrief
+catalogue-license lppl
+
+name dingbat
+category Package
+revision 2411
+shortdesc Two dingbat symbol fonts.
+longdesc The fonts (ark10 and dingbat) are specified in MetaFont;
+longdesc support macros are provided for use in plain TeX and in LaTeX.
+docfiles size=133420
+ texmf-dist/doc/latex/dingbat/README details="Readme"
+ texmf-dist/doc/latex/dingbat/dingbat.pdf details="Package details including symbol table"
+ texmf-dist/doc/latex/dingbat/dingbat.tex
+srcfiles size=12356
+ texmf-dist/source/latex/dingbat/dingbat.dtx
+ texmf-dist/source/latex/dingbat/dingbat.ins
+runfiles size=38560
+ texmf-dist/fonts/source/public/dingbat/ark10.mf
+ texmf-dist/fonts/source/public/dingbat/dingbat.mf
+ texmf-dist/fonts/tfm/public/dingbat/ark10.tfm
+ texmf-dist/fonts/tfm/public/dingbat/dingbat.tfm
+ texmf-dist/tex/latex/dingbat/dingbat.sty
+ texmf-dist/tex/latex/dingbat/uark.fd
+ texmf-dist/tex/latex/dingbat/udingbat.fd
+catalogue-version 1.0
+catalogue-date 2007-01-01 18:45:52 +0100
+catalogue-ctan /fonts/dingbat
+catalogue-license lppl
+
+name directory
+category Package
+revision 2366
+shortdesc An address book using BibTeX.
+longdesc A package for LaTeX and BibTeX that facilitates the
+longdesc construction, maintenance and exploitation of an address book-
+longdesc like database.
+docfiles size=222041
+ texmf-dist/doc/latex/directory/README details="Package Readme"
+ texmf-dist/doc/latex/directory/directory.pdf details="Package documentation"
+ texmf-dist/doc/latex/directory/directory.tex
+runfiles size=112940
+ texmf-dist/bibtex/bib/directory/business.bib
+ texmf-dist/bibtex/bib/directory/family.bib
+ texmf-dist/bibtex/bst/directory/address-html.bst
+ texmf-dist/bibtex/bst/directory/address-ldif.bst
+ texmf-dist/bibtex/bst/directory/address-vcard.bst
+ texmf-dist/bibtex/bst/directory/address.bst
+ texmf-dist/bibtex/bst/directory/birthday.bst
+ texmf-dist/bibtex/bst/directory/email-html.bst
+ texmf-dist/bibtex/bst/directory/email.bst
+ texmf-dist/bibtex/bst/directory/letter.bst
+ texmf-dist/bibtex/bst/directory/phone.bst
+ texmf-dist/tex/latex/directory/directory.sty
+catalogue-version 1.20
+catalogue-date 2007-01-22 14:15:41 +0100
+catalogue-ctan /biblio/bibtex/contrib/directory
+catalogue-license lppl
+
+name disser
+category Package
+revision 4658
+shortdesc Class and templates for typesetting dissertations in Russian.
+longdesc Disser comprises a document class and set of templates for
+longdesc typesetting dissertations in Russian. One of its primary
+longdesc advantages is a simplicity of format specification for
+longdesc titlepage, headers and elements of automatically generated
+longdesc lists (table of contents, list of figures, etc).
+docfiles size=265213
+ texmf-dist/doc/latex/disser/README details="Readme (English)" language="en"
+ texmf-dist/doc/latex/disser/README.ru details="Readme (Russian)" language="ru"
+ texmf-dist/doc/latex/disser/changelog.txt
+ texmf-dist/doc/latex/disser/nomake.cmd
+ texmf-dist/doc/latex/disser/templates/Makefile
+ texmf-dist/doc/latex/disser/templates/bachelor/1.tex
+ texmf-dist/doc/latex/disser/templates/bachelor/Makefile
+ texmf-dist/doc/latex/disser/templates/bachelor/app-a.tex
+ texmf-dist/doc/latex/disser/templates/bachelor/concl.tex
+ texmf-dist/doc/latex/disser/templates/bachelor/fig/Makefile
+ texmf-dist/doc/latex/disser/templates/bachelor/fig/fig.eps
+ texmf-dist/doc/latex/disser/templates/bachelor/intro.tex
+ texmf-dist/doc/latex/disser/templates/bachelor/nomake.cmd
+ texmf-dist/doc/latex/disser/templates/bachelor/thesis.bib
+ texmf-dist/doc/latex/disser/templates/bachelor/thesis.tex
+ texmf-dist/doc/latex/disser/templates/candidate/1.tex
+ texmf-dist/doc/latex/disser/templates/candidate/Makefile
+ texmf-dist/doc/latex/disser/templates/candidate/app-a.tex
+ texmf-dist/doc/latex/disser/templates/candidate/autoref.tex
+ texmf-dist/doc/latex/disser/templates/candidate/concl.tex
+ texmf-dist/doc/latex/disser/templates/candidate/fig/Makefile
+ texmf-dist/doc/latex/disser/templates/candidate/fig/fig.eps
+ texmf-dist/doc/latex/disser/templates/candidate/intro.tex
+ texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd
+ texmf-dist/doc/latex/disser/templates/candidate/review.tex
+ texmf-dist/doc/latex/disser/templates/candidate/thesis.bib
+ texmf-dist/doc/latex/disser/templates/candidate/thesis.tex
+ texmf-dist/doc/latex/disser/templates/doctor/1.tex
+ texmf-dist/doc/latex/disser/templates/doctor/Makefile
+ texmf-dist/doc/latex/disser/templates/doctor/app-a.tex
+ texmf-dist/doc/latex/disser/templates/doctor/autoref.tex
+ texmf-dist/doc/latex/disser/templates/doctor/concl.tex
+ texmf-dist/doc/latex/disser/templates/doctor/fig/Makefile
+ texmf-dist/doc/latex/disser/templates/doctor/fig/fig.eps
+ texmf-dist/doc/latex/disser/templates/doctor/intro.tex
+ texmf-dist/doc/latex/disser/templates/doctor/nomake.cmd
+ texmf-dist/doc/latex/disser/templates/doctor/review.tex
+ texmf-dist/doc/latex/disser/templates/doctor/thesis.bib
+ texmf-dist/doc/latex/disser/templates/doctor/thesis.tex
+ texmf-dist/doc/latex/disser/templates/latex.fig.mk
+ texmf-dist/doc/latex/disser/templates/latex.mk
+ texmf-dist/doc/latex/disser/templates/master/1.tex
+ texmf-dist/doc/latex/disser/templates/master/Makefile
+ texmf-dist/doc/latex/disser/templates/master/app-a.tex
+ texmf-dist/doc/latex/disser/templates/master/concl.tex
+ texmf-dist/doc/latex/disser/templates/master/fig/Makefile
+ texmf-dist/doc/latex/disser/templates/master/fig/fig.eps
+ texmf-dist/doc/latex/disser/templates/master/intro.tex
+ texmf-dist/doc/latex/disser/templates/master/nomake.cmd
+ texmf-dist/doc/latex/disser/templates/master/thesis.bib
+ texmf-dist/doc/latex/disser/templates/master/thesis.tex
+ texmf-dist/doc/latex/disser/templates/nomake.cmd
+srcfiles size=82234
+ texmf-dist/source/latex/disser/Makefile
+ texmf-dist/source/latex/disser/autoref.dtx
+ texmf-dist/source/latex/disser/bachelor.dtx
+ texmf-dist/source/latex/disser/candidate.dtx
+ texmf-dist/source/latex/disser/chapter.dtx
+ texmf-dist/source/latex/disser/counters.dtx
+ texmf-dist/source/latex/disser/custom.dtx
+ texmf-dist/source/latex/disser/disser.dtx
+ texmf-dist/source/latex/disser/disser.ins
+ texmf-dist/source/latex/disser/doctor.dtx
+ texmf-dist/source/latex/disser/env.dtx
+ texmf-dist/source/latex/disser/floats.dtx
+ texmf-dist/source/latex/disser/footnote.dtx
+ texmf-dist/source/latex/disser/gost732.dtx
+ texmf-dist/source/latex/disser/lists.dtx
+ texmf-dist/source/latex/disser/master.dtx
+ texmf-dist/source/latex/disser/page.dtx
+ texmf-dist/source/latex/disser/part.dtx
+ texmf-dist/source/latex/disser/sections.dtx
+ texmf-dist/source/latex/disser/titledefs.dtx
+ texmf-dist/source/latex/disser/titlepage.dtx
+ texmf-dist/source/latex/disser/toc.dtx
+runfiles size=47158
+ texmf-dist/tex/latex/disser/autoref.rtx
+ texmf-dist/tex/latex/disser/bachelor.rtx
+ texmf-dist/tex/latex/disser/candidate.rtx
+ texmf-dist/tex/latex/disser/disser.cls
+ texmf-dist/tex/latex/disser/doctor.rtx
+ texmf-dist/tex/latex/disser/gost732.cls
+ texmf-dist/tex/latex/disser/master.rtx
+ texmf-dist/tex/latex/disser/titledefs.rtx
+catalogue-version 1.0.3
+catalogue-date 2007-07-15 12:21:43 +0200
+catalogue-ctan /macros/latex/contrib/disser
+catalogue-license lppl
+
+name dk-bib
+category Package
+revision 2240
+shortdesc Danish variants of standard BibTeX styles.
+longdesc Dk-bib is a translation of the four standard BibTeX style files
+longdesc (abbrv, alpha, plain and unsrt) and the apalike style file into
+longdesc Danish. The files have been extended with URL, ISBN, ISSN,
+longdesc annote and printing fields which can be enabled through a LaTeX
+longdesc style file. Dk-bib also comes with a couple of Danish sorting
+longdesc order files for BibTeX8.
+docfiles size=458481
+ texmf-dist/doc/latex/dk-bib/COPYRIGHT
+ texmf-dist/doc/latex/dk-bib/README details="Readme"
+ texmf-dist/doc/latex/dk-bib/dk-bib.ltx
+ texmf-dist/doc/latex/dk-bib/dk-bib.pdf details="Package documentation"
+srcfiles size=2609
+ texmf-dist/source/latex/dk-bib/Makefile
+runfiles size=146525
+ texmf-dist/bibtex/bib/dk-bib/litteratur.bib
+ texmf-dist/bibtex/bst/dk-bib/dk-abbrv.bst
+ texmf-dist/bibtex/bst/dk-bib/dk-alpha.bst
+ texmf-dist/bibtex/bst/dk-bib/dk-apali.bst
+ texmf-dist/bibtex/bst/dk-bib/dk-plain.bst
+ texmf-dist/bibtex/bst/dk-bib/dk-unsrt.bst
+ texmf-dist/bibtex/csf/dk-bib/88591-dk.csf
+ texmf-dist/bibtex/csf/dk-bib/cp850-dk.csf
+ texmf-dist/bibtex/csf/dk-bib/mac-dk.csf
+ texmf-dist/bibtex/csf/dk-bib/utf8-dk.csf
+ texmf-dist/tex/latex/dk-bib/dk-apali.sty
+ texmf-dist/tex/latex/dk-bib/dk-bib.sty
+catalogue-version 0.6
+catalogue-date 2007-01-01 18:45:52 +0100
+catalogue-ctan /biblio/bibtex/contrib/dk-bib
+catalogue-license dfsg
+
+name dlfltxb
+category Package
+revision 4607
+shortdesc Macros related to "Introdktion til LaTeX".
+longdesc The bundle contains various macros either used for creating the
+longdesc author’s book “Introduktion til LaTeX” (in Danish), or
+longdesc presented in the book as code tips. The bundle comprises: –
+longdesc dlfltxbcodetips: various macros helpful in typesetting
+longdesc mathematics; – dlfltxbmarkup: provides a macros used
+longdesc throughout the book, for registering macro names, packages etc.
+longdesc in the text, in the margin and in the index, all by using
+longdesc categorised keys (note, a configuration file may be used; a
+longdesc sample is included in the distribution); – dlfltxbmisc:
+longdesc various macros for typesetting LaTeX arguments, and the macro
+longdesc used in the bibliography that can wrap a URL up into a bibtex
+longdesc entry.
+docfiles size=647185
+ texmf-dist/doc/latex/dlfltxb/README details="Readme"
+ texmf-dist/doc/latex/dlfltxb/dlfltxbcodetips.pdf details="dlfltxbcodetips package documentation"
+ texmf-dist/doc/latex/dlfltxb/dlfltxbcodetips.tex
+ texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup-sample.cfg
+ texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.pdf details="dlfltxbmarkup key description summary"
+ texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.tex
+ texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup.pdf details="dlfltxbmarkup package documentation"
+ texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup.tex
+ texmf-dist/doc/latex/dlfltxb/dlfltxbmisc.pdf details="dlfltxbmisc package documentation"
+ texmf-dist/doc/latex/dlfltxb/dlfltxbmisc.tex
+ texmf-dist/doc/latex/dlfltxb/package_doc.bib
+runfiles size=21050
+ texmf-dist/tex/latex/dlfltxb/dlfltxbcodetips.sty
+ texmf-dist/tex/latex/dlfltxb/dlfltxbmarkup.sty
+ texmf-dist/tex/latex/dlfltxb/dlfltxbmisc.sty
+catalogue-version 0.26
+catalogue-date 2007-07-11 23:06:50 +0200
+catalogue-ctan /macros/latex/contrib/dlfltxb
+catalogue-license lppl
+
+name dnaseq
+category Package
+revision 1487
+shortdesc Format DNA base sequences.
+longdesc Defines a means of specifying sequences of bases. The bases may
+longdesc be numbered (per line) and you may specify that subsequences be
+longdesc coloured. For a more ‘vanilla-flavoured’ way of typesetting
+longdesc base sequences, the user might consider the seqsplit package.
+docfiles size=57242
+ texmf-dist/doc/latex/dnaseq/DNAtest.dvi
+ texmf-dist/doc/latex/dnaseq/DNAtest.tex
+ texmf-dist/doc/latex/dnaseq/README details="Readme"
+srcfiles size=8087
+ texmf-dist/source/latex/dnaseq/dnaseq.dtx
+ texmf-dist/source/latex/dnaseq/dnaseq.ins
+runfiles size=2918
+ texmf-dist/tex/latex/dnaseq/dnaseq.sty
+catalogue-version 0.01
+catalogue-date 2007-07-23 22:41:48 +0200
+catalogue-ctan /macros/latex/contrib/dnaseq
+catalogue-license lppl
+
+name docmfp
+category Package
+revision 831
+shortdesc Document non-LaTeX code.
+longdesc Extends the doc package to cater for documenting non-LaTeX
+longdesc code, such as MetaFont or MetaPost, or other programming
+longdesc languages.
+docfiles size=778
+ texmf-dist/doc/latex/docmfp/README details="Package Readme"
+srcfiles size=25798
+ texmf-dist/source/latex/docmfp/docmfp.dtx
+ texmf-dist/source/latex/docmfp/docmfp.ins
+runfiles size=4144
+ texmf-dist/tex/latex/docmfp/docmfp.sty
+catalogue-version
+catalogue-date 2006-12-14 22:33:34 +0100
+catalogue-ctan /macros/latex/contrib/docmfp
+catalogue-license lppl
+
+name doi
+category Package
+revision 4654
+shortdesc Create correct hyperlinks for DOI numbers.
+longdesc You can hyperlink DOI numbers to dx.doi.org. However, some
+longdesc publishers have elected to use nasty characters in their DOI
+longdesc numbering scheme (‘<’, ‘>’, ‘_’ and ‘;’ have
+longdesc all been spotted). This will either upset (La)TeX, or your PDF
+longdesc reader. This package contains a single user-level command
+longdesc \doi{}, which takes a DOI number, and creates a correct
+longdesc hyperlink from it.
+docfiles size=1064
+ texmf-dist/doc/latex/doi/README details="Readme"
+runfiles size=3066
+ texmf-dist/tex/latex/doi/doi.sty
+catalogue-version
+catalogue-date 2007-07-25 00:50:02 +0200
+catalogue-ctan /macros/latex/contrib/doi
+catalogue-license lppl
+
+name doipubmed
+category Package
+revision 4802
+shortdesc Special commands for use in bibliographies.
+longdesc The package provides the commands \doi, \pubmed and \citeurl.
+longdesc These commands are primarily designed for use in
+longdesc bibliographies. A LaTeX2HTML style file is also provided.
+docfiles size=91195
+ texmf-dist/doc/latex/doipubmed/CHANGES
+ texmf-dist/doc/latex/doipubmed/README details="Readme"
+ texmf-dist/doc/latex/doipubmed/doipubmed-manual.html
+ texmf-dist/doc/latex/doipubmed/doipubmed.pdf
+ texmf-dist/doc/latex/doipubmed/doipubmed.perl
+srcfiles size=11448
+ texmf-dist/source/latex/doipubmed/doipubmed.dtx
+ texmf-dist/source/latex/doipubmed/doipubmed.ins
+runfiles size=3560
+ texmf-dist/tex/latex/doipubmed/doipubmed.sty
+catalogue-version 1.01
+catalogue-date 2007-08-20 18:17:26 +0200
+catalogue-ctan /macros/latex/contrib/doipubmed
+catalogue-license lppl
+
+name dotseqn
+category Package
+revision 833
+shortdesc Flush left equations with dotted leaders to the numbers.
+longdesc The package provides a different format for typesetting
+longdesc equations, one reportedly used in 'old style Britsh books':
+longdesc equations aligned on the left, with dots on the right leading
+longdesc to the equation number. In default of an equation number, the
+longdesc package operates much like the fleqn class option (no leaders).
+srcfiles size=14724
+ texmf-dist/source/latex/dotseqn/dotseqn.dtx
+ texmf-dist/source/latex/dotseqn/dotseqn.ins
+ texmf-dist/source/latex/dotseqn/readme
+runfiles size=3124
+ texmf-dist/tex/latex/dotseqn/dotseqn.sty
+catalogue-version 1.1
+catalogue-date 2006-12-07 15:13:33 +0100
+catalogue-ctan /macros/latex/contrib/dotseqn
+catalogue-license unknown
+
+name dottex
+category Package
+revision 4793
+shortdesc Use dot code in LaTeX.
+longdesc The dottex package allows you to encapsulate ‘dot’ and
+longdesc ‘neato’ files in your document (dot and neato are both part
+longdesc of graphviz; dot creates directed graphs, neato undirected
+longdesc graphs). If you have shell-escape enabled, the package will
+longdesc arrange for your files to be processed at LaTeX time;
+longdesc otherwise, the conversion must be done manually as an
+longdesc intermediate process before a second LaTeX run.
+docfiles size=112221
+ texmf-dist/doc/latex/dottex/README
+ texmf-dist/doc/latex/dottex/dottex.pdf
+ texmf-dist/doc/latex/dottex/example.tex
+ texmf-dist/doc/latex/dottex/gpl.txt
+srcfiles size=17019
+ texmf-dist/source/latex/dottex/dottex.dtx
+ texmf-dist/source/latex/dottex/dottex.ins
+runfiles size=7323
+ texmf-dist/tex/latex/dottex/dottex.sty
+catalogue-version 0.6
+catalogue-date 2007-08-21 11:49:34 +0200
+catalogue-ctan /macros/latex/contrib/dottex
+catalogue-license gpl
+
+name doublestroke
+category Package
+revision 2569
+shortdesc Typeset mathematical double stroke symbols.
+longdesc A font based on Computer Modern Roman useful for typesetting
+longdesc the mathematical symbols for the natural numbers (N), whole
+longdesc numbers (Z), rational numbers (Q), real numbers (R) and complex
+longdesc numbers (C). The font is available both as MetaFont source and
+longdesc in Adobe Type 1 format. The fonts appear in the blackboard bold
+longdesc sampler.
+execute addMap dstroke.map
+docfiles size=117746
+ texmf-dist/doc/fonts/doublestroke/README details="Package Readme"
+ texmf-dist/doc/fonts/doublestroke/dsdoc.pdf details="Package documentation"
+ texmf-dist/doc/fonts/doublestroke/dsdoc.tex
+runfiles size=170950
+ texmf-dist/fonts/map/dvips/doublestroke/dstroke.map
+ texmf-dist/fonts/source/public/doublestroke/dsrom.mf
+ texmf-dist/fonts/source/public/doublestroke/dsrom10.mf
+ texmf-dist/fonts/source/public/doublestroke/dsrom12.mf
+ texmf-dist/fonts/source/public/doublestroke/dsrom8.mf
+ texmf-dist/fonts/source/public/doublestroke/dsromo.mf
+ texmf-dist/fonts/source/public/doublestroke/dsromu.mf
+ texmf-dist/fonts/source/public/doublestroke/dsss10.mf
+ texmf-dist/fonts/source/public/doublestroke/dsss12.mf
+ texmf-dist/fonts/source/public/doublestroke/dsss8.mf
+ texmf-dist/fonts/tfm/public/doublestroke/dsrom10.tfm
+ texmf-dist/fonts/tfm/public/doublestroke/dsrom12.tfm
+ texmf-dist/fonts/tfm/public/doublestroke/dsrom8.tfm
+ texmf-dist/fonts/tfm/public/doublestroke/dsss10.tfm
+ texmf-dist/fonts/tfm/public/doublestroke/dsss12.tfm
+ texmf-dist/fonts/tfm/public/doublestroke/dsss8.tfm
+ texmf-dist/fonts/type1/public/doublestroke/dsrom10.pfb
+ texmf-dist/fonts/type1/public/doublestroke/dsrom12.pfb
+ texmf-dist/fonts/type1/public/doublestroke/dsrom8.pfb
+ texmf-dist/fonts/type1/public/doublestroke/dsss10.pfb
+ texmf-dist/fonts/type1/public/doublestroke/dsss12.pfb
+ texmf-dist/fonts/type1/public/doublestroke/dsss8.pfb
+ texmf-dist/tex/latex/doublestroke/Udsrom.fd
+ texmf-dist/tex/latex/doublestroke/Udsss.fd
+ texmf-dist/tex/latex/doublestroke/dsfont.sty
+catalogue-version 1.111
+catalogue-date 2007-02-05 00:22:10 +0100
+catalogue-ctan /fonts/doublestroke
+catalogue-license dfsg
+
+name dpfloat
+category Package
+revision 2411
+shortdesc Support for double-page floats.
+longdesc Provides fullpage and leftfullpage environments, that may be
+longdesc used inside a figure, table, or other float environment. If the
+longdesc first of a 2-page spread uses a "leftfullpage" environment, the
+longdesc float will only be typeset on an even-numbered page, and the
+longdesc two floats will appear side-by-side in a two-sided document.
+docfiles size=1304
+ texmf-dist/doc/latex/dpfloat/README.dpfloat
+runfiles size=3303
+ texmf-dist/tex/latex/dpfloat/dpfloat.sty
+catalogue-version
+catalogue-date 2006-11-16 11:36:05 +0100
+catalogue-ctan /macros/latex/contrib/dpfloat
+catalogue-license lppl
+
+name draftcopy
+category Package
+revision 1487
+shortdesc Identify draft copies.
+longdesc Places the word DRAFT (or other words) in light grey diagonally
+longdesc across the background (or at the bottom) of each (or selected)
+longdesc pages of the document. The package uses PostScript \special
+longdesc commands, and may not therefore be used with PDFLaTeX. For that
+longdesc usage, consider the wallpaper or draftwatermark packages.
+docfiles size=95427
+ texmf-dist/doc/latex/draftcopy/README
+ texmf-dist/doc/latex/draftcopy/THIS-IS-VERSION-2.16
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-1.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-1.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-10.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-10.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-11.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-11.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-12.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-12.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-13.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-13.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-14.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-14.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-15.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-15.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-16.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-16.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-2.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-2.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-3.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-3.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-4.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-4.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-5.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-5.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-6.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-6.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-7.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-7.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-8.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-8.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-9.dvi
+ texmf-dist/doc/latex/draftcopy/draftcopy-test-9.tex
+ texmf-dist/doc/latex/draftcopy/draftcopy.doc
+srcfiles size=8454
+ texmf-dist/source/latex/draftcopy/Makefile
+ texmf-dist/source/latex/draftcopy/draftcopy.dtx
+ texmf-dist/source/latex/draftcopy/draftcopy.ins
+runfiles size=16379
+ texmf-dist/tex/latex/draftcopy/draftcopy.cfg
+ texmf-dist/tex/latex/draftcopy/draftcopy.sty
+catalogue-version 2.16
+catalogue-date 2006-12-14 22:33:34 +0100
+catalogue-ctan /macros/latex/contrib/draftcopy
+catalogue-license lppl
+
+name draftwatermark
+category Package
+revision 1764
+shortdesc Put a grey textual watermark on document pages.
+longdesc The package provides a means to add a textual, light grey
+longdesc watermark on every page or on the first page of a document.
+longdesc Typical usage may consist in writing words such as DRAFT or
+longdesc CONFIDENTIAL across document pages. The package performs a
+longdesc similar function to that of draftcopy, but its implementation
+longdesc is output device independent, and very made simple by relying
+longdesc on everpage.
+docfiles size=24227
+ texmf-dist/doc/latex/draftwatermark/README details="Readme"
+ texmf-dist/doc/latex/draftwatermark/draftwatermark.pdf details="Package documentation"
+srcfiles size=16761
+ texmf-dist/source/latex/draftwatermark/draftwatermark.dtx
+ texmf-dist/source/latex/draftwatermark/draftwatermark.ins
+runfiles size=2656
+ texmf-dist/tex/latex/draftwatermark/draftwatermark.sty
+catalogue-version 1.0
+catalogue-date 2007-03-05 22:02:45 +0100
+catalogue-ctan /macros/latex/contrib/draftwatermark
+catalogue-license lppl
+
+name dramatist
+category Package
+revision 2411
+shortdesc Typeset dramas, both in verse and in prose.
+longdesc This package is intended for typesetting drama of any length.
+longdesc It provides two environments for typesetting dialogues in prose
+longdesc or in verse; new document divisions corresponding to acts and
+longdesc scenes; macros that control the appearance of characters and
+longdesc stage directions; and automatic generation of a `dramatis
+longdesc personae' list.
+docfiles size=331237
+ texmf-dist/doc/latex/dramatist/README details="Package Readme"
+ texmf-dist/doc/latex/dramatist/dramatist.pdf details="Package documentation"
+ texmf-dist/doc/latex/dramatist/marlowe-poemscol.tex
+ texmf-dist/doc/latex/dramatist/marlowe-verse.tex
+ texmf-dist/doc/latex/dramatist/schiller.tex
+srcfiles size=125750
+ texmf-dist/source/latex/dramatist/dramatist.dtx
+ texmf-dist/source/latex/dramatist/dramatist.ins
+runfiles size=13143
+ texmf-dist/tex/latex/dramatist/dramatist.sty
+catalogue-version 1.2d
+catalogue-date 2006-12-01 14:16:52 +0100
+catalogue-ctan /macros/latex/contrib/dramatist
+catalogue-license gpl
+
+name dratex
+category Package
+revision 613
+shortdesc General drawing macros.
+longdesc A low level (DraTex.sty) and a high-level (AlDraTex.sty)
+longdesc drawing package written entirely in TeX.
+docfiles size=45092
+ texmf-dist/doc/generic/dratex/Examples.tex
+ texmf-dist/doc/generic/dratex/README
+runfiles size=268855
+ texmf-dist/tex/generic/dratex/AlDraTex.sty
+ texmf-dist/tex/generic/dratex/AlProTex.sty
+ texmf-dist/tex/generic/dratex/DraTex.sty
+ texmf-dist/tex/generic/dratex/TeXProject.sty
+catalogue-version
+catalogue-date 2007-01-01 18:45:52 +0100
+catalogue-ctan /graphics/dratex
+catalogue-license lppl
+
+name dropping
+category Package
+revision 1487
+shortdesc Drop first letter of paragraphs.
+longdesc A LaTeX2e macro for dropping the first character(s) (or
+longdesc word(s)) of a paragraph, extending the LaTeX 2.09 package
+longdesc dropcaps and automatically taking care of finding the font
+longdesc name.
+docfiles size=19964
+ texmf-dist/doc/latex/dropping/dropping.dvi
+srcfiles size=19951
+ texmf-dist/source/latex/dropping/00readme.drp
+ texmf-dist/source/latex/dropping/dropping.dtx
+ texmf-dist/source/latex/dropping/dropping.ins
+runfiles size=4188
+ texmf-dist/tex/latex/dropping/dropping.sty
+catalogue-version 0.12a
+catalogue-date 2006-09-22 15:17:49 +0200
+catalogue-ctan /macros/latex/contrib/dropping
+catalogue-license nosell
+
+name dtk
+category Package
+revision 4839
+shortdesc Document class for the journal of DANTE.
+longdesc The bundle provides a class and style file for typesetting
+longdesc “Die TeXnische Komödie” — the communications of the
+longdesc German TeX Users Group DANTE e.V. This means that this class
+longdesc can be used by article writers to typeset a single article as
+longdesc well as to produce the complete journal.
+docfiles size=14702
+ texmf-dist/doc/latex/dtk/README details="Readme"
+ texmf-dist/doc/latex/dtk/beispiel.ltx
+ texmf-dist/doc/latex/dtk/beispiel.tex
+srcfiles size=148766
+ texmf-dist/source/latex/dtk/dtk.dtx
+ texmf-dist/source/latex/dtk/dtk.ins
+runfiles size=124478
+ texmf-dist/bibtex/bib/dtk/beispiel.bib
+ texmf-dist/bibtex/bst/dtk/dtk.bst
+ texmf-dist/makeindex/dtk/dtk-adr.ist
+ texmf-dist/makeindex/dtk/dtk-idx.ist
+ texmf-dist/tex/latex/dtk/dtk-pdf.sty
+ texmf-dist/tex/latex/dtk/dtk.cls
+ texmf-dist/tex/latex/dtk/dtk.sty
+ texmf-dist/tex/latex/dtk/dtk07.clo
+ texmf-dist/tex/latex/dtk/dtklogos.sty
+catalogue-version 1.10
+catalogue-date 2007-09-04 11:50:28 +0200
+catalogue-ctan /usergrps/dante/dtk
+catalogue-license other-free
+
+name dtxgallery
+category Package
+revision 4715
+docfiles size=380026
+ texmf-dist/doc/latex/dtxgallery/README
+ texmf-dist/doc/latex/dtxgallery/conditional-code.pdf
+ texmf-dist/doc/latex/dtxgallery/dtxgallery.pdf
+ texmf-dist/doc/latex/dtxgallery/rearrange.pdf
+ texmf-dist/doc/latex/dtxgallery/single-source.pdf
+srcfiles size=10376
+ texmf-dist/source/latex/dtxgallery/conditional-code.dtx
+ texmf-dist/source/latex/dtxgallery/dtxgallery.dtx
+ texmf-dist/source/latex/dtxgallery/rearrange.dtx
+ texmf-dist/source/latex/dtxgallery/single-source.dtx
+
+name dtxtut
+category Documentation
+revision 20
+docfiles size=346802
+ texmf-doc/doc/english/dtxtut/README
+ texmf-doc/doc/english/dtxtut/cskeleton.dtx
+ texmf-doc/doc/english/dtxtut/cskeleton.ins
+ texmf-doc/doc/english/dtxtut/dtxtut.pdf
+ texmf-doc/doc/english/dtxtut/dtxtut.tex
+ texmf-doc/doc/english/dtxtut/skeleton.dtx
+ texmf-doc/doc/english/dtxtut/skeleton.ins
+
+name duerer
+category Package
+revision 101
+shortdesc Computer Duerer fonts.
+longdesc These fonts are designed for titling use, and consist of
+longdesc capital roman letters only. Together with the normal set of
+longdesc base shapes, the family also offers an informal shape. LaTeX
+longdesc support is available in the duerer-latex bundle.
+docfiles size=899
+ texmf-dist/doc/fonts/duerer/duerer.readme details="Readme"
+runfiles size=89716
+ texmf-dist/fonts/source/public/duerer/cdb10.mf
+ texmf-dist/fonts/source/public/duerer/cdi10.mf
+ texmf-dist/fonts/source/public/duerer/cdr10.mf
+ texmf-dist/fonts/source/public/duerer/cdsl10.mf
+ texmf-dist/fonts/source/public/duerer/cdss10.mf
+ texmf-dist/fonts/source/public/duerer/cdtt10.mf
+ texmf-dist/fonts/source/public/duerer/dromani.mf
+ texmf-dist/fonts/source/public/duerer/dromanu.mf
+ texmf-dist/fonts/source/public/duerer/dtitle.mf
+ texmf-dist/fonts/tfm/public/duerer/cdb10.tfm
+ texmf-dist/fonts/tfm/public/duerer/cdi10.tfm
+ texmf-dist/fonts/tfm/public/duerer/cdr10.tfm
+ texmf-dist/fonts/tfm/public/duerer/cdsl10.tfm
+ texmf-dist/fonts/tfm/public/duerer/cdss10.tfm
+ texmf-dist/fonts/tfm/public/duerer/cdtt10.tfm
+catalogue-version
+catalogue-date 2007-01-01 18:45:52 +0100
+catalogue-ctan /fonts/duerer
+catalogue-license unknown
+
+name dvdcoll
+category Package
+revision 4939
+shortdesc A class for typesetting DVD archives
+longdesc Having lost the overview of my DVD archives, I simply could not
+longdesc remember if I already recorded the documentary running on TV
+longdesc that day. I chose to recreate the index using LaTeX: the design
+longdesc aim was a hyperlinked and fully searchable PDF-document,
+longdesc listing my DVDs with all titles, lengths and so on. Further
+longdesc requirements were support for seasons of tv series and a list
+longdesc with all faulty or missing programs for rerecording. The
+longdesc dvdcoll class supports all these requirements. dvdcoll.cls
+longdesc follows the structure <number><title><length>. As a result, the
+longdesc class is not limited to DVDs—you can of course typeset
+longdesc archives of CD-ROMs, Audio-CDs and so on. Supported languages
+longdesc at the moment: English, French, German, Italian, Polish,
+longdesc Portuguese, Spanish. Some help is needed for other languages!
+docfiles size=545216
+ texmf-dist/doc/latex/dvdcoll/CHANGES
+ texmf-dist/doc/latex/dvdcoll/INSTALL details="Installation instructions"
+ texmf-dist/doc/latex/dvdcoll/README details="README file"
+ texmf-dist/doc/latex/dvdcoll/dcexample.pdf
+ texmf-dist/doc/latex/dvdcoll/dcexample.tex
+ texmf-dist/doc/latex/dvdcoll/dvdcoll.pdf
+ texmf-dist/doc/latex/dvdcoll/dvdcoll_de.pdf
+ texmf-dist/doc/latex/dvdcoll/manifest.txt
+runfiles size=85697
+ texmf-dist/bibtex/bst/dvdcoll/dcbib.bst
+ texmf-dist/tex/latex/dvdcoll/UKenglish.dcl
+ texmf-dist/tex/latex/dvdcoll/USenglish.dcl
+ texmf-dist/tex/latex/dvdcoll/acadian.dcl
+ texmf-dist/tex/latex/dvdcoll/american.dcl
+ texmf-dist/tex/latex/dvdcoll/australian.dcl
+ texmf-dist/tex/latex/dvdcoll/austrian.dcl
+ texmf-dist/tex/latex/dvdcoll/brazil.dcl
+ texmf-dist/tex/latex/dvdcoll/brazilian.dcl
+ texmf-dist/tex/latex/dvdcoll/british.dcl
+ texmf-dist/tex/latex/dvdcoll/canadian.dcl
+ texmf-dist/tex/latex/dvdcoll/canadien.dcl
+ texmf-dist/tex/latex/dvdcoll/dcwrtbib.sty
+ texmf-dist/tex/latex/dvdcoll/dvdcoll.cls
+ texmf-dist/tex/latex/dvdcoll/english.dcl
+ texmf-dist/tex/latex/dvdcoll/francais.dcl
+ texmf-dist/tex/latex/dvdcoll/french.dcl
+ texmf-dist/tex/latex/dvdcoll/frenchb.dcl
+ texmf-dist/tex/latex/dvdcoll/german.dcl
+ texmf-dist/tex/latex/dvdcoll/germanb.dcl
+ texmf-dist/tex/latex/dvdcoll/italian.dcl
+ texmf-dist/tex/latex/dvdcoll/naustrian.dcl
+ texmf-dist/tex/latex/dvdcoll/newzealand.dcl
+ texmf-dist/tex/latex/dvdcoll/ngerman.dcl
+ texmf-dist/tex/latex/dvdcoll/pdfnotiz.sty
+ texmf-dist/tex/latex/dvdcoll/polish.dcl
+ texmf-dist/tex/latex/dvdcoll/portuges.dcl
+ texmf-dist/tex/latex/dvdcoll/portuguese.dcl
+ texmf-dist/tex/latex/dvdcoll/spanish.dcl
+catalogue-version v1.1
+catalogue-date 2007-09-11 14:52:40 +0200
+catalogue-ctan /macros/latex/contrib/dvdcoll
+catalogue-license lppl
+
+name dvips
+category Package
+revision 2756
+shortdesc A DVI to PostScript driver.
+longdesc This package has been withdrawn from CTAN.
+runfiles size=132341
+ texmf-dist/dvips/base/ehandler.ps
+ texmf-dist/dvips/base/resolution400.ps
+ texmf-dist/fonts/enc/dvips/base/6w.enc
+ texmf-dist/fonts/enc/dvips/base/7t.enc
+ texmf-dist/fonts/enc/dvips/base/8a.enc
+ texmf-dist/fonts/enc/dvips/base/8r.enc
+ texmf-dist/fonts/enc/dvips/base/ad.enc
+ texmf-dist/fonts/enc/dvips/base/ansinew.enc
+ texmf-dist/fonts/enc/dvips/base/asex.enc
+ texmf-dist/fonts/enc/dvips/base/asexp.enc
+ texmf-dist/fonts/enc/dvips/base/cork.enc
+ texmf-dist/fonts/enc/dvips/base/dc.enc
+ texmf-dist/fonts/enc/dvips/base/dvips.enc
+ texmf-dist/fonts/enc/dvips/base/ec.enc
+ texmf-dist/fonts/enc/dvips/base/extex.enc
+ texmf-dist/fonts/enc/dvips/base/funky.enc
+ texmf-dist/fonts/enc/dvips/base/odvips.enc
+ texmf-dist/fonts/enc/dvips/base/qx.enc
+ texmf-dist/fonts/enc/dvips/base/stormex.enc
+ texmf-dist/fonts/enc/dvips/base/tex256.enc
+ texmf-dist/fonts/enc/dvips/base/texmext.enc
+ texmf-dist/fonts/enc/dvips/base/texmital.enc
+ texmf-dist/fonts/enc/dvips/base/texmsym.enc
+ texmf-dist/fonts/enc/dvips/base/texnansi.enc
+ texmf-dist/fonts/enc/dvips/base/texnansx.enc
+ texmf-dist/fonts/enc/dvips/base/xl2.enc
+ texmf-dist/fonts/enc/dvips/base/xt2.enc
+ texmf-dist/tex/generic/dvips/blackdvi.sty
+ texmf-dist/tex/generic/dvips/blackdvi.tex
+ texmf-dist/tex/generic/dvips/colordvi.sty
+ texmf-dist/tex/generic/dvips/colordvi.tex
+ texmf-dist/tex/generic/dvips/rotate.sty
+ texmf-dist/tex/generic/dvips/rotate.tex
+catalogue-version
+catalogue-date 2007-03-05 22:02:45 +0100
+catalogue-ctan
+catalogue-license gpl
+
+name dvipsconfig
+category Package
+revision 1944
+shortdesc Collection of dvips PostScript headers.
+longdesc This is a collection of dvips PostScript header and dvips
+longdesc config files. They control certain features of the printer,
+longdesc including: A4, A3, usletter, simplex, duplex / long edge,
+longdesc duplex / short edge, screen frequencies of images, black/white
+longdesc invers, select transparency / paper for tektronix 550/560,
+longdesc manual feeder, envelope feeder, and tray 1, 2 and 3, and
+longdesc printing a PostScript grid underneath the page material—very
+longdesc useful for measuring and eliminating paper feed errors!
+runfiles size=68816
+ texmf-dist/dvips/dvipsconfig/README
+ texmf-dist/dvips/dvipsconfig/addpsctrl
+ texmf-dist/dvips/dvipsconfig/config.a3
+ texmf-dist/dvips/dvipsconfig/config.a4
+ texmf-dist/dvips/dvipsconfig/config.a4grid
+ texmf-dist/dvips/dvipsconfig/config.duplong
+ texmf-dist/dvips/dvipsconfig/config.dupshort
+ texmf-dist/dvips/dvipsconfig/config.envelope
+ texmf-dist/dvips/dvipsconfig/config.inv
+ texmf-dist/dvips/dvipsconfig/config.manualfeed
+ texmf-dist/dvips/dvipsconfig/config.mmgrid
+ texmf-dist/dvips/dvipsconfig/config.psgrid
+ texmf-dist/dvips/dvipsconfig/config.screen100
+ texmf-dist/dvips/dvipsconfig/config.screen100_0
+ texmf-dist/dvips/dvipsconfig/config.screen110
+ texmf-dist/dvips/dvipsconfig/config.screen120
+ texmf-dist/dvips/dvipsconfig/config.screen130
+ texmf-dist/dvips/dvipsconfig/config.screen140
+ texmf-dist/dvips/dvipsconfig/config.screen150
+ texmf-dist/dvips/dvipsconfig/config.screen35
+ texmf-dist/dvips/dvipsconfig/config.screen50
+ texmf-dist/dvips/dvipsconfig/config.screen70
+ texmf-dist/dvips/dvipsconfig/config.screen80
+ texmf-dist/dvips/dvipsconfig/config.screen85
+ texmf-dist/dvips/dvipsconfig/config.screen90
+ texmf-dist/dvips/dvipsconfig/config.simplex
+ texmf-dist/dvips/dvipsconfig/config.tek550paper
+ texmf-dist/dvips/dvipsconfig/config.tek550transparency
+ texmf-dist/dvips/dvipsconfig/config.tray1
+ texmf-dist/dvips/dvipsconfig/config.tray2
+ texmf-dist/dvips/dvipsconfig/config.tray3
+ texmf-dist/dvips/dvipsconfig/config.usledger
+ texmf-dist/dvips/dvipsconfig/config.usletter
+catalogue-version 1.6
+catalogue-date 2007-03-05 22:02:45 +0100
+catalogue-ctan /dviware/dvipsconfig
+catalogue-license gpl
+
+name dyntree
+category Package
+revision 2015
+shortdesc Construct Dynkin tree diagrams.
+longdesc The package is intended for users needing to typeset a Dynkin
+longdesc Tree Diagram—a group theoretical construct consisting of
+longdesc cartan coefficients in boxes connected by a series of lines.
+longdesc Such a diagram is a tool for working out the states and their
+longdesc weights in terms of the fundamental weights and the simple
+longdesc roots. The package makes use of the author's coollist package.
+docfiles size=150428
+ texmf-dist/doc/latex/dyntree/README details="Readme"
+ texmf-dist/doc/latex/dyntree/dyntree.pdf details="Package documentation"
+srcfiles size=44033
+ texmf-dist/source/latex/dyntree/dyntree.dtx
+ texmf-dist/source/latex/dyntree/dyntree.ins
+runfiles size=12035
+ texmf-dist/tex/latex/dyntree/dyntree.sty
+catalogue-version 1.0
+catalogue-date 2007-03-05 22:02:45 +0100
+catalogue-ctan /macros/latex/contrib/dyntree
+catalogue-license lgpl
+
+name eCards
+category Package
+revision 841
+docfiles size=1842245
+ texmf-dist/doc/latex/eCards/README
+ texmf-dist/doc/latex/eCards/eCard.cus
+ texmf-dist/doc/latex/eCards/eCardsman.pdf
+ texmf-dist/doc/latex/eCards/eCardsman_p.pdf
+ texmf-dist/doc/latex/eCards/eCardstst.pdf
+ texmf-dist/doc/latex/eCards/eCardstst.tex
+ texmf-dist/doc/latex/eCards/graphics/uakron.bb
+ texmf-dist/doc/latex/eCards/graphics/uakron.eps
+ texmf-dist/doc/latex/eCards/graphics/uakron.jpg
+ texmf-dist/doc/latex/eCards/graphics/uakron.pdf
+ texmf-dist/doc/latex/eCards/graphics/uakron.png
+ texmf-dist/doc/latex/eCards/presidents/gw1.bb
+ texmf-dist/doc/latex/eCards/presidents/gw1.eps
+ texmf-dist/doc/latex/eCards/presidents/gw1.jpg
+ texmf-dist/doc/latex/eCards/presidents/gw1.pdf
+ texmf-dist/doc/latex/eCards/presidents/ja2.bb
+ texmf-dist/doc/latex/eCards/presidents/ja2.eps
+ texmf-dist/doc/latex/eCards/presidents/ja2.jpg
+ texmf-dist/doc/latex/eCards/presidents/ja2.pdf
+ texmf-dist/doc/latex/eCards/presidents/ja6.bb
+ texmf-dist/doc/latex/eCards/presidents/ja6.eps
+ texmf-dist/doc/latex/eCards/presidents/ja6.jpg
+ texmf-dist/doc/latex/eCards/presidents/ja6.pdf
+ texmf-dist/doc/latex/eCards/presidents/jm4.bb
+ texmf-dist/doc/latex/eCards/presidents/jm4.eps
+ texmf-dist/doc/latex/eCards/presidents/jm4.jpg
+ texmf-dist/doc/latex/eCards/presidents/jm4.pdf
+ texmf-dist/doc/latex/eCards/presidents/jm5.bb
+ texmf-dist/doc/latex/eCards/presidents/jm5.eps
+ texmf-dist/doc/latex/eCards/presidents/jm5.jpg
+ texmf-dist/doc/latex/eCards/presidents/jm5.pdf
+ texmf-dist/doc/latex/eCards/presidents/tj3.bb
+ texmf-dist/doc/latex/eCards/presidents/tj3.eps
+ texmf-dist/doc/latex/eCards/presidents/tj3.jpg
+ texmf-dist/doc/latex/eCards/presidents/tj3.pdf
+srcfiles size=37186
+ texmf-dist/source/latex/eCards/eCards.dtx
+ texmf-dist/source/latex/eCards/eCards.ins
+runfiles size=13390
+ texmf-dist/tex/latex/eCards/eCards.sty
+ texmf-dist/tex/latex/eCards/eCardsList.def
+
+name ean
+category Package
+revision 613
+shortdesc Macros for making EAN barcodes.
+longdesc Provides EAN-8 and EAN-13 forms. The package needs the ocr-b
+longdesc fonts; note that the fonts are not available under a free
+longdesc licence, as the macros are.
+docfiles size=3178
+ texmf-dist/doc/fonts/ean/README details="Readme"
+ texmf-dist/doc/fonts/ean/ocrbinfo
+runfiles size=64809
+ texmf-dist/fonts/source/public/ean/ocrb10.mf
+ texmf-dist/fonts/source/public/ean/ocrb10e.mf
+ texmf-dist/fonts/source/public/ean/ocrb10f.mf
+ texmf-dist/fonts/source/public/ean/ocrb10g.mf
+ texmf-dist/fonts/source/public/ean/ocrb10l.mf
+ texmf-dist/fonts/source/public/ean/ocrb10s.mf
+ texmf-dist/fonts/source/public/ean/ocrb10x.mf
+ texmf-dist/fonts/source/public/ean/ocrb5.mf
+ texmf-dist/fonts/source/public/ean/ocrb6.mf
+ texmf-dist/fonts/source/public/ean/ocrb7.mf
+ texmf-dist/fonts/source/public/ean/ocrb8.mf
+ texmf-dist/fonts/source/public/ean/ocrb9.mf
+ texmf-dist/fonts/source/public/ean/ocrbdef.mf
+ texmf-dist/fonts/source/public/ean/ocrbmac.mf
+ texmf-dist/fonts/tfm/public/ean/ocrb10.tfm
+ texmf-dist/fonts/tfm/public/ean/ocrb5.tfm
+ texmf-dist/fonts/tfm/public/ean/ocrb6.tfm
+ texmf-dist/fonts/tfm/public/ean/ocrb7.tfm
+ texmf-dist/fonts/tfm/public/ean/ocrb8.tfm
+ texmf-dist/fonts/tfm/public/ean/ocrb9.tfm
+ texmf-dist/tex/generic/ean/ean13.tex
+ texmf-dist/tex/generic/ean/ean8.tex
+ texmf-dist/tex/generic/ean/eantest.tex
+catalogue-version
+catalogue-date 2007-01-01 18:45:52 +0100
+catalogue-ctan /macros/generic/ean
+catalogue-license gpl
+
+name easy
+category Package
+revision 5382
+shortdesc A collection of easy-to-use macros.
+longdesc The collection comprises: – easybib, support for customising
+longdesc bibliographies; – easybmat, support for composing block
+longdesc matrices; – easyeqn, support for various aspects of
+longdesc equations; – easymat, support for composing matrices; –
+longdesc easytable, support for writing tables; – easyvector, a C-like
+longdesc syntax for writing vectors.
+docfiles size=493627
+ texmf-dist/doc/latex/easy/README
+ texmf-dist/doc/latex/easy/doc.dvi/docbib.dvi
+ texmf-dist/doc/latex/easy/doc.dvi/docbmat.dvi
+ texmf-dist/doc/latex/easy/doc.dvi/doceqn.dvi
+ texmf-dist/doc/latex/easy/doc.dvi/docmat.dvi
+ texmf-dist/doc/latex/easy/doc.dvi/doctable.dvi
+ texmf-dist/doc/latex/easy/doc.dvi/docvector.dvi
+ texmf-dist/doc/latex/easy/doc.html.tgz
+ texmf-dist/doc/latex/easy/for-latex2html/easybib.perl
+ texmf-dist/doc/latex/easy/for-latex2html/easybmat.perl
+ texmf-dist/doc/latex/easy/for-latex2html/easyeqn.perl
+ texmf-dist/doc/latex/easy/for-latex2html/easymat.perl
+ texmf-dist/doc/latex/easy/for-latex2html/easytable.perl
+ texmf-dist/doc/latex/easy/for-latex2html/easyvector.perl
+ texmf-dist/doc/latex/easy/mydoc.sty
+runfiles size=70854
+ texmf-dist/tex/latex/easy/easy.sty
+ texmf-dist/tex/latex/easy/easybib.sty
+ texmf-dist/tex/latex/easy/easybmat.sty
+ texmf-dist/tex/latex/easy/easyeqn.sty
+ texmf-dist/tex/latex/easy/easymat.sty
+ texmf-dist/tex/latex/easy/easytable.sty
+ texmf-dist/tex/latex/easy/easyvector.sty
+catalogue-version 0.99
+catalogue-date 2007-01-01 18:45:52 +0100
+catalogue-ctan /macros/latex/contrib/easy
+catalogue-license lppl
+
+name ebezier
+category Package
+revision 843
+shortdesc Device independent picture environment enhancement.
+longdesc Ebezier is a device independent extension for the standard
+longdesc picture environment. Linear, quadratic, and cubic bezier curves
+longdesc are supplied in connection with higher level circle drawing
+longdesc commands. Additionally some macros for the calculation of curve
+longdesc lenghts are part of this package.
+docfiles size=332417
+ texmf-dist/doc/latex/ebezier/ebezier.pdf details="Package documentation"
+srcfiles size=69565
+ texmf-dist/source/latex/ebezier/ebezier.dtx
+ texmf-dist/source/latex/ebezier/ebezier.ins
+runfiles size=18591
+ texmf-dist/tex/latex/ebezier/ebezier.sty
+catalogue-version 4
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/ebezier
+catalogue-license lppl
+
+name ebong
+category Package
+revision 2124
+docfiles size=100622
+ texmf-dist/doc/latex/ebong/ANNOUNCE.txt
+ texmf-dist/doc/latex/ebong/README
+ texmf-dist/doc/latex/ebong/eb.b
+ texmf-dist/doc/latex/ebong/eb.pdf
+ texmf-dist/doc/latex/ebong/eb_tex.tex
+
+name ebsthesis
+category Package
+revision 3223
+shortdesc Typesetting theses for economics
+longdesc The ebsthesis class and ebstools package facilitate the
+longdesc production of camera-ready manuscripts in conformance with the
+longdesc guidelines of Gabler Verlag and typographical rules established
+longdesc by the European Business School.
+docfiles size=270486
+ texmf-dist/doc/latex/ebsthesis/README
+ texmf-dist/doc/latex/ebsthesis/ebsthesis.pdf details="Package documentation"
+srcfiles size=26759
+ texmf-dist/source/latex/ebsthesis/ebsthesis.dtx
+ texmf-dist/source/latex/ebsthesis/ebsthesis.ins
+runfiles size=23266
+ texmf-dist/tex/latex/ebsthesis/ebsthesis.cls
+catalogue-version 1.0
+catalogue-date 2007-01-07 11:02:17 +0100
+catalogue-ctan /macros/latex/contrib/ebsthesis
+catalogue-license lppl
+
+name ec
+category Package
+revision 101
+shortdesc Computer modern fonts in T1 and TS1 encodings.
+longdesc The EC fonts are European Computer Modern Fonts, supporting the
+longdesc complete LaTeX T1 encoding defined at the 1990 TUG conference
+longdesc hold at Cork/Ireland. These fonts are intended to be stable
+longdesc with no changes being made to the tfm files. The set also
+longdesc contains a Text Companion Symbol font, called tc, featuring
+longdesc many useful characters needed in text typesetting, for example
+longdesc oldstyle digits, currency symbols (including the newly created
+longdesc Euro symbol), the permille sign, copyright, trade mark and
+longdesc servicemark as well as a copyleft sign, and many others. Recent
+longdesc releases of LaTeX2e support the EC fonts. The EC fonts
+longdesc supersede the preliminary version released as the DC fonts. The
+longdesc fonts are available in (traced) Adobe Type 1 format, as part of
+longdesc the cm-super bundle. The other Computer Modern-style T1-encoded
+longdesc Type 1 set, Latin Modern, is not actually a direct development
+longdesc of the EC set, and differs from the EC in a number of
+longdesc particulars.
+docfiles size=94344
+ texmf-dist/doc/fonts/ec/00bugs.txt
+ texmf-dist/doc/fonts/ec/00error.txt
+ texmf-dist/doc/fonts/ec/00files.txt
+ texmf-dist/doc/fonts/ec/00inst.txt
+ texmf-dist/doc/fonts/ec/00readme.txt
+ texmf-dist/doc/fonts/ec/copyrite.txt
+ texmf-dist/doc/fonts/ec/dc-chg.txt
+ texmf-dist/doc/fonts/ec/dcdoc.tex
+ texmf-dist/doc/fonts/ec/ec-chg.txt
+ texmf-dist/doc/fonts/ec/ecstdedt.tex
+ texmf-dist/doc/fonts/ec/tc-chg.txt
+ texmf-dist/doc/fonts/ec/tcstdedt.tex
+runfiles size=2576110
+ texmf-dist/fonts/source/jknappen/ec/ecbi.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbi3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbl3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbm.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecbx3583.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc0500.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc0600.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc0700.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc0800.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc0900.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc1000.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc1095.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc1200.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc1440.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc1728.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc2074.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc2488.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc2986.mf
+ texmf-dist/fonts/source/jknappen/ec/eccc3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecci3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecdh3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecfb.mf
+ texmf-dist/fonts/source/jknappen/ec/ecff.mf
+ texmf-dist/fonts/source/jknappen/ec/ecfi.mf
+ texmf-dist/fonts/source/jknappen/ec/ecfs.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecit3583.mf
+ texmf-dist/fonts/source/jknappen/ec/eclb8.mf
+ texmf-dist/fonts/source/jknappen/ec/ecli8.mf
+ texmf-dist/fonts/source/jknappen/ec/eclo8.mf
+ texmf-dist/fonts/source/jknappen/ec/eclq8.mf
+ texmf-dist/fonts/source/jknappen/ec/ecltt8.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecoc3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecqi8.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrb3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecrm3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsc3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsi3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsl3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecso3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsq8.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecss3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecssdc10.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecst3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecsx3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ectc3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecti3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ectt3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecui3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvi3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecvt3583.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc0500.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc0600.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc0700.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc0800.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc0900.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc1000.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc1095.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc1200.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc1440.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc1728.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc2074.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc2488.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc2986.mf
+ texmf-dist/fonts/source/jknappen/ec/ecxc3583.mf
+ texmf-dist/fonts/source/jknappen/ec/exaccent.mf
+ texmf-dist/fonts/source/jknappen/ec/exaccess.mf
+ texmf-dist/fonts/source/jknappen/ec/exbase.mf
+ texmf-dist/fonts/source/jknappen/ec/exbraces.mf
+ texmf-dist/fonts/source/jknappen/ec/excligtb.mf
+ texmf-dist/fonts/source/jknappen/ec/excsc.mf
+ texmf-dist/fonts/source/jknappen/ec/excspl.mf
+ texmf-dist/fonts/source/jknappen/ec/exidigit.mf
+ texmf-dist/fonts/source/jknappen/ec/exileast.mf
+ texmf-dist/fonts/source/jknappen/ec/exilig.mf
+ texmf-dist/fonts/source/jknappen/ec/exiligtb.mf
+ texmf-dist/fonts/source/jknappen/ec/exillett.mf
+ texmf-dist/fonts/source/jknappen/ec/exilwest.mf
+ texmf-dist/fonts/source/jknappen/ec/exisixts.mf
+ texmf-dist/fonts/source/jknappen/ec/exitalp.mf
+ texmf-dist/fonts/source/jknappen/ec/exmligtb.mf
+ texmf-dist/fonts/source/jknappen/ec/expseudo.mf
+ texmf-dist/fonts/source/jknappen/ec/expunct.mf
+ texmf-dist/fonts/source/jknappen/ec/exrdigit.mf
+ texmf-dist/fonts/source/jknappen/ec/exrleast.mf
+ texmf-dist/fonts/source/jknappen/ec/exrlig.mf
+ texmf-dist/fonts/source/jknappen/ec/exrligtb.mf
+ texmf-dist/fonts/source/jknappen/ec/exrllett.mf
+ texmf-dist/fonts/source/jknappen/ec/exrlwest.mf
+ texmf-dist/fonts/source/jknappen/ec/exroman.mf
+ texmf-dist/fonts/source/jknappen/ec/exromp.mf
+ texmf-dist/fonts/source/jknappen/ec/exrueast.mf
+ texmf-dist/fonts/source/jknappen/ec/exrulett.mf
+ texmf-dist/fonts/source/jknappen/ec/exruwest.mf
+ texmf-dist/fonts/source/jknappen/ec/exsign.mf
+ texmf-dist/fonts/source/jknappen/ec/exsixtst.mf
+ texmf-dist/fonts/source/jknappen/ec/extextit.mf
+ texmf-dist/fonts/source/jknappen/ec/ieclb8.mf
+ texmf-dist/fonts/source/jknappen/ec/iecli8.mf
+ texmf-dist/fonts/source/jknappen/ec/ieclo8.mf
+ texmf-dist/fonts/source/jknappen/ec/ieclq8.mf
+ texmf-dist/fonts/source/jknappen/ec/iecltt8.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbi3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbl3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbm.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcbx3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcci3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcdh.mf
+ texmf-dist/fonts/source/jknappen/ec/tcfb.mf
+ texmf-dist/fonts/source/jknappen/ec/tcff.mf
+ texmf-dist/fonts/source/jknappen/ec/tcfi.mf
+ texmf-dist/fonts/source/jknappen/ec/tcfs.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcit3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrb3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcrm3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsi3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsl3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcso3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcss3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcst3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcsx3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcti3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tctt3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui0500.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui0600.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui0700.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcui3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvi3583.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt0800.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt0900.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt1000.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt1095.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt1200.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt1440.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt1728.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt2074.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt2488.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt2986.mf
+ texmf-dist/fonts/source/jknappen/ec/tcvt3583.mf
+ texmf-dist/fonts/source/jknappen/ec/txaccent.mf
+ texmf-dist/fonts/source/jknappen/ec/txgen.mf
+ texmf-dist/fonts/source/jknappen/ec/txifract.mf
+ texmf-dist/fonts/source/jknappen/ec/txisuper.mf
+ texmf-dist/fonts/source/jknappen/ec/txitlod.mf
+ texmf-dist/fonts/source/jknappen/ec/txpseudo.mf
+ texmf-dist/fonts/source/jknappen/ec/txrfract.mf
+ texmf-dist/fonts/source/jknappen/ec/txromod.mf
+ texmf-dist/fonts/source/jknappen/ec/txrsuper.mf
+ texmf-dist/fonts/source/jknappen/ec/txsymb.mf
+ texmf-dist/fonts/source/jknappen/ec/txsymbol.mf
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbi3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbl3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecbx3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eccc3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecci3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecdh3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecit3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eclb8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecli8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eclo8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/eclq8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecltt8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecoc3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrb3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecrm3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsc3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsi3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsl3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecso3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecss3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecst3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecsx3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectc3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecti3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ectt3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecui3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvi3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecvt3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ecxc3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ieclb8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/iecli8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ieclo8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/ieclq8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/iecltt8.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbi3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbl3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcbx3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcci3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcit3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrb3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcrm3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsi3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsl3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcso3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcss3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcst3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcsx3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcti3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tctt3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui0500.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui0600.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui0700.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcui3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvi3583.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt0800.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt0900.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt1000.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt1095.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt1200.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt1440.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt1728.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt2074.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt2488.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt2986.tfm
+ texmf-dist/fonts/tfm/jknappen/ec/tcvt3583.tfm
+catalogue-version
+catalogue-date 2006-12-20 16:09:22 +0100
+catalogue-ctan /fonts/ec
+catalogue-license lppl
+
+name ecc
+category Package
+revision 5004
+shortdesc Sources for the European Concrete fonts.
+longdesc The MetaFont sources and TFM files of the European Concrete
+longdesc Fonts. This is the T1-encoded extension of Knuth's Concrete
+longdesc fonts, including also the corresponding text companion fonts.
+longdesc Adobe Type 1 versions of the fonts are available as part of the
+longdesc cm-super font bundle.
+docfiles size=8299
+ texmf-dist/doc/fonts/ecc/copyrite
+ texmf-dist/doc/fonts/ecc/liesmich
+ texmf-dist/doc/fonts/ecc/readme
+runfiles size=113367
+ texmf-dist/fonts/source/public/ecc/conc10pt.mf
+ texmf-dist/fonts/source/public/ecc/conc5pt.mf
+ texmf-dist/fonts/source/public/ecc/conc6pt.mf
+ texmf-dist/fonts/source/public/ecc/conc7pt.mf
+ texmf-dist/fonts/source/public/ecc/conc8pt.mf
+ texmf-dist/fonts/source/public/ecc/conc9pt.mf
+ texmf-dist/fonts/source/public/ecc/coni10pt.mf
+ texmf-dist/fonts/source/public/ecc/eocc10.mf
+ texmf-dist/fonts/source/public/ecc/eorm10.mf
+ texmf-dist/fonts/source/public/ecc/eorm5.mf
+ texmf-dist/fonts/source/public/ecc/eorm6.mf
+ texmf-dist/fonts/source/public/ecc/eorm7.mf
+ texmf-dist/fonts/source/public/ecc/eorm8.mf
+ texmf-dist/fonts/source/public/ecc/eorm9.mf
+ texmf-dist/fonts/source/public/ecc/eosl10.mf
+ texmf-dist/fonts/source/public/ecc/eosl5.mf
+ texmf-dist/fonts/source/public/ecc/eosl6.mf
+ texmf-dist/fonts/source/public/ecc/eosl7.mf
+ texmf-dist/fonts/source/public/ecc/eosl8.mf
+ texmf-dist/fonts/source/public/ecc/eosl9.mf
+ texmf-dist/fonts/source/public/ecc/eoti10.mf
+ texmf-dist/fonts/source/public/ecc/tcssdc10.mf
+ texmf-dist/fonts/source/public/ecc/torm10.mf
+ texmf-dist/fonts/source/public/ecc/torm5.mf
+ texmf-dist/fonts/source/public/ecc/torm6.mf
+ texmf-dist/fonts/source/public/ecc/torm7.mf
+ texmf-dist/fonts/source/public/ecc/torm8.mf
+ texmf-dist/fonts/source/public/ecc/torm9.mf
+ texmf-dist/fonts/source/public/ecc/tosl10.mf
+ texmf-dist/fonts/source/public/ecc/tosl5.mf
+ texmf-dist/fonts/source/public/ecc/tosl6.mf
+ texmf-dist/fonts/source/public/ecc/tosl7.mf
+ texmf-dist/fonts/source/public/ecc/tosl8.mf
+ texmf-dist/fonts/source/public/ecc/tosl9.mf
+ texmf-dist/fonts/source/public/ecc/toti10.mf
+ texmf-dist/fonts/tfm/public/ecc/eocc10.tfm
+ texmf-dist/fonts/tfm/public/ecc/eorm10.tfm
+ texmf-dist/fonts/tfm/public/ecc/eorm5.tfm
+ texmf-dist/fonts/tfm/public/ecc/eorm6.tfm
+ texmf-dist/fonts/tfm/public/ecc/eorm7.tfm
+ texmf-dist/fonts/tfm/public/ecc/eorm8.tfm
+ texmf-dist/fonts/tfm/public/ecc/eorm9.tfm
+ texmf-dist/fonts/tfm/public/ecc/eosl10.tfm
+ texmf-dist/fonts/tfm/public/ecc/eosl5.tfm
+ texmf-dist/fonts/tfm/public/ecc/eosl6.tfm
+ texmf-dist/fonts/tfm/public/ecc/eosl7.tfm
+ texmf-dist/fonts/tfm/public/ecc/eosl8.tfm
+ texmf-dist/fonts/tfm/public/ecc/eosl9.tfm
+ texmf-dist/fonts/tfm/public/ecc/eoti10.tfm
+ texmf-dist/fonts/tfm/public/ecc/tcssdc10.tfm
+ texmf-dist/fonts/tfm/public/ecc/torm10.tfm
+ texmf-dist/fonts/tfm/public/ecc/torm5.tfm
+ texmf-dist/fonts/tfm/public/ecc/torm6.tfm
+ texmf-dist/fonts/tfm/public/ecc/torm7.tfm
+ texmf-dist/fonts/tfm/public/ecc/torm8.tfm
+ texmf-dist/fonts/tfm/public/ecc/torm9.tfm
+ texmf-dist/fonts/tfm/public/ecc/tosl10.tfm
+ texmf-dist/fonts/tfm/public/ecc/tosl5.tfm
+ texmf-dist/fonts/tfm/public/ecc/tosl6.tfm
+ texmf-dist/fonts/tfm/public/ecc/tosl7.tfm
+ texmf-dist/fonts/tfm/public/ecc/tosl8.tfm
+ texmf-dist/fonts/tfm/public/ecc/tosl9.tfm
+ texmf-dist/fonts/tfm/public/ecc/toti10.tfm
+catalogue-version
+catalogue-date 2006-12-07 15:13:33 +0100
+catalogue-ctan /fonts/ecc
+catalogue-license lppl
+
+name ecltree
+category Package
+revision 845
+shortdesc Trees using epic and eepic macros.
+longdesc The package recursively draws trees: each subtree is defined in
+longdesc a ‘bundle’ environment, with a set of leaves described by
+longdesc \chunk macros. A chunk may have a bundle environment inside it.
+runfiles size=7214
+ texmf-dist/tex/latex/ecltree/eclbip.sty
+ texmf-dist/tex/latex/ecltree/ecltree.sty
+catalogue-version 1.1a
+catalogue-date 2006-12-01 14:16:52 +0100
+catalogue-ctan /macros/latex/contrib/eclbip
+catalogue-license lppl
+
+name eco
+category Package
+revision 846
+shortdesc Oldstyle numerals using EC fonts.
+longdesc A set of font metric files and virtual fonts for using the EC
+longdesc fonts with oldstyle numerals. These files can only be used
+longdesc together with the standard ec fonts. The style file eco.sty is
+longdesc sufficient to use the eco fonts but if you intend to use other
+longdesc font families as well, e.g., PostScript fonts, try altfont.
+docfiles size=22136
+ texmf-dist/doc/fonts/eco/CHANGES
+ texmf-dist/doc/fonts/eco/COPYING
+ texmf-dist/doc/fonts/eco/INSTALL
+ texmf-dist/doc/fonts/eco/README details="Readme"
+ texmf-dist/doc/fonts/eco/VERSION
+srcfiles size=36348
+ texmf-dist/source/fonts/eco/TS1.etx
+ texmf-dist/source/fonts/eco/create.sh
+ texmf-dist/source/fonts/eco/dostretch.mtx
+ texmf-dist/source/fonts/eco/ecodh.tex
+ texmf-dist/source/fonts/eco/ecor.tex
+ texmf-dist/source/fonts/eco/ecori.tex
+ texmf-dist/source/fonts/eco/ecoss.tex
+ texmf-dist/source/fonts/eco/ecott.tex
+ texmf-dist/source/fonts/eco/ecovt.tex
+runfiles size=2611777
+ texmf-dist/fonts/tfm/public/eco/ecobi0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobi3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobl3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecobx3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecodh3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoit3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorb3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecorm3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosi3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosl3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoso3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoss3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecost3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecosx3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoti3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecott3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui0500.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecoui3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovi3583.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt0600.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt0700.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt0800.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt0900.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt1000.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt1095.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt1200.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt1440.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt1728.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt2074.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt2488.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt2986.tfm
+ texmf-dist/fonts/tfm/public/eco/ecovt3583.tfm
+ texmf-dist/fonts/vf/public/eco/ecobi0500.vf
+ texmf-dist/fonts/vf/public/eco/ecobi0600.vf
+ texmf-dist/fonts/vf/public/eco/ecobi0700.vf
+ texmf-dist/fonts/vf/public/eco/ecobi0800.vf
+ texmf-dist/fonts/vf/public/eco/ecobi0900.vf
+ texmf-dist/fonts/vf/public/eco/ecobi1000.vf
+ texmf-dist/fonts/vf/public/eco/ecobi1095.vf
+ texmf-dist/fonts/vf/public/eco/ecobi1200.vf
+ texmf-dist/fonts/vf/public/eco/ecobi1440.vf
+ texmf-dist/fonts/vf/public/eco/ecobi1728.vf
+ texmf-dist/fonts/vf/public/eco/ecobi2074.vf
+ texmf-dist/fonts/vf/public/eco/ecobi2488.vf
+ texmf-dist/fonts/vf/public/eco/ecobi2986.vf
+ texmf-dist/fonts/vf/public/eco/ecobi3583.vf
+ texmf-dist/fonts/vf/public/eco/ecobl0500.vf
+ texmf-dist/fonts/vf/public/eco/ecobl0600.vf
+ texmf-dist/fonts/vf/public/eco/ecobl0700.vf
+ texmf-dist/fonts/vf/public/eco/ecobl0800.vf
+ texmf-dist/fonts/vf/public/eco/ecobl0900.vf
+ texmf-dist/fonts/vf/public/eco/ecobl1000.vf
+ texmf-dist/fonts/vf/public/eco/ecobl1095.vf
+ texmf-dist/fonts/vf/public/eco/ecobl1200.vf
+ texmf-dist/fonts/vf/public/eco/ecobl1440.vf
+ texmf-dist/fonts/vf/public/eco/ecobl1728.vf
+ texmf-dist/fonts/vf/public/eco/ecobl2074.vf
+ texmf-dist/fonts/vf/public/eco/ecobl2488.vf
+ texmf-dist/fonts/vf/public/eco/ecobl2986.vf
+ texmf-dist/fonts/vf/public/eco/ecobl3583.vf
+ texmf-dist/fonts/vf/public/eco/ecobx0500.vf
+ texmf-dist/fonts/vf/public/eco/ecobx0600.vf
+ texmf-dist/fonts/vf/public/eco/ecobx0700.vf
+ texmf-dist/fonts/vf/public/eco/ecobx0800.vf
+ texmf-dist/fonts/vf/public/eco/ecobx0900.vf
+ texmf-dist/fonts/vf/public/eco/ecobx1000.vf
+ texmf-dist/fonts/vf/public/eco/ecobx1095.vf
+ texmf-dist/fonts/vf/public/eco/ecobx1200.vf
+ texmf-dist/fonts/vf/public/eco/ecobx1440.vf
+ texmf-dist/fonts/vf/public/eco/ecobx1728.vf
+ texmf-dist/fonts/vf/public/eco/ecobx2074.vf
+ texmf-dist/fonts/vf/public/eco/ecobx2488.vf
+ texmf-dist/fonts/vf/public/eco/ecobx2986.vf
+ texmf-dist/fonts/vf/public/eco/ecobx3583.vf
+ texmf-dist/fonts/vf/public/eco/ecodh0500.vf
+ texmf-dist/fonts/vf/public/eco/ecodh0600.vf
+ texmf-dist/fonts/vf/public/eco/ecodh0700.vf
+ texmf-dist/fonts/vf/public/eco/ecodh0800.vf
+ texmf-dist/fonts/vf/public/eco/ecodh0900.vf
+ texmf-dist/fonts/vf/public/eco/ecodh1000.vf
+ texmf-dist/fonts/vf/public/eco/ecodh1095.vf
+ texmf-dist/fonts/vf/public/eco/ecodh1200.vf
+ texmf-dist/fonts/vf/public/eco/ecodh1440.vf
+ texmf-dist/fonts/vf/public/eco/ecodh1728.vf
+ texmf-dist/fonts/vf/public/eco/ecodh2074.vf
+ texmf-dist/fonts/vf/public/eco/ecodh2488.vf
+ texmf-dist/fonts/vf/public/eco/ecodh2986.vf
+ texmf-dist/fonts/vf/public/eco/ecodh3583.vf
+ texmf-dist/fonts/vf/public/eco/ecoit0600.vf
+ texmf-dist/fonts/vf/public/eco/ecoit0700.vf
+ texmf-dist/fonts/vf/public/eco/ecoit0800.vf
+ texmf-dist/fonts/vf/public/eco/ecoit0900.vf
+ texmf-dist/fonts/vf/public/eco/ecoit1000.vf
+ texmf-dist/fonts/vf/public/eco/ecoit1095.vf
+ texmf-dist/fonts/vf/public/eco/ecoit1200.vf
+ texmf-dist/fonts/vf/public/eco/ecoit1440.vf
+ texmf-dist/fonts/vf/public/eco/ecoit1728.vf
+ texmf-dist/fonts/vf/public/eco/ecoit2074.vf
+ texmf-dist/fonts/vf/public/eco/ecoit2488.vf
+ texmf-dist/fonts/vf/public/eco/ecoit2986.vf
+ texmf-dist/fonts/vf/public/eco/ecoit3583.vf
+ texmf-dist/fonts/vf/public/eco/ecorb0500.vf
+ texmf-dist/fonts/vf/public/eco/ecorb0600.vf
+ texmf-dist/fonts/vf/public/eco/ecorb0700.vf
+ texmf-dist/fonts/vf/public/eco/ecorb0800.vf
+ texmf-dist/fonts/vf/public/eco/ecorb0900.vf
+ texmf-dist/fonts/vf/public/eco/ecorb1000.vf
+ texmf-dist/fonts/vf/public/eco/ecorb1095.vf
+ texmf-dist/fonts/vf/public/eco/ecorb1200.vf
+ texmf-dist/fonts/vf/public/eco/ecorb1440.vf
+ texmf-dist/fonts/vf/public/eco/ecorb1728.vf
+ texmf-dist/fonts/vf/public/eco/ecorb2074.vf
+ texmf-dist/fonts/vf/public/eco/ecorb2488.vf
+ texmf-dist/fonts/vf/public/eco/ecorb2986.vf
+ texmf-dist/fonts/vf/public/eco/ecorb3583.vf
+ texmf-dist/fonts/vf/public/eco/ecorm0500.vf
+ texmf-dist/fonts/vf/public/eco/ecorm0600.vf
+ texmf-dist/fonts/vf/public/eco/ecorm0700.vf
+ texmf-dist/fonts/vf/public/eco/ecorm0800.vf
+ texmf-dist/fonts/vf/public/eco/ecorm0900.vf
+ texmf-dist/fonts/vf/public/eco/ecorm1000.vf
+ texmf-dist/fonts/vf/public/eco/ecorm1095.vf
+ texmf-dist/fonts/vf/public/eco/ecorm1200.vf
+ texmf-dist/fonts/vf/public/eco/ecorm1440.vf
+ texmf-dist/fonts/vf/public/eco/ecorm1728.vf
+ texmf-dist/fonts/vf/public/eco/ecorm2074.vf
+ texmf-dist/fonts/vf/public/eco/ecorm2488.vf
+ texmf-dist/fonts/vf/public/eco/ecorm2986.vf
+ texmf-dist/fonts/vf/public/eco/ecorm3583.vf
+ texmf-dist/fonts/vf/public/eco/ecosi0500.vf
+ texmf-dist/fonts/vf/public/eco/ecosi0600.vf
+ texmf-dist/fonts/vf/public/eco/ecosi0700.vf
+ texmf-dist/fonts/vf/public/eco/ecosi0800.vf
+ texmf-dist/fonts/vf/public/eco/ecosi0900.vf
+ texmf-dist/fonts/vf/public/eco/ecosi1000.vf
+ texmf-dist/fonts/vf/public/eco/ecosi1095.vf
+ texmf-dist/fonts/vf/public/eco/ecosi1200.vf
+ texmf-dist/fonts/vf/public/eco/ecosi1440.vf
+ texmf-dist/fonts/vf/public/eco/ecosi1728.vf
+ texmf-dist/fonts/vf/public/eco/ecosi2074.vf
+ texmf-dist/fonts/vf/public/eco/ecosi2488.vf
+ texmf-dist/fonts/vf/public/eco/ecosi2986.vf
+ texmf-dist/fonts/vf/public/eco/ecosi3583.vf
+ texmf-dist/fonts/vf/public/eco/ecosl0500.vf
+ texmf-dist/fonts/vf/public/eco/ecosl0600.vf
+ texmf-dist/fonts/vf/public/eco/ecosl0700.vf
+ texmf-dist/fonts/vf/public/eco/ecosl0800.vf
+ texmf-dist/fonts/vf/public/eco/ecosl0900.vf
+ texmf-dist/fonts/vf/public/eco/ecosl1000.vf
+ texmf-dist/fonts/vf/public/eco/ecosl1095.vf
+ texmf-dist/fonts/vf/public/eco/ecosl1200.vf
+ texmf-dist/fonts/vf/public/eco/ecosl1440.vf
+ texmf-dist/fonts/vf/public/eco/ecosl1728.vf
+ texmf-dist/fonts/vf/public/eco/ecosl2074.vf
+ texmf-dist/fonts/vf/public/eco/ecosl2488.vf
+ texmf-dist/fonts/vf/public/eco/ecosl2986.vf
+ texmf-dist/fonts/vf/public/eco/ecosl3583.vf
+ texmf-dist/fonts/vf/public/eco/ecoso0500.vf
+ texmf-dist/fonts/vf/public/eco/ecoso0600.vf
+ texmf-dist/fonts/vf/public/eco/ecoso0700.vf
+ texmf-dist/fonts/vf/public/eco/ecoso0800.vf
+ texmf-dist/fonts/vf/public/eco/ecoso0900.vf
+ texmf-dist/fonts/vf/public/eco/ecoso1000.vf
+ texmf-dist/fonts/vf/public/eco/ecoso1095.vf
+ texmf-dist/fonts/vf/public/eco/ecoso1200.vf
+ texmf-dist/fonts/vf/public/eco/ecoso1440.vf
+ texmf-dist/fonts/vf/public/eco/ecoso1728.vf
+ texmf-dist/fonts/vf/public/eco/ecoso2074.vf
+ texmf-dist/fonts/vf/public/eco/ecoso2488.vf
+ texmf-dist/fonts/vf/public/eco/ecoso2986.vf
+ texmf-dist/fonts/vf/public/eco/ecoso3583.vf
+ texmf-dist/fonts/vf/public/eco/ecoss0500.vf
+ texmf-dist/fonts/vf/public/eco/ecoss0600.vf
+ texmf-dist/fonts/vf/public/eco/ecoss0700.vf
+ texmf-dist/fonts/vf/public/eco/ecoss0800.vf
+ texmf-dist/fonts/vf/public/eco/ecoss0900.vf
+ texmf-dist/fonts/vf/public/eco/ecoss1000.vf
+ texmf-dist/fonts/vf/public/eco/ecoss1095.vf
+ texmf-dist/fonts/vf/public/eco/ecoss1200.vf
+ texmf-dist/fonts/vf/public/eco/ecoss1440.vf
+ texmf-dist/fonts/vf/public/eco/ecoss1728.vf
+ texmf-dist/fonts/vf/public/eco/ecoss2074.vf
+ texmf-dist/fonts/vf/public/eco/ecoss2488.vf
+ texmf-dist/fonts/vf/public/eco/ecoss2986.vf
+ texmf-dist/fonts/vf/public/eco/ecoss3583.vf
+ texmf-dist/fonts/vf/public/eco/ecost0600.vf
+ texmf-dist/fonts/vf/public/eco/ecost0700.vf
+ texmf-dist/fonts/vf/public/eco/ecost0800.vf
+ texmf-dist/fonts/vf/public/eco/ecost0900.vf
+ texmf-dist/fonts/vf/public/eco/ecost1000.vf
+ texmf-dist/fonts/vf/public/eco/ecost1095.vf
+ texmf-dist/fonts/vf/public/eco/ecost1200.vf
+ texmf-dist/fonts/vf/public/eco/ecost1440.vf
+ texmf-dist/fonts/vf/public/eco/ecost1728.vf
+ texmf-dist/fonts/vf/public/eco/ecost2074.vf
+ texmf-dist/fonts/vf/public/eco/ecost2488.vf
+ texmf-dist/fonts/vf/public/eco/ecost2986.vf
+ texmf-dist/fonts/vf/public/eco/ecost3583.vf
+ texmf-dist/fonts/vf/public/eco/ecosx0500.vf
+ texmf-dist/fonts/vf/public/eco/ecosx0600.vf
+ texmf-dist/fonts/vf/public/eco/ecosx0700.vf
+ texmf-dist/fonts/vf/public/eco/ecosx0800.vf
+ texmf-dist/fonts/vf/public/eco/ecosx0900.vf
+ texmf-dist/fonts/vf/public/eco/ecosx1000.vf
+ texmf-dist/fonts/vf/public/eco/ecosx1095.vf
+ texmf-dist/fonts/vf/public/eco/ecosx1200.vf
+ texmf-dist/fonts/vf/public/eco/ecosx1440.vf
+ texmf-dist/fonts/vf/public/eco/ecosx1728.vf
+ texmf-dist/fonts/vf/public/eco/ecosx2074.vf
+ texmf-dist/fonts/vf/public/eco/ecosx2488.vf
+ texmf-dist/fonts/vf/public/eco/ecosx2986.vf
+ texmf-dist/fonts/vf/public/eco/ecosx3583.vf
+ texmf-dist/fonts/vf/public/eco/ecoti0500.vf
+ texmf-dist/fonts/vf/public/eco/ecoti0600.vf
+ texmf-dist/fonts/vf/public/eco/ecoti0700.vf
+ texmf-dist/fonts/vf/public/eco/ecoti0800.vf
+ texmf-dist/fonts/vf/public/eco/ecoti0900.vf
+ texmf-dist/fonts/vf/public/eco/ecoti1000.vf
+ texmf-dist/fonts/vf/public/eco/ecoti1095.vf
+ texmf-dist/fonts/vf/public/eco/ecoti1200.vf
+ texmf-dist/fonts/vf/public/eco/ecoti1440.vf
+ texmf-dist/fonts/vf/public/eco/ecoti1728.vf
+ texmf-dist/fonts/vf/public/eco/ecoti2074.vf
+ texmf-dist/fonts/vf/public/eco/ecoti2488.vf
+ texmf-dist/fonts/vf/public/eco/ecoti2986.vf
+ texmf-dist/fonts/vf/public/eco/ecoti3583.vf
+ texmf-dist/fonts/vf/public/eco/ecott0600.vf
+ texmf-dist/fonts/vf/public/eco/ecott0700.vf
+ texmf-dist/fonts/vf/public/eco/ecott0800.vf
+ texmf-dist/fonts/vf/public/eco/ecott0900.vf
+ texmf-dist/fonts/vf/public/eco/ecott1000.vf
+ texmf-dist/fonts/vf/public/eco/ecott1095.vf
+ texmf-dist/fonts/vf/public/eco/ecott1200.vf
+ texmf-dist/fonts/vf/public/eco/ecott1440.vf
+ texmf-dist/fonts/vf/public/eco/ecott1728.vf
+ texmf-dist/fonts/vf/public/eco/ecott2074.vf
+ texmf-dist/fonts/vf/public/eco/ecott2488.vf
+ texmf-dist/fonts/vf/public/eco/ecott2986.vf
+ texmf-dist/fonts/vf/public/eco/ecott3583.vf
+ texmf-dist/fonts/vf/public/eco/ecoui0500.vf
+ texmf-dist/fonts/vf/public/eco/ecoui0600.vf
+ texmf-dist/fonts/vf/public/eco/ecoui0700.vf
+ texmf-dist/fonts/vf/public/eco/ecoui0800.vf
+ texmf-dist/fonts/vf/public/eco/ecoui0900.vf
+ texmf-dist/fonts/vf/public/eco/ecoui1000.vf
+ texmf-dist/fonts/vf/public/eco/ecoui1095.vf
+ texmf-dist/fonts/vf/public/eco/ecoui1200.vf
+ texmf-dist/fonts/vf/public/eco/ecoui1440.vf
+ texmf-dist/fonts/vf/public/eco/ecoui1728.vf
+ texmf-dist/fonts/vf/public/eco/ecoui2074.vf
+ texmf-dist/fonts/vf/public/eco/ecoui2488.vf
+ texmf-dist/fonts/vf/public/eco/ecoui2986.vf
+ texmf-dist/fonts/vf/public/eco/ecoui3583.vf
+ texmf-dist/fonts/vf/public/eco/ecovi0600.vf
+ texmf-dist/fonts/vf/public/eco/ecovi0700.vf
+ texmf-dist/fonts/vf/public/eco/ecovi0800.vf
+ texmf-dist/fonts/vf/public/eco/ecovi0900.vf
+ texmf-dist/fonts/vf/public/eco/ecovi1000.vf
+ texmf-dist/fonts/vf/public/eco/ecovi1095.vf
+ texmf-dist/fonts/vf/public/eco/ecovi1200.vf
+ texmf-dist/fonts/vf/public/eco/ecovi1440.vf
+ texmf-dist/fonts/vf/public/eco/ecovi1728.vf
+ texmf-dist/fonts/vf/public/eco/ecovi2074.vf
+ texmf-dist/fonts/vf/public/eco/ecovi2488.vf
+ texmf-dist/fonts/vf/public/eco/ecovi2986.vf
+ texmf-dist/fonts/vf/public/eco/ecovi3583.vf
+ texmf-dist/fonts/vf/public/eco/ecovt0600.vf
+ texmf-dist/fonts/vf/public/eco/ecovt0700.vf
+ texmf-dist/fonts/vf/public/eco/ecovt0800.vf
+ texmf-dist/fonts/vf/public/eco/ecovt0900.vf
+ texmf-dist/fonts/vf/public/eco/ecovt1000.vf
+ texmf-dist/fonts/vf/public/eco/ecovt1095.vf
+ texmf-dist/fonts/vf/public/eco/ecovt1200.vf
+ texmf-dist/fonts/vf/public/eco/ecovt1440.vf
+ texmf-dist/fonts/vf/public/eco/ecovt1728.vf
+ texmf-dist/fonts/vf/public/eco/ecovt2074.vf
+ texmf-dist/fonts/vf/public/eco/ecovt2488.vf
+ texmf-dist/fonts/vf/public/eco/ecovt2986.vf
+ texmf-dist/fonts/vf/public/eco/ecovt3583.vf
+ texmf-dist/tex/latex/eco/T1cmodh.fd
+ texmf-dist/tex/latex/eco/T1cmor.fd
+ texmf-dist/tex/latex/eco/T1cmoss.fd
+ texmf-dist/tex/latex/eco/T1cmott.fd
+ texmf-dist/tex/latex/eco/T1cmovt.fd
+ texmf-dist/tex/latex/eco/eco.sty
+catalogue-version 1.3
+catalogue-date 2007-09-25 20:45:33 +0200
+catalogue-ctan /fonts/eco
+catalogue-license gpl
+
+name economic
+category Package
+revision 4602
+shortdesc BibTeX support for submitting to Economics journals.
+longdesc The bundle offers macros and BibTeX styles for the American
+longdesc Economic Review (AER), the American Journal of Agricultural
+longdesc Economics (AJAE), the Canadian Journal of Economics (CJE), the
+longdesc European Review of Agricultural Economics (ERAE), the
+longdesc International Economic Review (IER) and Economica. The macro
+longdesc sets are based on (and require) the harvard package, and all
+longdesc provide variations of author-date styles of presentation.
+docfiles size=52697
+ texmf-dist/doc/bibtex/economic/README
+ texmf-dist/doc/bibtex/economic/aer-natbib.tex
+ texmf-dist/doc/bibtex/economic/ajae-test.bib
+ texmf-dist/doc/bibtex/economic/ajae-test.tex
+ texmf-dist/doc/bibtex/economic/ecca-test.bib
+ texmf-dist/doc/bibtex/economic/ecca-test.tex
+ texmf-dist/doc/bibtex/economic/erae-test.bib
+ texmf-dist/doc/bibtex/economic/erae-test.tex
+ texmf-dist/doc/bibtex/economic/itaxpf-test.bib
+ texmf-dist/doc/bibtex/economic/itaxpf-test.tex
+ texmf-dist/doc/bibtex/economic/itaxpf-title.tex
+ texmf-dist/doc/bibtex/economic/wigle.bib
+ texmf-dist/doc/bibtex/economic/wigle.tex
+runfiles size=347747
+ texmf-dist/bibtex/bst/economic/aer.bst
+ texmf-dist/bibtex/bst/economic/aertt.bst
+ texmf-dist/bibtex/bst/economic/ajae.bst
+ texmf-dist/bibtex/bst/economic/cje.bst
+ texmf-dist/bibtex/bst/economic/ecca.bst
+ texmf-dist/bibtex/bst/economic/econometrica-fr.bst
+ texmf-dist/bibtex/bst/economic/econometrica.bst
+ texmf-dist/bibtex/bst/economic/ecta.bst
+ texmf-dist/bibtex/bst/economic/erae.bst
+ texmf-dist/bibtex/bst/economic/ier.bst
+ texmf-dist/bibtex/bst/economic/itaxpf.bst
+ texmf-dist/tex/latex/economic/aer.sty
+ texmf-dist/tex/latex/economic/aertt.sty
+ texmf-dist/tex/latex/economic/ajae.cls
+ texmf-dist/tex/latex/economic/cje.sty
+ texmf-dist/tex/latex/economic/ecca.cls
+ texmf-dist/tex/latex/economic/erae.cls
+ texmf-dist/tex/latex/economic/itaxpf.cls
+catalogue-version
+catalogue-date 2007-07-12 21:44:19 +0200
+catalogue-ctan /biblio/bibtex/contrib/economic
+catalogue-license lppl
+
+name ecv
+category Package
+revision 5019
+docfiles size=315568
+ texmf-dist/doc/latex/ecv/COPYING
+ texmf-dist/doc/latex/ecv/README
+ texmf-dist/doc/latex/ecv/docstrip.cfg
+ texmf-dist/doc/latex/ecv/ecv.pdf
+ texmf-dist/doc/latex/ecv/template/CV-template_de.pdf
+ texmf-dist/doc/latex/ecv/template/CV-template_de.tex
+ texmf-dist/doc/latex/ecv/template/CV-template_en.pdf
+ texmf-dist/doc/latex/ecv/template/CV-template_en.tex
+ texmf-dist/doc/latex/ecv/template/Makefile
+ texmf-dist/doc/latex/ecv/template/portrait.eps
+srcfiles size=38504
+ texmf-dist/source/latex/ecv/ecv.dtx
+ texmf-dist/source/latex/ecv/ecv.ins
+runfiles size=14343
+ texmf-dist/tex/latex/ecv/ecv.cls
+ texmf-dist/tex/latex/ecv/ecvEnglish.ldf
+ texmf-dist/tex/latex/ecv/ecvGerman.ldf
+ texmf-dist/tex/latex/ecv/ecvNLS.sty
+
+name ed
+category Package
+revision 5468
+shortdesc Editorial Notes for LaTeX documents.
+longdesc This package defines a couple of editorial notes that simplify
+longdesc collaboration on a LaTeX text. These allow authors to annotate
+longdesc status information in the source. In draft mode, the
+longdesc annotations are shown for communication, and in publication
+longdesc mode these are suppressed.
+docfiles size=141755
+ texmf-dist/doc/latex/ed/README details="Readme"
+ texmf-dist/doc/latex/ed/ed.pdf details="Package documentation"
+srcfiles size=16600
+ texmf-dist/source/latex/ed/ed.dtx
+ texmf-dist/source/latex/ed/ed.ins
+runfiles size=4351
+ texmf-dist/tex/latex/ed/ed.sty
+catalogue-version v1.3
+catalogue-date 2007-11-12 15:38:47 +0100
+catalogue-ctan /macros/latex/contrib/ed
+catalogue-license lppl
+
+name edmac
+category Package
+revision 613
+shortdesc Typeset scholarly edition.
+longdesc A macro package for typesetting scholarly critical editions.
+docfiles size=342166
+ texmf-dist/doc/latex/edmac/COPYRIGHT
+ texmf-dist/doc/latex/edmac/braonain.tex
+ texmf-dist/doc/latex/edmac/copying
+ texmf-dist/doc/latex/edmac/ed-nfss.txt
+ texmf-dist/doc/latex/edmac/edmac.doc
+ texmf-dist/doc/latex/edmac/edstanza.doc
+ texmf-dist/doc/latex/edmac/edszadoc.tex
+ texmf-dist/doc/latex/edmac/features.tex
+ texmf-dist/doc/latex/edmac/readme
+srcfiles size=1275
+ texmf-dist/source/latex/edmac/edmac.drv
+runfiles size=64016
+ texmf-dist/tex/generic/edmac/edmac.tex
+ texmf-dist/tex/generic/edmac/edmacfss.sty
+ texmf-dist/tex/generic/edmac/edstanza.tex
+ texmf-dist/tex/generic/edmac/tabmac.tex
+catalogue-version
+catalogue-date 2007-01-02 10:01:06 +0100
+catalogue-ctan /macros/plain/contrib/edmac
+catalogue-license lppl
+
+name ednotes
+category Package
+revision 2261
+shortdesc Typeset scholarly edition.
+longdesc A macro package for typesetting scholarly critical editions.
+longdesc Provides macros for critical edition typesetting with LaTeX,
+longdesc including support for line numbers and layers of footnotes.
+docfiles size=562030
+ texmf-dist/doc/latex/ednotes/CHANGES.txt
+ texmf-dist/doc/latex/ednotes/CHANGING.txt
+ texmf-dist/doc/latex/ednotes/README
+ texmf-dist/doc/latex/ednotes/README4U.txt
+ texmf-dist/doc/latex/ednotes/READMORE.txt
+ texmf-dist/doc/latex/ednotes/ednotes.pdf details="All plain text files, as pdf:" language="en"
+ texmf-dist/doc/latex/ednotes/ednotes.tex
+ texmf-dist/doc/latex/ednotes/ednotugb.pdf details="TUGboat paper:" language="en"
+ texmf-dist/doc/latex/ednotes/emathtst.tex
+ texmf-dist/doc/latex/ednotes/varnrule.tex
+ texmf-dist/doc/latex/ednotes/visible.txt
+runfiles size=108215
+ texmf-dist/tex/latex/ednotes/edcntwd0.sty
+ texmf-dist/tex/latex/ednotes/ednotes.sty
+ texmf-dist/tex/latex/ednotes/lblchng1.sty
+ texmf-dist/tex/latex/ednotes/mfparptc.sty
+ texmf-dist/tex/latex/ednotes/mfparxsp.sty
+catalogue-version 1.3a
+catalogue-date 2007-03-06 00:44:08 +0100
+catalogue-ctan /macros/latex/contrib/ednotes
+catalogue-license lppl
+
+name eemeir
+category Package
+revision 4131
+shortdesc Adjust the gender of words in a document.
+longdesc Defines macros for third-person singular pronouns (\E, \Em,
+longdesc \Eir, \Eirs), which expand differently according to a
+longdesc masculine/feminine switch. (If the switch is ‘masculine’,
+longdesc they would expand to ‘he’, ‘him’, ‘his’ and
+longdesc ‘his’; if ‘feminine’, they would expand to ‘she’,
+longdesc ‘her’, ‘her’ and ‘hers". Apart from the pronouns, one
+longdesc can define ‘word pairs’, such as mother/father,
+longdesc daughter/son, and so on. Gender may be defined once per
+longdesc document, as an environment, or may be flipped on the fly.
+docfiles size=161778
+ texmf-dist/doc/latex/eemeir/README
+ texmf-dist/doc/latex/eemeir/eemeir.pdf
+srcfiles size=21550
+ texmf-dist/source/latex/eemeir/eemeir.dtx
+ texmf-dist/source/latex/eemeir/eemeir.ins
+runfiles size=3547
+ texmf-dist/tex/latex/eemeir/eemeir.sty
+catalogue-version 1.1b
+catalogue-date 2007-02-20 10:49:06 +0100
+catalogue-ctan /macros/latex/contrib/eemeir
+catalogue-license lppl
+
+name eepic
+category Package
+revision 1487
+shortdesc Extensions to epic and the LaTeX drawing tools.
+longdesc Extensions to epic and the LaTeX picture drawing environment,
+longdesc including the drawing of lines at any slope, the drawing of
+longdesc circles in any radii, and the drawing of dotted and dashed
+longdesc lines much faster with much less TeX memory, and providing
+longdesc several new commands for drawing ellipses, arcs, splines, and
+longdesc filled circles and ellipses.
+docfiles size=68434
+ texmf-dist/doc/latex/eepic/eepic.dvi
+ texmf-dist/doc/latex/eepic/eepic.tex
+ texmf-dist/doc/latex/eepic/epic-eg3.tex
+ texmf-dist/doc/latex/eepic/epic-eg4.tex
+ texmf-dist/doc/latex/eepic/readme
+srcfiles size=28635
+ texmf-dist/source/latex/eepic/epic-eg3.fig
+ texmf-dist/source/latex/eepic/epic-eg4.fig
+ texmf-dist/source/latex/eepic/fig2eepic/epic-eg3.fig
+ texmf-dist/source/latex/eepic/fig2eepic/epic-eg4.fig
+ texmf-dist/source/latex/eepic/fig2eepic/fig2epic.1
+ texmf-dist/source/latex/eepic/fig2eepic/makefile
+ texmf-dist/source/latex/eepic/fig2eepic/readme
+ texmf-dist/source/latex/eepic/grafig.shar
+runfiles size=46058
+ texmf-dist/tex/latex/eepic/eepic.sty
+ texmf-dist/tex/latex/eepic/eepicemu.sty
+ texmf-dist/tex/latex/eepic/epic.sty
+catalogue-version
+catalogue-date 2007-02-06 22:00:42 +0100
+catalogue-ctan /macros/latex/contrib/eepic
+catalogue-license dfsg
+
+name egameps
+category Package
+revision 2188
+shortdesc LaTeX package for typesetting extensive games.
+longdesc The style is intended to have enough features to draw any
+longdesc extensive game with relative ease. The facilities of PSTricks
+longdesc are used for graphics. (An older version of the package, which
+longdesc uses the LaTeX picture environment rather than PSTricks and
+longdesc consequently has many fewer features is available on the
+longdesc package home page.)
+docfiles size=201458
+ texmf-dist/doc/latex/egameps/README
+ texmf-dist/doc/latex/egameps/egameps.pdf
+ texmf-dist/doc/latex/egameps/egameps.tex
+runfiles size=43370
+ texmf-dist/tex/latex/egameps/egameps.sty
+catalogue-version 1.1
+catalogue-date 2007-03-06 00:44:08 +0100
+catalogue-ctan /macros/latex/contrib/egameps
+catalogue-license lppl
+
+name egplot
+category Package
+revision 2411
+shortdesc Encapsulate Gnuplot sources in LaTeX documents.
+longdesc A package to encapsulate gnuplot commands in a LaTeX source
+longdesc file, so that a document’s figures are maintained in parallel
+longdesc with the document source itself.
+docfiles size=151649
+ texmf-dist/doc/latex/egplot/egplot.README
+ texmf-dist/doc/latex/egplot/manual.ps.gz
+srcfiles size=48482
+ texmf-dist/source/latex/egplot/egplot.drv
+ texmf-dist/source/latex/egplot/egplot.dtx
+ texmf-dist/source/latex/egplot/egplot.ins
+ texmf-dist/source/latex/egplot/egpman.drv
+runfiles size=10166
+ texmf-dist/tex/latex/egplot/egplot.sty
+catalogue-version 1.02a
+catalogue-date $Author: robin $
+catalogue-ctan /macros/latex/contrib/egplot
+catalogue-license gpl
+
+name eiad
+category Package
+revision 852
+shortdesc Traditional style Irish fonts.
+longdesc In both lower and upper case 32 letters are defined (18 'plain'
+longdesc ones, 5 long vowels and 9 aspirated consonants). The ligature
+longdesc 'agus' is also made available. The remaining characters
+longdesc (digits, punctuation and accents) are inherited from the
+longdesc Computer Modern family of fonts. The font definitions use code
+longdesc from the sauter fonts, so those fonts have to be installed
+longdesc before using eiad. OT1*.fd files are provided for use with
+longdesc LaTeX.
+docfiles size=165515
+ texmf-dist/doc/fonts/eiad/Leigh_me.txt
+ texmf-dist/doc/fonts/eiad/amhrawn.ps.gz
+ texmf-dist/doc/fonts/eiad/amhrawn.tex
+ texmf-dist/doc/fonts/eiad/evening.ps.gz
+ texmf-dist/doc/fonts/eiad/evening.tex
+ texmf-dist/doc/fonts/eiad/micheal.ps.gz
+ texmf-dist/doc/fonts/eiad/micheal.tex
+ texmf-dist/doc/fonts/eiad/recreat.ps.gz
+ texmf-dist/doc/fonts/eiad/recreat.tex
+srcfiles size=17120
+ texmf-dist/source/latex/eiad/Leigh_me
+ texmf-dist/source/latex/eiad/README
+ texmf-dist/source/latex/eiad/eiad.dtx
+ texmf-dist/source/latex/eiad/eiad.ins
+runfiles size=147728
+ texmf-dist/fonts/source/public/eiad/Fbf10.mf
+ texmf-dist/fonts/source/public/eiad/Fr10.mf
+ texmf-dist/fonts/source/public/eiad/eiadb10.mf
+ texmf-dist/fonts/source/public/eiad/eiadbx10.mf
+ texmf-dist/fonts/source/public/eiad/eiadbxi10.mf
+ texmf-dist/fonts/source/public/eiad/eiadbxsl10.mf
+ texmf-dist/fonts/source/public/eiad/eiadccsc10.mf
+ texmf-dist/fonts/source/public/eiad/eiadci10.mf
+ texmf-dist/fonts/source/public/eiad/eiadcr10.mf
+ texmf-dist/fonts/source/public/eiad/eiadcsc10.mf
+ texmf-dist/fonts/source/public/eiad/eiadcsl10.mf
+ texmf-dist/fonts/source/public/eiad/eiadcslc9.mf
+ texmf-dist/fonts/source/public/eiad/eiaddunh10.mf
+ texmf-dist/fonts/source/public/eiad/eiadff10.mf
+ texmf-dist/fonts/source/public/eiad/eiadfi10.mf
+ texmf-dist/fonts/source/public/eiad/eiadfib8.mf
+ texmf-dist/fonts/source/public/eiad/eiadi10.mf
+ texmf-dist/fonts/source/public/eiad/eiaditt10.mf
+ texmf-dist/fonts/source/public/eiad/eiadr10.mf
+ texmf-dist/fonts/source/public/eiad/eiadr12.mf
+ texmf-dist/fonts/source/public/eiad/eiadr17.mf
+ texmf-dist/fonts/source/public/eiad/eiadsl10.mf
+ texmf-dist/fonts/source/public/eiad/eiadsltt10.mf
+ texmf-dist/fonts/source/public/eiad/eiadss10.mf
+ texmf-dist/fonts/source/public/eiad/eiadssbx10.mf
+ texmf-dist/fonts/source/public/eiad/eiadssdc10.mf
+ texmf-dist/fonts/source/public/eiad/eiadssi10.mf
+ texmf-dist/fonts/source/public/eiad/eiadssq8.mf
+ texmf-dist/fonts/source/public/eiad/eiadssqi8.mf
+ texmf-dist/fonts/source/public/eiad/eiadtcsc10.mf
+ texmf-dist/fonts/source/public/eiad/eiadtt10.mf
+ texmf-dist/fonts/source/public/eiad/eiadvtt10.mf
+ texmf-dist/fonts/source/public/eiad/eira.mf
+ texmf-dist/fonts/source/public/eiad/eirl.mf
+ texmf-dist/fonts/source/public/eiad/eiru.mf
+ texmf-dist/fonts/source/public/eiad/gaec7cb.mf
+ texmf-dist/fonts/source/public/eiad/gaelach.mf
+ texmf-dist/fonts/tfm/public/eiad/eiadb10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadbx10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadbxi10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadbxsl10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadccsc10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadci10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadcr10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadcsc10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadcsl10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadcslc9.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiaddunh10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadff10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadfi10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadfib8.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadi10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiaditt10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadr10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadr12.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadr17.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadsl10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadsltt10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadss10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadssbx10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadssdc10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadssi10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadssq8.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadssqi8.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadtcsc10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadtt10.tfm
+ texmf-dist/fonts/tfm/public/eiad/eiadvtt10.tfm
+ texmf-dist/tex/latex/eiad/eiad.sty
+ texmf-dist/tex/latex/eiad/ot1eiad.fd
+ texmf-dist/tex/latex/eiad/ot1eiadcc.fd
+ texmf-dist/tex/latex/eiad/ot1eiadss.fd
+ texmf-dist/tex/latex/eiad/ot1eiadtt.fd
+catalogue-version
+catalogue-date 2007-01-02 01:17:18 +0100
+catalogue-ctan /fonts/eiad
+catalogue-license unknown
+
+name eijkhout
+category Package
+revision 2172
+shortdesc Victor Eijkhout's packages.
+longdesc Three unrelated packages: – DB_process, to parse and process
+longdesc database output; – CD_labeler, to typeset user text to fit on
+longdesc a CD label; and – repeat, a nestable, generic loop macro.
+runfiles size=24451
+ texmf-dist/tex/generic/eijkhout/CD_labeler.tex
+ texmf-dist/tex/generic/eijkhout/CD_labeler_test.tex
+ texmf-dist/tex/generic/eijkhout/DB_process.tex
+ texmf-dist/tex/generic/eijkhout/repeat.tex
+catalogue-version
+catalogue-date 2006-12-04 15:01:13 +0100
+catalogue-ctan /macros/generic/eijkhout
+catalogue-license unknown
+
+name ellipsis
+category Package
+revision 853
+shortdesc Fix uneven spacing around ellipses in LaTeX text mode.
+longdesc This is a simple package that fixes a problem in the way LaTeX
+longdesc handles ellipses: it always puts a tiny bit more space after
+longdesc \dots in text mode than before it, which results in the
+longdesc ellipsis being off-center when used between two words.
+docfiles size=133721
+ texmf-dist/doc/latex/ellipsis/README details="Readme"
+ texmf-dist/doc/latex/ellipsis/ellipsis.pdf details="Package documentation"
+srcfiles size=20949
+ texmf-dist/source/latex/ellipsis/ellipsis.dtx
+ texmf-dist/source/latex/ellipsis/ellipsis.ins
+runfiles size=2829
+ texmf-dist/tex/latex/ellipsis/ellipsis.sty
+catalogue-version
+catalogue-date 2007-01-02 01:17:18 +0100
+catalogue-ctan /macros/latex/contrib/ellipsis
+catalogue-license lppl
+
+name elmath
+category Package
+revision 854
+shortdesc Mathematics in Greek texts.
+longdesc This package has been designed to facilitate the use of Greek
+longdesc letters in mathematical mode. The package allows one to
+longdesc directly type in Greek letters (in ISO 8859-7 encoding) in math
+longdesc mode.
+docfiles size=94748
+ texmf-dist/doc/latex/elmath/elmath.pdf details="Package documentation"
+srcfiles size=13076
+ texmf-dist/source/latex/elmath/elmath.dtx
+ texmf-dist/source/latex/elmath/elmath.ins
+runfiles size=9875
+ texmf-dist/tex/latex/elmath/elmath.sty
+catalogue-version v1.2
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/elmath
+catalogue-license lppl
+
+name elpres
+category Package
+revision 855
+shortdesc A simple class for electronic presentations
+longdesc Elpres is a simple class for electronic presentations to be
+longdesc shown on screen or a beamer. Elpres is derived from article.cls
+longdesc and may be used with LaTeX or pdfLaTeX.
+docfiles size=519319
+ texmf-dist/doc/latex/elpres/elpres-example.pdf
+ texmf-dist/doc/latex/elpres/elpres-example.tex
+ texmf-dist/doc/latex/elpres/elpres-manual.pdf details="Package documentation"
+ texmf-dist/doc/latex/elpres/elpres-manual.tex
+ texmf-dist/doc/latex/elpres/gradient1.png
+ texmf-dist/doc/latex/elpres/gradient2.png
+runfiles size=3025
+ texmf-dist/tex/latex/elpres/elpres.cls
+catalogue-version v0.3
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/elpres
+catalogue-license lppl
+
+name elsevier
+category Package
+revision 4768
+shortdesc Classes for Elsevier Science journals.
+longdesc The bundle contains a preprint class (elsart) and three journal
+longdesc classes (elsart1p, elsart3p and elsart5p). All these files (and
+longdesc the instructions for use) are provided by Elsevier themselves.
+docfiles size=412996
+ texmf-dist/doc/latex/elsevier/CHANGES
+ texmf-dist/doc/latex/elsevier/README details="README file" language="en"
+ texmf-dist/doc/latex/elsevier/instructions-harv.pdf details="Instructions for use, harvard-style citations" language="en"
+ texmf-dist/doc/latex/elsevier/instructions-harv.tex
+ texmf-dist/doc/latex/elsevier/instructions-num.pdf details="Instructions for use, numeric citations" language="en"
+ texmf-dist/doc/latex/elsevier/instructions-num.tex
+ texmf-dist/doc/latex/elsevier/template-harv.tex
+ texmf-dist/doc/latex/elsevier/template-num.tex
+runfiles size=96173
+ texmf-dist/tex/latex/elsevier/elsart.cls
+ texmf-dist/tex/latex/elsevier/elsart1p.cls
+ texmf-dist/tex/latex/elsevier/elsart3p.cls
+ texmf-dist/tex/latex/elsevier/elsart5p.cls
+catalogue-version 2.20
+catalogue-date 2007-08-17 12:52:05 +0200
+catalogue-ctan /macros/latex/contrib/elsevier
+catalogue-license lppl
+
+name elsevier-bib
+category Package
+revision 3313
+shortdesc BibTeX styles to be used in Elsevier preprints.
+longdesc Four styles, one ‘harvard-like’, and three with numeric
+longdesc labels, for use with the Elsevier preprint styles.
+docfiles size=961
+ texmf-dist/doc/bibtex/elsevier-bib/README-bst
+runfiles size=109197
+ texmf-dist/bibtex/bst/elsevier-bib/elsart-harv.bst
+ texmf-dist/bibtex/bst/elsevier-bib/elsart-num-names.bst
+ texmf-dist/bibtex/bst/elsevier-bib/elsart-num-sort.bst
+ texmf-dist/bibtex/bst/elsevier-bib/elsart-num.bst
+catalogue-version
+catalogue-date 2007-02-06 22:00:42 +0100
+catalogue-ctan /biblio/bibtex/contrib/elsevier
+catalogue-license lppl
+
+name elvish
+category Package
+revision 613
+shortdesc Fonts for typesetting Tolkien Elvish scripts.
+longdesc The bundle provides fonts for Cirth (cirth.mf, etc.) and for
+longdesc Tengwar (teng10.mf). The Tengwar fonts are supported by macros
+longdesc in teng.tex, or by the (better documented) tengtex package.
+docfiles size=3702
+ texmf-dist/doc/fonts/elvish/README
+runfiles size=72852
+ texmf-dist/fonts/source/public/elvish/elvish-cirth.mf
+ texmf-dist/fonts/source/public/elvish/teng10.mf
+ texmf-dist/fonts/source/public/elvish/tengdev.mf
+ texmf-dist/fonts/source/public/elvish/tengmacs.mf
+ texmf-dist/fonts/source/public/elvish/tengmain.mf
+ texmf-dist/fonts/source/public/elvish/tengsecs.mf
+ texmf-dist/fonts/source/public/elvish/tengteht.mf
+ texmf-dist/fonts/tfm/public/elvish/elvish-cirth.tfm
+ texmf-dist/fonts/tfm/public/elvish/teng10.tfm
+ texmf-dist/tex/generic/elvish/teng.tex
+catalogue-version
+catalogue-date 2007-01-02 01:17:18 +0100
+catalogue-ctan /fonts/elvish
+catalogue-license dfsg
+
+name em
+category Package
+revision 857
+docfiles size=10713
+ texmf-dist/doc/latex/em/em.txt
+srcfiles size=27953
+ texmf-dist/source/latex/em/em.fdd
+ texmf-dist/source/latex/em/em.ins
+runfiles size=16809
+ texmf-dist/tex/latex/em/em.sty
+
+name emp
+category Package
+revision 858
+shortdesc "Encapsulate" MetaPost figures in a document.
+longdesc Emp is a package for encapsulating MetaPost figures in LaTeX:
+longdesc the package provides environments where you can place MetaPost
+longdesc commands, and means of using that code as fragments for
+longdesc building up figures to include in your document. So, with emp,
+longdesc the procedure is to run your document with LaTeX, run MetaPost,
+longdesc and then complete running your document in the normal way. Emp
+longdesc is therefore useful for keeping illustrations in synchrony with
+longdesc the text. It also frees you from inventing descriptive names
+longdesc for PostScript files that fit into the confines of file system
+longdesc conventions.
+docfiles size=63622
+ texmf-dist/doc/latex/emp/manual.ps.gz
+srcfiles size=63949
+ texmf-dist/source/latex/emp/COPYING
+ texmf-dist/source/latex/emp/Makefile
+ texmf-dist/source/latex/emp/README
+ texmf-dist/source/latex/emp/emp.drv
+ texmf-dist/source/latex/emp/emp.dtx
+ texmf-dist/source/latex/emp/emp.ins
+ texmf-dist/source/latex/emp/empman.drv
+runfiles size=6808
+ texmf-dist/tex/latex/emp/emp.sty
+catalogue-version
+catalogue-date 2006-12-12 21:21:26 +0100
+catalogue-ctan /macros/latex/contrib/emp
+catalogue-license gpl
+
+name emulateapj
+category Package
+revision 2240
+shortdesc Produce output similar to that of APJ.
+longdesc A LaTeX class (based on RevTeX) to produce preprints with the
+longdesc page layout similar to that of the Astrophysical Journal.
+docfiles size=200077
+ texmf-dist/doc/latex/emulateapj/README details="Readme"
+ texmf-dist/doc/latex/emulateapj/sample.pdf
+ texmf-dist/doc/latex/emulateapj/sample.tex
+runfiles size=54100
+ texmf-dist/tex/latex/emulateapj/emulateapj.cls
+catalogue-version
+catalogue-date 2007-03-06 00:44:08 +0100
+catalogue-ctan /macros/latex/contrib/emulateapj
+catalogue-license lppl
+
+name enctex
+category Package
+revision 613
+docfiles size=445476
+ texmf-dist/doc/generic/enctex/COPYING
+ texmf-dist/doc/generic/enctex/COPYING.UCD
+ texmf-dist/doc/generic/enctex/INSTALL
+ texmf-dist/doc/generic/enctex/INSTALL.eng
+ texmf-dist/doc/generic/enctex/README
+ texmf-dist/doc/generic/enctex/changes.txt
+ texmf-dist/doc/generic/enctex/encdoc-e.pdf
+ texmf-dist/doc/generic/enctex/encdoc-e.tex
+ texmf-dist/doc/generic/enctex/encdoc.pdf
+ texmf-dist/doc/generic/enctex/encdoc.tex
+ texmf-dist/doc/generic/enctex/math-example.tex
+ texmf-dist/doc/generic/enctex/unimap.diff
+ texmf-dist/doc/generic/enctex/unimap.py
+ texmf-dist/doc/generic/enctex/vlna.tex
+runfiles size=145552
+ texmf-dist/tex/generic/enctex/1250-csf.tex
+ texmf-dist/tex/generic/enctex/1250-il2.tex
+ texmf-dist/tex/generic/enctex/1250-latex.tex
+ texmf-dist/tex/generic/enctex/1250-t1.tex
+ texmf-dist/tex/generic/enctex/852-csf.tex
+ texmf-dist/tex/generic/enctex/852-il2.tex
+ texmf-dist/tex/generic/enctex/852-latex.tex
+ texmf-dist/tex/generic/enctex/852-t1.tex
+ texmf-dist/tex/generic/enctex/csfmacro.tex
+ texmf-dist/tex/generic/enctex/dcfonts.tex
+ texmf-dist/tex/generic/enctex/ecfonts.tex
+ texmf-dist/tex/generic/enctex/enc-u.tex
+ texmf-dist/tex/generic/enctex/encmacro.tex
+ texmf-dist/tex/generic/enctex/il2-1250.tex
+ texmf-dist/tex/generic/enctex/il2-852.tex
+ texmf-dist/tex/generic/enctex/il2-csf.tex
+ texmf-dist/tex/generic/enctex/il2-kam.tex
+ texmf-dist/tex/generic/enctex/il2-t1.tex
+ texmf-dist/tex/generic/enctex/kam-csf.tex
+ texmf-dist/tex/generic/enctex/kam-il2.tex
+ texmf-dist/tex/generic/enctex/kam-latex.tex
+ texmf-dist/tex/generic/enctex/kam-t1.tex
+ texmf-dist/tex/generic/enctex/noprefnt.tex
+ texmf-dist/tex/generic/enctex/plain-1250-cs.tex
+ texmf-dist/tex/generic/enctex/plain-1250-dc.tex
+ texmf-dist/tex/generic/enctex/plain-852-cs.tex
+ texmf-dist/tex/generic/enctex/plain-852-dc.tex
+ texmf-dist/tex/generic/enctex/plain-il2-cs.tex
+ texmf-dist/tex/generic/enctex/plain-il2-dc.tex
+ texmf-dist/tex/generic/enctex/plain-kam-cs.tex
+ texmf-dist/tex/generic/enctex/plain-kam-dc.tex
+ texmf-dist/tex/generic/enctex/plain-utf8-cs.tex
+ texmf-dist/tex/generic/enctex/plain-utf8-ec.tex
+ texmf-dist/tex/generic/enctex/polyset.tex
+ texmf-dist/tex/generic/enctex/t1macro.tex
+ texmf-dist/tex/generic/enctex/utf8-csf.tex
+ texmf-dist/tex/generic/enctex/utf8-t1.tex
+ texmf-dist/tex/generic/enctex/utf8cseq.tex
+ texmf-dist/tex/generic/enctex/utf8math.tex
+ texmf-dist/tex/generic/enctex/utf8raw.tex
+ texmf-dist/tex/generic/enctex/utf8unkn.tex
+
+name endfloat
+category Package
+revision 1827
+shortdesc Move floats to the end with markers where they belong.
+longdesc Place all figures on pages by themselves at the end of the
+longdesc document, optionally leaving markers like "[Figure 3 about
+longdesc here]" in the text near to where the figure (or table) would
+longdesc normally have occurred.
+docfiles size=377641
+ texmf-dist/doc/latex/endfloat/COPYING
+ texmf-dist/doc/latex/endfloat/endfloat.asc
+ texmf-dist/doc/latex/endfloat/endfloat.pdf details="Package documentation"
+ texmf-dist/doc/latex/endfloat/readme.enf
+srcfiles size=84652
+ texmf-dist/source/latex/endfloat/endfloat.drv
+ texmf-dist/source/latex/endfloat/endfloat.dtx
+ texmf-dist/source/latex/endfloat/endfloat.ins
+runfiles size=13535
+ texmf-dist/tex/latex/endfloat/efxmpl.cfg
+ texmf-dist/tex/latex/endfloat/endfloat.sty
+catalogue-version 2.4i
+catalogue-date 2006-12-12 21:21:26 +0100
+catalogue-ctan /macros/latex/contrib/endfloat
+catalogue-license gpl
+
+name endheads
+category Package
+revision 3580
+shortdesc Running headers of the form "Notes to pp.xx-yy"
+longdesc Endheads provides running headers of the form “Notes to pp.
+longdesc xx–yy” for endnotes sections. It also enables one to reset
+longdesc the endnotes counter, and put a line marking the chapter change
+longdesc in the endnotes, at the beginning of every chapter. Endheads
+longdesc requires the fancyhdr, needspace, ifthen, and endnotes
+longdesc packages.
+docfiles size=138375
+ texmf-dist/doc/latex/endheads/README
+ texmf-dist/doc/latex/endheads/endheads.pdf details="Package documentation"
+srcfiles size=17649
+ texmf-dist/source/latex/endheads/endheads.dtx
+ texmf-dist/source/latex/endheads/endheads.ins
+runfiles size=5800
+ texmf-dist/tex/latex/endheads/endheads.sty
+catalogue-version v1.2
+catalogue-date 2007-01-18 22:59:12 +0100
+catalogue-ctan /macros/latex/contrib/endheads
+catalogue-license lppl
+
+name engpron
+category Package
+revision 862
+shortdesc Helps to type the pronunciation of English words.
+longdesc This package provides macros beginning with the ‘’
+longdesc character, made active, which enable us to write the British or
+longdesc American English pronunciation as one can find it in the
+longdesc ‘English Pronouncing Dictionary’ by Daniel Jones. There is
+longdesc an option to typeset the pronunciation in the style of
+longdesc Harrap’s dictionary.
+docfiles size=485839
+ texmf-dist/doc/latex/engpron/engpron.pdf details="Package documentation" language="fr"
+ texmf-dist/doc/latex/engpron/engpron.xml
+ texmf-dist/doc/latex/engpron/exemple.pdf
+ texmf-dist/doc/latex/engpron/exemple.tex
+runfiles size=6764
+ texmf-dist/tex/latex/engpron/engpron.sty
+catalogue-version 1
+catalogue-date 2006-12-12 21:21:26 +0100
+catalogue-ctan /macros/latex/contrib/engpron
+catalogue-license lppl
+
+name engrec
+category Package
+revision 863
+shortdesc Enumerate with lower- or uppercase Greek letters.
+longdesc This package provides two macros \engrec and \EnGrec to convert
+longdesc number arguments to lower case or upper case greek letters.
+longdesc They have the syntax of \alph, i.e. \engrec{a_counter},
+longdesc \EnGrec{a_counter}. Options are provided to work with the
+longdesc upgreek and fourier packages. Requires amsmath.
+docfiles size=168597
+ texmf-dist/doc/latex/engrec/Changements
+ texmf-dist/doc/latex/engrec/Changes
+ texmf-dist/doc/latex/engrec/LISEZMOI
+ texmf-dist/doc/latex/engrec/README details="Package Readme"
+ texmf-dist/doc/latex/engrec/engrec.pdf details="Package documentation"
+srcfiles size=25993
+ texmf-dist/source/latex/engrec/Makefile
+ texmf-dist/source/latex/engrec/engrec.dtx
+ texmf-dist/source/latex/engrec/engrec.ins
+runfiles size=4171
+ texmf-dist/tex/latex/engrec/engrec.sty
+catalogue-version 1
+catalogue-date 2006-12-12 21:21:26 +0100
+catalogue-ctan /macros/latex/contrib/engrec
+catalogue-license lppl
+
+name enumitem
+category Package
+revision 4623
+shortdesc Control layout of itemize, enumerate, description.
+longdesc This package provides user control over the layout of the three
+longdesc basic list environments: enumerate, itemize and description. It
+longdesc supersedes both enumerate and mdwlist (providing well-
+longdesc structured replacements for all their funtionality), and in
+longdesc addition provides functions to compute the layout of labels,
+longdesc and to ‘clone’ the standard environments, to create new
+longdesc environments with counters of their own.
+docfiles size=193503
+ texmf-dist/doc/latex/enumitem/README details="Readme"
+ texmf-dist/doc/latex/enumitem/enumitem.pdf details="Package documentation"
+ texmf-dist/doc/latex/enumitem/enumitem.tex
+runfiles size=19535
+ texmf-dist/tex/latex/enumitem/enumitem.sty
+catalogue-version 2.1
+catalogue-date 2007-07-01 23:56:05 +0200
+catalogue-ctan /macros/latex/contrib/enumitem
+catalogue-license dfsg
+
+name envbig
+category Package
+revision 865
+shortdesc Printing addresses on envelopes.
+longdesc A simple package, that prints both ‘from’ and ‘to’
+longdesc addresses.
+runfiles size=1294
+ texmf-dist/tex/latex/envbig/envbig.sty
+catalogue-version
+catalogue-date 2007-01-02 01:17:18 +0100
+catalogue-ctan /macros/latex/contrib/envbig
+catalogue-license unknown
+
+name environ
+category Package
+revision 5020
+shortdesc A new interface for environments in LaTeX.
+longdesc The package defines the \collect@body command (as in amsmath),
+longdesc as well as a \long version \Collect@Body, for collecting the
+longdesc body text of an environment. These commands are used to define
+longdesc a new author interface to creating new environments. For
+longdesc example: \NewEnvironment{test}{[#1]} wraps the entire
+longdesc environment body in square brackets, doing the right thing in
+longdesc ignoring leading and trailing spaces.
+docfiles size=97375
+ texmf-dist/doc/latex/environ/README details="Readme"
+ texmf-dist/doc/latex/environ/environ.pdf details="Package documentation"
+srcfiles size=16673
+ texmf-dist/source/latex/environ/environ.dtx
+ texmf-dist/source/latex/environ/environ.ins
+runfiles size=4586
+ texmf-dist/tex/latex/environ/environ.cfg
+ texmf-dist/tex/latex/environ/environ.sty
+catalogue-version 0.0
+catalogue-date 2007-10-03 10:32:43 +0200
+catalogue-ctan /macros/latex/contrib/environ
+catalogue-license lppl
+
+name envlab
+category Package
+revision 1487
+shortdesc Addresses on envelopes or mailing labels.
+longdesc A LaTeX package for producing mailing envelopes and labels,
+longdesc including barcodes and address formatting according to the US
+longdesc Postal Service rules. Redefines the standard \makelabels
+longdesc command of the LaTeX letter documentclass.
+docfiles size=136495
+ texmf-dist/doc/latex/envlab/elguide.dvi
+ texmf-dist/doc/latex/envlab/elguide.tex
+ texmf-dist/doc/latex/envlab/envlab.dvi
+srcfiles size=51176
+ texmf-dist/source/latex/envlab/elold.ins
+ texmf-dist/source/latex/envlab/envlab.drv
+ texmf-dist/source/latex/envlab/envlab.dtx
+ texmf-dist/source/latex/envlab/envlab.ins
+ texmf-dist/source/latex/envlab/readme.v11
+runfiles size=18132
+ texmf-dist/tex/latex/envlab/envlab.cfg
+ texmf-dist/tex/latex/envlab/envlab.sty
+catalogue-version 1.2
+catalogue-date 2007-01-19 15:19:59 +0100
+catalogue-ctan /macros/latex/contrib/envlab
+catalogue-license lppl
+
+name epigrafica
+category Package
+revision 5094
+execute addMap epigrafica.map
+docfiles size=81090
+ texmf-dist/doc/fonts/epigrafica/README
+ texmf-dist/doc/fonts/epigrafica/epigrafica.pdf
+runfiles size=518982
+ texmf-dist/fonts/afm/public/epigrafica/Epigrafica-Entona.afm
+ texmf-dist/fonts/afm/public/epigrafica/Epigrafica-EntonaReonta.afm
+ texmf-dist/fonts/afm/public/epigrafica/Epigrafica-Ortha.afm
+ texmf-dist/fonts/afm/public/epigrafica/Epigrafica-Pezokefalaia.afm
+ texmf-dist/fonts/afm/public/epigrafica/Epigrafica-Reonta.afm
+ texmf-dist/fonts/enc/dvips/epigrafica/epigraficahellenic.enc
+ texmf-dist/fonts/map/dvips/epigrafica/epigrafica.map
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficab8a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficab8r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficabi8a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficabi8r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficabo8a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficabo8r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficac8a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficac8r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahb7a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahb7r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahbi7a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahbi7r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahbo7a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahbo7r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahc7a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahc7r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahi7a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahi7r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficahn7r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficaho7a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficaho7r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficai8a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficai8r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigrafican8a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigrafican8r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficao8a.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/epigraficao8r.tfm
+ texmf-dist/fonts/tfm/public/epigrafica/gepigraficahn7a.tfm
+ texmf-dist/fonts/type1/public/epigrafica/Epigrafica-Entona.pfb
+ texmf-dist/fonts/type1/public/epigrafica/Epigrafica-EntonaReonta.pfb
+ texmf-dist/fonts/type1/public/epigrafica/Epigrafica-Ortha.pfb
+ texmf-dist/fonts/type1/public/epigrafica/Epigrafica-Pezokefalaia.pfb
+ texmf-dist/fonts/type1/public/epigrafica/Epigrafica-Reonta.pfb
+ texmf-dist/fonts/vf/public/epigrafica/epigraficab8r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficabi8r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficabo8r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficac8r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficahb7r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficahbi7r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficahbo7r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficahc7r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficahi7r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficahn7r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficaho7r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficai8r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigrafican8r.vf
+ texmf-dist/fonts/vf/public/epigrafica/epigraficao8r.vf
+ texmf-dist/tex/latex/epigrafica/epigrafica.sty
+ texmf-dist/tex/latex/epigrafica/lgrepigrafica.fd
+ texmf-dist/tex/latex/epigrafica/ot1epigrafica.fd
+
+name epigraph
+category Package
+revision 867
+shortdesc A package for typesetting epigraphs.
+longdesc Epigraphs are the pithy quotations often found at the start (or
+longdesc end) of a chapter. Both single epigraphs and lists of epigraphs
+longdesc are catered for. Various aspects are easily configurable.
+docfiles size=1445
+ texmf-dist/doc/latex/epigraph/README details="Readme"
+srcfiles size=33259
+ texmf-dist/source/latex/epigraph/epigraph.dtx
+ texmf-dist/source/latex/epigraph/epigraph.ins
+runfiles size=4034
+ texmf-dist/tex/latex/epigraph/epigraph.sty
+catalogue-version 1.5a
+catalogue-date 2007-01-02 01:17:18 +0100
+catalogue-ctan /macros/latex/contrib/epigraph
+catalogue-license lppl
+
+name epiolmec
+category Package
+revision 868
+shortdesc Typesetting the Epi-Olmec Language.
+longdesc The package contains all the necessary files to typeset Epi-
+longdesc Olmec ``documents'', a script used in Southern Middle America
+longdesc until about 500 AD.
+execute addMap epiolmec.map
+docfiles size=129350
+ texmf-dist/doc/latex/epiolmec/GlyphAccessCommands.pdf
+srcfiles size=27929
+ texmf-dist/source/latex/epiolmec/epiolmec.dtx
+ texmf-dist/source/latex/epiolmec/epiolmec.ins
+runfiles size=126509
+ texmf-dist/fonts/map/dvips/epiolmec/epiolmec.map
+ texmf-dist/fonts/tfm/public/epiolmec/EpiOlmec.tfm
+ texmf-dist/fonts/type1/public/epiolmec/Epi-Olmec.pfb
+ texmf-dist/tex/latex/epiolmec/epiolmec.sty
+catalogue-version
+catalogue-date 2007-02-06 22:00:42 +0100
+catalogue-ctan /language/epiolmec
+catalogue-license lppl
+
+name eplain
+category Package
+revision 2630
+shortdesc Extended plain tex macros.
+longdesc A powerfully extended version of the plain format, adding
+longdesc support for bibliographies, tables of contents, enumerated
+longdesc lists, verbatim input of files, numbered equations, tables,
+longdesc two-column output, footnotes, hyperlinks in PDF output and
+longdesc commutative diagrams. Eplain can also load some of the more
+longdesc useful LaTeX packages, notably graphics, graphicx, color,
+longdesc autopict (a package instance of the LaTeX picture code),
+longdesc psfrag, and url.
+depend bin-eplain
+docfiles size=1670649
+ texmf-dist/doc/eplain/AUTHORS
+ texmf-dist/doc/eplain/COPYING
+ texmf-dist/doc/eplain/ChangeLog
+ texmf-dist/doc/eplain/INSTALL
+ texmf-dist/doc/eplain/NEWS
+ texmf-dist/doc/eplain/PROJECTS
+ texmf-dist/doc/eplain/README details="Package Readme"
+ texmf-dist/doc/eplain/demo/Makefile
+ texmf-dist/doc/eplain/demo/lscommnt.tex
+ texmf-dist/doc/eplain/demo/xhyper.tex
+ texmf-dist/doc/eplain/doc/eplain.html
+ texmf-dist/doc/eplain/doc/eplain.pdf details="Package documentation"
+ texmf-dist/doc/eplain/doc/lscommnt.jpg
+ texmf-dist/doc/eplain/doc/xhyper.jpg
+ texmf-dist/doc/eplain/util/idxuniq
+ texmf-dist/doc/eplain/util/trimsee
+srcfiles size=375590
+ texmf-dist/source/eplain/eplain-source-3.1.zip
+runfiles size=188248
+ texmf-dist/tex/eplain/arrow.tex
+ texmf-dist/tex/eplain/btxmac.tex
+ texmf-dist/tex/eplain/eplain.aux
+ texmf-dist/tex/eplain/eplain.ini
+ texmf-dist/tex/eplain/eplain.tex
+catalogue-version 3.
+catalogue-date 2006-12-04 11:01:22 +0100
+catalogue-ctan /macros/eplain
+catalogue-license dfsg
+
+name epsdice
+category Package
+revision 3984
+shortdesc A scalable dice "font".
+longdesc The epsdice package defines a single command \epsdice that
+longdesc takes a numeric argument (in the range 1-6), and selects a face
+longdesc image from a file that contains each of the 6 possible die
+longdesc faces. The graphic file is provided in both Encapsulated
+longdesc PostScript and PDF formats.
+docfiles size=79596
+ texmf-dist/doc/latex/epsdice/README details="Readme"
+ texmf-dist/doc/latex/epsdice/dice.eps
+ texmf-dist/doc/latex/epsdice/dice.pdf details="Sample dice"
+ texmf-dist/doc/latex/epsdice/epsdice.pdf details="Package Documentation"
+srcfiles size=18159
+ texmf-dist/source/latex/epsdice/epsdice.dtx
+ texmf-dist/source/latex/epsdice/epsdice.ins
+runfiles size=2918
+ texmf-dist/tex/latex/epsdice/epsdice.cfg
+ texmf-dist/tex/latex/epsdice/epsdice.sty
+catalogue-version 2.1
+catalogue-date 2007-02-15 14:08:03 +0100
+catalogue-ctan /macros/latex/contrib/epsdice
+catalogue-license lppl
+
+name epsf
+category Package
+revision 1487
+shortdesc Simple macros for EPS inclusion.
+longdesc The original graphics inclusion macros for use with dvips;
+longdesc still widely used by Plain TeX users (in particular). For LaTeX
+longdesc users, the package is nowadays deprecated in favour of the more
+longdesc sophisticated standard LaTeX graphics bundle of packages (which
+longdesc are also available to Plain TeX users, either via its Plain TeX
+longdesc version, or through the support offered by etex).
+docfiles size=69781
+ texmf-dist/doc/generic/epsf/LICENSE
+ texmf-dist/doc/generic/epsf/Makefile
+ texmf-dist/doc/generic/epsf/README details="Readme"
+ texmf-dist/doc/generic/epsf/bboxgrid.ps
+ texmf-dist/doc/generic/epsf/fndbadps
+ texmf-dist/doc/generic/epsf/okay/teps.eps
+ texmf-dist/doc/generic/epsf/okay/tepsf.eps
+ texmf-dist/doc/generic/epsf/okay/tepsf1.dvi
+ texmf-dist/doc/generic/epsf/okay/tepsf2.dvi
+ texmf-dist/doc/generic/epsf/okay/tepsf3.dvi
+ texmf-dist/doc/generic/epsf/teps.eps
+ texmf-dist/doc/generic/epsf/tepsf.eps
+ texmf-dist/doc/generic/epsf/tepsf1.tex
+ texmf-dist/doc/generic/epsf/tepsf2.ltx
+ texmf-dist/doc/generic/epsf/tepsf3.tex
+runfiles size=53188
+ texmf-dist/tex/generic/epsf/epsf.sty
+ texmf-dist/tex/generic/epsf/epsf.tex
+catalogue-version 2.7.3
+catalogue-date 2007-10-24 17:28:15 +0200
+catalogue-ctan /macros/generic/epsf
+catalogue-license pd
+
+name epslatex-fr
+category Documentation
+revision 2550
+docfiles size=3226303
+ texmf-doc/doc/french/epslatex-fr/Ball.eps
+ texmf-doc/doc/french/epslatex-fr/CHAP2.sty
+ texmf-doc/doc/french/epslatex-fr/Construction.eps
+ texmf-doc/doc/french/epslatex-fr/Franc-chap.sty
+ texmf-doc/doc/french/epslatex-fr/README
+ texmf-doc/doc/french/epslatex-fr/Warning.eps
+ texmf-doc/doc/french/epslatex-fr/alltex.sty
+ texmf-doc/doc/french/epslatex-fr/auteurs.sty
+ texmf-doc/doc/french/epslatex-fr/bases.sty
+ texmf-doc/doc/french/epslatex-fr/block.sty
+ texmf-doc/doc/french/epslatex-fr/box1.eps
+ texmf-doc/doc/french/epslatex-fr/box2.eps
+ texmf-doc/doc/french/epslatex-fr/boxes.sty
+ texmf-doc/doc/french/epslatex-fr/btxdoc.bib
+ texmf-doc/doc/french/epslatex-fr/cm.eps
+ texmf-doc/doc/french/epslatex-fr/cm.ps
+ texmf-doc/doc/french/epslatex-fr/danger.eps
+ texmf-doc/doc/french/epslatex-fr/divers.sty
+ texmf-doc/doc/french/epslatex-fr/ebnf.sty
+ texmf-doc/doc/french/epslatex-fr/export.sty
+ texmf-doc/doc/french/epslatex-fr/fepslatex.pdf
+ texmf-doc/doc/french/epslatex-fr/fepslatex.tex
+ texmf-doc/doc/french/epslatex-fr/fill.sty
+ texmf-doc/doc/french/epslatex-fr/fmparhack.sty
+ texmf-doc/doc/french/epslatex-fr/foot.sty
+ texmf-doc/doc/french/epslatex-fr/fr.sty
+ texmf-doc/doc/french/epslatex-fr/franc.sty
+ texmf-doc/doc/french/epslatex-fr/frnew.sty
+ texmf-doc/doc/french/epslatex-fr/g_toc_entry.sty
+ texmf-doc/doc/french/epslatex-fr/graphic.eps
+ texmf-doc/doc/french/epslatex-fr/hands.sty
+ texmf-doc/doc/french/epslatex-fr/header.tex
+ texmf-doc/doc/french/epslatex-fr/indentondemand.sty
+ texmf-doc/doc/french/epslatex-fr/makecmds.sty
+ texmf-doc/doc/french/epslatex-fr/makerobust.sty
+ texmf-doc/doc/french/epslatex-fr/mass.eps
+ texmf-doc/doc/french/epslatex-fr/mypatches.sty
+ texmf-doc/doc/french/epslatex-fr/myvarioref.sty
+ texmf-doc/doc/french/epslatex-fr/nrfoot.sty
+ texmf-doc/doc/french/epslatex-fr/origin.eps
+ texmf-doc/doc/french/epslatex-fr/overlay.sty
+ texmf-doc/doc/french/epslatex-fr/pale.eps
+ texmf-doc/doc/french/epslatex-fr/pend.eps
+ texmf-doc/doc/french/epslatex-fr/pretzel.eps
+ texmf-doc/doc/french/epslatex-fr/pretzel.ps
+ texmf-doc/doc/french/epslatex-fr/rdanger.eps
+ texmf-doc/doc/french/epslatex-fr/rosette.eps
+ texmf-doc/doc/french/epslatex-fr/rosette.ps
+ texmf-doc/doc/french/epslatex-fr/sgte.sty
+ texmf-doc/doc/french/epslatex-fr/smaller.sty
+ texmf-doc/doc/french/epslatex-fr/square.eps
+ texmf-doc/doc/french/epslatex-fr/topcapt.sty
+ texmf-doc/doc/french/epslatex-fr/topfig.sty
+ texmf-doc/doc/french/epslatex-fr/warn.sty
+ texmf-doc/doc/french/epslatex-fr/wdesc.sty
+ texmf-doc/doc/french/epslatex-fr/whitecdp.sty
+ texmf-doc/doc/french/epslatex-fr/wide.eps
+ texmf-doc/doc/french/epslatex-fr/widecenter.sty
+ texmf-doc/doc/french/epslatex-fr/xb.sty
+
+name epspdfconversion
+category Package
+revision 5140
+shortdesc On-the-fly conversion of EPS to PDF.
+longdesc The package calls the epstopdf package to convert EPS graphics
+longdesc to PDF, on the fly. It servs as a vehicle for passing
+longdesc conversion options (such as grayscale, prepress or pdfversion)
+longdesc to the epspdf converter.
+docfiles size=444855
+ texmf-dist/doc/latex/epspdfconversion/README details="Readme"
+ texmf-dist/doc/latex/epspdfconversion/documentation/epspdfconversion_docu.pdf details="Package documentation"
+ texmf-dist/doc/latex/epspdfconversion/documentation/epspdfconversion_docu.tex
+ texmf-dist/doc/latex/epspdfconversion/documentation/testimage-static.eps
+ texmf-dist/doc/latex/epspdfconversion/documentation/testimage.eps
+runfiles size=5324
+ texmf-dist/tex/latex/epspdfconversion/epspdfconversion.sty
+catalogue-version 0.3
+catalogue-date 2007-10-16 11:01:13 +0200
+catalogue-ctan /macros/latex/contrib/epspdfconversion
+catalogue-license lppl
+
+name eqlist
+category Package
+revision 3110
+shortdesc Description lists with equal indentation.
+longdesc This package provides a list environment which sets a
+longdesc description-like list but with the difference that the
+longdesc indentation corresponds to the longest item of the list.
+docfiles size=95678
+ texmf-dist/doc/latex/eqlist/eqlist.pdf details="Package documentation"
+ texmf-dist/doc/latex/eqlist/eqlist.tex
+srcfiles size=21856
+ texmf-dist/source/latex/eqlist/eqlist.dtx
+ texmf-dist/source/latex/eqlist/eqlist.ins
+runfiles size=2232
+ texmf-dist/tex/latex/eqlist/eqlist.sty
+catalogue-version 2.1
+catalogue-date 2007-01-02 10:01:06 +0100
+catalogue-ctan /macros/latex/contrib/eqlist
+catalogue-license unknown
+
+name eqname
+category Package
+revision 871
+shortdesc Name tags for equations.
+longdesc The \eqname command provides a name tag for the current
+longdesc equation, in place of an equation number. The name tag will be
+longdesc picked up by a subsequent \label command.
+runfiles size=941
+ texmf-dist/tex/latex/eqname/eqname.sty
+catalogue-version
+catalogue-date 2007-03-06 00:44:08 +0100
+catalogue-ctan /macros/latex/contrib/gene/eqname/eqname.sty
+catalogue-license unknown
+
+name eqnarray
+category Package
+revision 1487
+shortdesc More generalised equation arrays with numbering.
+longdesc Defines an equationarray environment, that allows more than
+longdesc three columns, but otherwise behaves like LaTeX's eqnarray
+longdesc environment. This environment is similar, in some ways, to the
+longdesc align environment of amsmath. The package requires the array
+longdesc package.
+srcfiles size=22918
+ texmf-dist/source/latex/eqnarray/README
+ texmf-dist/source/latex/eqnarray/eqnarray.bbl
+ texmf-dist/source/latex/eqnarray/eqnarray.drv
+ texmf-dist/source/latex/eqnarray/eqnarray.dtx
+ texmf-dist/source/latex/eqnarray/eqnarray.dvi
+ texmf-dist/source/latex/eqnarray/eqnarray.ins
+runfiles size=4272
+ texmf-dist/tex/latex/eqnarray/eqnarray.sty
+catalogue-version 1.2a
+catalogue-date 2007-01-02 10:01:06 +0100
+catalogue-ctan /macros/latex/contrib/eqnarray
+catalogue-license unknown
+
+name eqparbox
+category Package
+revision 873
+shortdesc Create equal-widthed parboxes.
+longdesc LaTeX users sometimes need to ensure that two or more blocks of
+longdesc text occupy the same amount of horizontal space on the page. To
+longdesc that end, the eqparbox package defines a new command,
+longdesc \eqparbox, which works just like \parbox, except that instead
+longdesc of specifying a width, one specifies a tag. All eqparboxes with
+longdesc the same tag—regardless of where they are in the
+longdesc document—will stretch to fit the widest eqparbox with that
+longdesc tag. This simple, equal-width mechanism can be used for a
+longdesc variety of alignment purposes, as is evidenced by the examples
+longdesc in eqparbox's documentation. Version 2.0 makes better use of
+longdesc TeX's memory, allows numbers and symbols to appear in tags,
+longdesc preserves fonts across \\ boundaries, and eliminates some
+longdesc incorrect \global prefixes.
+docfiles size=176796
+ texmf-dist/doc/latex/eqparbox/README details="Readme"
+ texmf-dist/doc/latex/eqparbox/eqparbox.pdf details="Package documentation"
+srcfiles size=31905
+ texmf-dist/source/latex/eqparbox/eqparbox.dtx
+ texmf-dist/source/latex/eqparbox/eqparbox.ins
+runfiles size=3490
+ texmf-dist/tex/latex/eqparbox/eqparbox.sty
+catalogue-version 2.1
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/eqparbox
+catalogue-license lppl
+
+name errata
+category Package
+revision 5437
+shortdesc Error markup for LaTeX documents.
+longdesc This package provides a simple infrastructure for recording
+longdesc errata in LaTeX documents. This allows the user to maintain an
+longdesc updated version of the document (with all errors corrected) and
+longdesc to automatically generate an errata document highlighting the
+longdesc difference to the published version.
+docfiles size=168874
+ texmf-dist/doc/latex/errata/README details="Readme"
+ texmf-dist/doc/latex/errata/errata-errata.tex
+ texmf-dist/doc/latex/errata/errata.pdf details="Package documentation"
+srcfiles size=19098
+ texmf-dist/source/latex/errata/errata.dtx
+ texmf-dist/source/latex/errata/errata.ins
+runfiles size=3526
+ texmf-dist/tex/latex/errata/errata.sty
+catalogue-version v0.3
+catalogue-date 2007-11-12 15:54:14 +0100
+catalogue-ctan /macros/latex/contrib/errata
+catalogue-license lppl
+
+name es-tex-faq
+category Documentation
+revision 2227
+docfiles size=1242766
+ texmf-doc/doc/spanish/es-tex-faq/FAQ-CervanTeX.html
+ texmf-doc/doc/spanish/es-tex-faq/FAQ-CervanTeX.latin1
+ texmf-doc/doc/spanish/es-tex-faq/FAQ-CervanTeX.pdf
+ texmf-doc/doc/spanish/es-tex-faq/FAQ-CervanTeX.sgml
+ texmf-doc/doc/spanish/es-tex-faq/FAQ-CervanTeX.tex
+
+name esdiff
+category Package
+revision 874
+shortdesc Simplify typesetting of derivatives.
+longdesc The package makes writing derivatives very easy. It offers
+longdesc macros for derivatives, partial derivatives and multiple
+longdesc derivatives, and allows specification of the point at which the
+longdesc value is calculated. Some typographic alternatives may be
+longdesc selected by package options
+docfiles size=196
+ texmf-dist/doc/latex/esdiff/readme.txt
+srcfiles size=11297
+ texmf-dist/source/latex/esdiff/esdiff.dtx
+ texmf-dist/source/latex/esdiff/esdiff.ins
+runfiles size=6138
+ texmf-dist/tex/latex/esdiff/esdiff.sty
+catalogue-version 1.1
+catalogue-date 2006-10-27 00:09:51 +0200
+catalogue-ctan /macros/latex/contrib/esdiff
+catalogue-license unknown
+
+name esint
+category Package
+revision 875
+shortdesc Extended set of integrals for Computer Modern.
+longdesc The esint package permits access to alternate integral symbols
+longdesc when you're using the Computer Modern fonts. In the original
+longdesc set, several integral symbols are missing, such as \oiint. Many
+longdesc of these symbols are available in other font sets (pxfonts,
+longdesc txfonts, etc.), but there is no good solution if you want to
+longdesc use Computer Modern. The package provides Metafont source and
+longdesc LaTeX macro support.
+execute addMixedMap esint.map
+docfiles size=908
+ texmf-dist/doc/latex/esint/esint.readme
+srcfiles size=57474
+ texmf-dist/source/latex/esint/esint.dtx
+ texmf-dist/source/latex/esint/esint.ins
+runfiles size=55636
+ texmf-dist/fonts/source/public/esint/bigint.mf
+ texmf-dist/fonts/source/public/esint/esint10.mf
+ texmf-dist/fonts/source/public/esint/mathint.mf
+ texmf-dist/fonts/tfm/public/esint/esint10.tfm
+ texmf-dist/tex/latex/esint/esint.sty
+ texmf-dist/tex/latex/esint/uesint.fd
+catalogue-version 1.1
+catalogue-date 2006-10-27 00:09:51 +0200
+catalogue-ctan /macros/latex/contrib/esint
+catalogue-license pd
+
+name esint-type1
+category Package
+revision 5005
+shortdesc Font esint10 in Type 1 format
+longdesc This is Eddie Saudrais's font esint10 in Adobe PostScript Type
+longdesc 1 format. The PostScript Type 1 implementation was generated
+longdesc from the original MetaFont using mftrace. This distribution
+longdesc does not contain the TFM files that are necessary to use the
+longdesc fonts with TeX; the TFM files can be generated from the
+longdesc Metafont sources obtained by following the instructions in the
+longdesc normal way.
+depend esint
+docfiles size=47635
+ texmf-dist/doc/fonts/esint-type1/README details="Readme"
+ texmf-dist/doc/fonts/esint-type1/README.plainTeX details="Using the fonts with Plain TeX"
+ texmf-dist/doc/fonts/esint-type1/table.pdf details="Table of integral signs"
+ texmf-dist/doc/fonts/esint-type1/table.tex
+runfiles size=37746
+ texmf-dist/dvips/esint-type1/config.esint
+ texmf-dist/fonts/map/dvips/esint-type1/esint.map
+ texmf-dist/fonts/type1/public/esint-type1/esint10.pfb
+ texmf-dist/tex/plain/esint-type1/esint.tex
+catalogue-version
+catalogue-date 2007-03-06 00:44:08 +0100
+catalogue-ctan /fonts/ps-type1/esint
+catalogue-license pd
+
+name eskd
+category Package
+revision 876
+shortdesc Modern Russian typesetting.
+longdesc The class offers modern Russian text formatting, in accordance
+longdesc with accepted design standards. Fonts not (apparently)
+longdesc available on CTAN are required for use of the class.
+docfiles size=938421
+ texmf-dist/doc/latex/eskd/README details="Package README"
+ texmf-dist/doc/latex/eskd/eskd.pdf details="Package documentation"
+ texmf-dist/doc/latex/eskd/example.eps
+ texmf-dist/doc/latex/eskd/example.tex
+srcfiles size=32402
+ texmf-dist/source/latex/eskd/eskd.dtx
+ texmf-dist/source/latex/eskd/eskd.ins
+runfiles size=16798
+ texmf-dist/tex/latex/eskd/eskd.cls
+catalogue-version
+catalogue-date 2007-02-14 08:57:40 +0100
+catalogue-ctan /macros/latex/contrib/eskd
+catalogue-license lppl
+
+name eskdx
+category Package
+revision 2798
+shortdesc Modern Russian typesetting.
+longdesc Eskdx is a collection of LaTeX classes and packages to typeset
+longdesc textual and graphical documents in accordance with Russian (and
+longdesc probably post USSR) standards for designers.
+docfiles size=1730754
+ texmf-dist/doc/latex/eskdx/ChangeLog
+ texmf-dist/doc/latex/eskdx/FAQ details="Package FAQ" language="ru"
+ texmf-dist/doc/latex/eskdx/INSTALL
+ texmf-dist/doc/latex/eskdx/Makefile
+ texmf-dist/doc/latex/eskdx/Makefile.unpacked
+ texmf-dist/doc/latex/eskdx/NEWS
+ texmf-dist/doc/latex/eskdx/NEWS.in
+ texmf-dist/doc/latex/eskdx/README details="Package README"
+ texmf-dist/doc/latex/eskdx/README.in
+ texmf-dist/doc/latex/eskdx/include.m4
+ texmf-dist/doc/latex/eskdx/include.mak
+ texmf-dist/doc/latex/eskdx/manifest.txt
+ texmf-dist/doc/latex/eskdx/manual/Makefile
+ texmf-dist/doc/latex/eskdx/manual/eskdx.pdf details="Package documentation" language="ru"
+ texmf-dist/doc/latex/eskdx/manual/eskdx.tex.in
+ texmf-dist/doc/latex/eskdx/manual/example.tex
+ texmf-dist/doc/latex/eskdx/manual/img-form1.svg
+ texmf-dist/doc/latex/eskdx/manual/img-form2.svg
+ texmf-dist/doc/latex/eskdx/manual/img-form2a.svg
+ texmf-dist/doc/latex/eskdx/manual/img-title.svg
+ texmf-dist/doc/latex/eskdx/manual/latex2html-init
+ texmf-dist/doc/latex/eskdx/source/Makefile
+ texmf-dist/doc/latex/eskdx/source/eskdafterpkg.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdappsheet.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdbiblist.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdcap.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdchngsheet.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskddstu.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdexplan.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdfont.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdfootnote.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdgraph.cls.in
+ texmf-dist/doc/latex/eskdx/source/eskdhash.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdindent.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdinfo.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdlang.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdlist.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdpara.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdplain.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdrussian.def.in
+ texmf-dist/doc/latex/eskdx/source/eskdsect.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdspec.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdspecii.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdstamp.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdtab.cls.in
+ texmf-dist/doc/latex/eskdx/source/eskdtext.cls.in
+ texmf-dist/doc/latex/eskdx/source/eskdtitle.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdtitlebase.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdtotal.sty.in
+ texmf-dist/doc/latex/eskdx/source/eskdukrainian.def.in
+ texmf-dist/doc/latex/eskdx/test/Makefile
+ texmf-dist/doc/latex/eskdx/test/appsheet.tex
+ texmf-dist/doc/latex/eskdx/test/drawing-a2.tex
+ texmf-dist/doc/latex/eskdx/test/drawing-a3-mp.tex
+ texmf-dist/doc/latex/eskdx/test/drawing-a3-p.tex
+ texmf-dist/doc/latex/eskdx/test/drawing-a3.tex
+ texmf-dist/doc/latex/eskdx/test/drawing-a4.tex
+ texmf-dist/doc/latex/eskdx/test/general.tex
+ texmf-dist/doc/latex/eskdx/test/numbering.tex
+ texmf-dist/doc/latex/eskdx/test/spec.tex
+ texmf-dist/doc/latex/eskdx/test/specii.tex
+ texmf-dist/doc/latex/eskdx/test/twoside.tex
+runfiles size=115078
+ texmf-dist/tex/latex/eskdx/eskdafterpkg.sty
+ texmf-dist/tex/latex/eskdx/eskdappsheet.sty
+ texmf-dist/tex/latex/eskdx/eskdbiblist.sty
+ texmf-dist/tex/latex/eskdx/eskdcap.sty
+ texmf-dist/tex/latex/eskdx/eskdchngsheet.sty
+ texmf-dist/tex/latex/eskdx/eskddstu.sty
+ texmf-dist/tex/latex/eskdx/eskdexplan.sty
+ texmf-dist/tex/latex/eskdx/eskdfont.sty
+ texmf-dist/tex/latex/eskdx/eskdfootnote.sty
+ texmf-dist/tex/latex/eskdx/eskdgraph.cls
+ texmf-dist/tex/latex/eskdx/eskdhash.sty
+ texmf-dist/tex/latex/eskdx/eskdindent.sty
+ texmf-dist/tex/latex/eskdx/eskdinfo.sty
+ texmf-dist/tex/latex/eskdx/eskdlang.sty
+ texmf-dist/tex/latex/eskdx/eskdlist.sty
+ texmf-dist/tex/latex/eskdx/eskdpara.sty
+ texmf-dist/tex/latex/eskdx/eskdplain.sty
+ texmf-dist/tex/latex/eskdx/eskdrussian.def
+ texmf-dist/tex/latex/eskdx/eskdsect.sty
+ texmf-dist/tex/latex/eskdx/eskdspec.sty
+ texmf-dist/tex/latex/eskdx/eskdspecii.sty
+ texmf-dist/tex/latex/eskdx/eskdstamp.sty
+ texmf-dist/tex/latex/eskdx/eskdtab.cls
+ texmf-dist/tex/latex/eskdx/eskdtext.cls
+ texmf-dist/tex/latex/eskdx/eskdtitle.sty
+ texmf-dist/tex/latex/eskdx/eskdtitlebase.sty
+ texmf-dist/tex/latex/eskdx/eskdtotal.sty
+ texmf-dist/tex/latex/eskdx/eskdukrainian.def
+catalogue-version 0.97
+catalogue-date 2007-03-06 10:34:25 +0100
+catalogue-ctan /macros/latex/contrib/eskdx
+catalogue-license lppl1.3
+
+name eso-pic
+category Package
+revision 1875
+shortdesc Add picture commands (or backgrounds) to every page.
+longdesc Eso-pic is an extension of everyshi. Using everyshi's
+longdesc \EveryShipout command, eso-pic adds one or more user commands
+longdesc to LaTeX's shipout actions.
+docfiles size=217240
+ texmf-dist/doc/latex/eso-pic/README
+ texmf-dist/doc/latex/eso-pic/eso-ex1.tex
+ texmf-dist/doc/latex/eso-pic/eso-ex2.tex
+ texmf-dist/doc/latex/eso-pic/eso-ex3.tex
+ texmf-dist/doc/latex/eso-pic/eso-ex4.tex
+ texmf-dist/doc/latex/eso-pic/eso-ex5.tex
+ texmf-dist/doc/latex/eso-pic/eso-pic.pdf
+srcfiles size=22919
+ texmf-dist/source/latex/eso-pic/Makefile
+ texmf-dist/source/latex/eso-pic/eso-pic.dtx
+ texmf-dist/source/latex/eso-pic/eso-pic.ins
+runfiles size=10773
+ texmf-dist/tex/latex/eso-pic/eso-pic.sty
+ texmf-dist/tex/latex/eso-pic/showframe.sty
+catalogue-version 1.1d
+catalogue-date 2007-03-06 10:34:25 +0100
+catalogue-ctan /macros/latex/contrib/eso-pic
+catalogue-license lppl
+
+name esvect
+category Package
+revision 5487
+shortdesc Vector arrows.
+longdesc Write vectors using an arrow which is different to the Computer
+longdesc Modern one. You have the choice between several kinds of
+longdesc arrows. The package consists of the relevant metafont code and
+longdesc a package to use it.
+execute addMap esvect.map
+docfiles size=69143
+ texmf-dist/doc/latex/esvect/README
+ texmf-dist/doc/latex/esvect/esvect.pdf
+srcfiles size=56298
+ texmf-dist/source/latex/esvect/esvect.dtx
+ texmf-dist/source/latex/esvect/esvect.ins
+runfiles size=169317
+ texmf-dist/fonts/map/dvips/esvect/esvect.map
+ texmf-dist/fonts/source/public/esvect/mathvec.mf
+ texmf-dist/fonts/source/public/esvect/vecsym.mf
+ texmf-dist/fonts/source/public/esvect/vect10.mf
+ texmf-dist/fonts/source/public/esvect/vect5.mf
+ texmf-dist/fonts/source/public/esvect/vect6.mf
+ texmf-dist/fonts/source/public/esvect/vect7.mf
+ texmf-dist/fonts/source/public/esvect/vect8.mf
+ texmf-dist/fonts/source/public/esvect/vect9.mf
+ texmf-dist/fonts/source/public/esvect/vsymbol.mf
+ texmf-dist/fonts/tfm/public/esvect/vect10.tfm
+ texmf-dist/fonts/tfm/public/esvect/vect5.tfm
+ texmf-dist/fonts/tfm/public/esvect/vect6.tfm
+ texmf-dist/fonts/tfm/public/esvect/vect7.tfm
+ texmf-dist/fonts/tfm/public/esvect/vect8.tfm
+ texmf-dist/fonts/tfm/public/esvect/vect9.tfm
+ texmf-dist/fonts/type1/public/esvect/vect10.pfb
+ texmf-dist/fonts/type1/public/esvect/vect5.pfb
+ texmf-dist/fonts/type1/public/esvect/vect6.pfb
+ texmf-dist/fonts/type1/public/esvect/vect7.pfb
+ texmf-dist/fonts/type1/public/esvect/vect8.pfb
+ texmf-dist/fonts/type1/public/esvect/vect9.pfb
+ texmf-dist/tex/latex/esvect/esvect.sty
+ texmf-dist/tex/latex/esvect/uesvect.fd
+catalogue-version 1.2
+catalogue-date 2006-10-27 00:09:51 +0200
+catalogue-ctan /macros/latex/contrib/esvect
+catalogue-license gpl
+
+name etaremune
+category Package
+revision 879
+shortdesc Reverse-counting enumerate environment.
+longdesc This package implements the etaremune environment which is
+longdesc similar to the enumerate environment, except that labels are
+longdesc decreasing instead of increasing. The package provides a
+longdesc noticeably more efficient alternative to the revnum package,
+longdesc which uses painfully many counters.
+docfiles size=84616
+ texmf-dist/doc/latex/etaremune/README details="Readme"
+ texmf-dist/doc/latex/etaremune/etaremune.pdf details="Package documentation"
+srcfiles size=20224
+ texmf-dist/source/latex/etaremune/etaremune.dtx
+runfiles size=3251
+ texmf-dist/tex/latex/etaremune/etaremune.sty
+catalogue-version v1.2
+catalogue-date 2007-02-01 21:12:02 +0100
+catalogue-ctan /macros/latex/contrib/etaremune
+catalogue-license lppl
+
+name etex
+category Package
+revision 880
+docfiles size=451570
+ texmf-dist/doc/etex/base/etex.html
+ texmf-dist/doc/etex/base/etex_gen.tex
+ texmf-dist/doc/etex/base/etex_man.pdf
+ texmf-dist/doc/etex/base/etex_man.sty
+ texmf-dist/doc/etex/base/etex_man.tex
+ texmf-dist/doc/etex/base/etex_ref.html
+ texmf-dist/doc/etex/base/etex_src.html
+ texmf-dist/doc/etex/base/legal.html
+ texmf-dist/doc/etex/base/nts-group.html
+ texmf-dist/doc/etex/base/webmerge.tex
+runfiles size=49950
+ texmf-dist/tex/latex/etex/etex.sty
+ texmf-dist/tex/plain/etex/etex.src
+ texmf-dist/tex/plain/etex/etexdefs.lib
+
+name ethiop
+category Package
+revision 2269
+shortdesc LaTeX macros and fonts for typesetting Amharic.
+longdesc Ethiopian language support for the babel package, including a
+longdesc collection of fonts and TeX macros for typesetting the
+longdesc characters of the languages of Ethiopia, with MetaFont fonts
+longdesc based on EthTeX’s.
+execute addMixedMap ethiop.map
+docfiles size=530353
+ texmf-dist/doc/latex/ethiop/MANIFEST
+ texmf-dist/doc/latex/ethiop/README
+ texmf-dist/doc/latex/ethiop/codeetha.tex
+ texmf-dist/doc/latex/ethiop/codeethb.tex
+ texmf-dist/doc/latex/ethiop/ethiodoc.pdf
+ texmf-dist/doc/latex/ethiop/ethiodoc.tex
+srcfiles size=54650
+ texmf-dist/source/latex/ethiop/ethiop.dtx
+ texmf-dist/source/latex/ethiop/ethiop.ins
+runfiles size=1073539
+ texmf-dist/fonts/ofm/public/ethiop/etho10.ofm
+ texmf-dist/fonts/ofm/public/ethiop/ethob10.ofm
+ texmf-dist/fonts/ofm/public/ethiop/ethos10.ofm
+ texmf-dist/fonts/ofm/public/ethiop/ethosb10.ofm
+ texmf-dist/fonts/ovf/public/ethiop/etho10.ovf
+ texmf-dist/fonts/ovf/public/ethiop/ethob10.ovf
+ texmf-dist/fonts/ovf/public/ethiop/ethos10.ovf
+ texmf-dist/fonts/ovf/public/ethiop/ethosb10.ovf
+ texmf-dist/fonts/ovp/public/ethiop/etho10.ovp
+ texmf-dist/fonts/ovp/public/ethiop/ethob10.ovp
+ texmf-dist/fonts/ovp/public/ethiop/ethos10.ovp
+ texmf-dist/fonts/ovp/public/ethiop/ethosb10.ovp
+ texmf-dist/fonts/source/public/ethiop/eth__a.mf
+ texmf-dist/fonts/source/public/ethiop/eth__g.mf
+ texmf-dist/fonts/source/public/ethiop/eth_acce.mf
+ texmf-dist/fonts/source/public/ethiop/eth_b.mf
+ texmf-dist/fonts/source/public/ethiop/eth_c_c.mf
+ texmf-dist/fonts/source/public/ethiop/eth_cc.mf
+ texmf-dist/fonts/source/public/ethiop/eth_cc_c.mf
+ texmf-dist/fonts/source/public/ethiop/eth_ccc2.mf
+ texmf-dist/fonts/source/public/ethiop/eth_d.mf
+ texmf-dist/fonts/source/public/ethiop/eth_dd.mf
+ texmf-dist/fonts/source/public/ethiop/eth_f.mf
+ texmf-dist/fonts/source/public/ethiop/eth_fu.mf
+ texmf-dist/fonts/source/public/ethiop/eth_g.mf
+ texmf-dist/fonts/source/public/ethiop/eth_g_a.mf
+ texmf-dist/fonts/source/public/ethiop/eth_gg.mf
+ texmf-dist/fonts/source/public/ethiop/eth_ggu.mf
+ texmf-dist/fonts/source/public/ethiop/eth_gu.mf
+ texmf-dist/fonts/source/public/ethiop/eth_h.mf
+ texmf-dist/fonts/source/public/ethiop/eth_h_a.mf
+ texmf-dist/fonts/source/public/ethiop/eth_h_c.mf
+ texmf-dist/fonts/source/public/ethiop/eth_hh.mf
+ texmf-dist/fonts/source/public/ethiop/eth_hu_c.mf
+ texmf-dist/fonts/source/public/ethiop/eth_j.mf
+ texmf-dist/fonts/source/public/ethiop/eth_k.mf
+ texmf-dist/fonts/source/public/ethiop/eth_k_a.mf
+ texmf-dist/fonts/source/public/ethiop/eth_kk.mf
+ texmf-dist/fonts/source/public/ethiop/eth_kku.mf
+ texmf-dist/fonts/source/public/ethiop/eth_ku.mf
+ texmf-dist/fonts/source/public/ethiop/eth_l.mf
+ texmf-dist/fonts/source/public/ethiop/eth_m.mf
+ texmf-dist/fonts/source/public/ethiop/eth_mrf.mf
+ texmf-dist/fonts/source/public/ethiop/eth_mu.mf
+ texmf-dist/fonts/source/public/ethiop/eth_n.mf
+ texmf-dist/fonts/source/public/ethiop/eth_nn.mf
+ texmf-dist/fonts/source/public/ethiop/eth_num.mf
+ texmf-dist/fonts/source/public/ethiop/eth_p.mf
+ texmf-dist/fonts/source/public/ethiop/eth_pp.mf
+ texmf-dist/fonts/source/public/ethiop/eth_pu.mf
+ texmf-dist/fonts/source/public/ethiop/eth_punc.mf
+ texmf-dist/fonts/source/public/ethiop/eth_q.mf
+ texmf-dist/fonts/source/public/ethiop/eth_q_a.mf
+ texmf-dist/fonts/source/public/ethiop/eth_qq.mf
+ texmf-dist/fonts/source/public/ethiop/eth_qqu.mf
+ texmf-dist/fonts/source/public/ethiop/eth_qu.mf
+ texmf-dist/fonts/source/public/ethiop/eth_r.mf
+ texmf-dist/fonts/source/public/ethiop/eth_s.mf
+ texmf-dist/fonts/source/public/ethiop/eth_s_a.mf
+ texmf-dist/fonts/source/public/ethiop/eth_s_c.mf
+ texmf-dist/fonts/source/public/ethiop/eth_ss.mf
+ texmf-dist/fonts/source/public/ethiop/eth_t.mf
+ texmf-dist/fonts/source/public/ethiop/eth_tt.mf
+ texmf-dist/fonts/source/public/ethiop/eth_v.mf
+ texmf-dist/fonts/source/public/ethiop/eth_w.mf
+ texmf-dist/fonts/source/public/ethiop/eth_wu.mf
+ texmf-dist/fonts/source/public/ethiop/eth_y.mf
+ texmf-dist/fonts/source/public/ethiop/eth_z.mf
+ texmf-dist/fonts/source/public/ethiop/eth_z_c.mf
+ texmf-dist/fonts/source/public/ethiop/etha10.mf
+ texmf-dist/fonts/source/public/ethiop/etha6.mf
+ texmf-dist/fonts/source/public/ethiop/etha7.mf
+ texmf-dist/fonts/source/public/ethiop/etha8.mf
+ texmf-dist/fonts/source/public/ethiop/etha_cod.mf
+ texmf-dist/fonts/source/public/ethiop/etha_drv.mf
+ texmf-dist/fonts/source/public/ethiop/etha_lig.mf
+ texmf-dist/fonts/source/public/ethiop/ethab10.mf
+ texmf-dist/fonts/source/public/ethiop/ethab11.mf
+ texmf-dist/fonts/source/public/ethiop/ethab12.mf
+ texmf-dist/fonts/source/public/ethiop/ethab14.mf
+ texmf-dist/fonts/source/public/ethiop/ethab18.mf
+ texmf-dist/fonts/source/public/ethiop/ethab24.mf
+ texmf-dist/fonts/source/public/ethiop/ethab36.mf
+ texmf-dist/fonts/source/public/ethiop/ethab9.mf
+ texmf-dist/fonts/source/public/ethiop/ethas10.mf
+ texmf-dist/fonts/source/public/ethiop/ethasb10.mf
+ texmf-dist/fonts/source/public/ethiop/ethasb11.mf
+ texmf-dist/fonts/source/public/ethiop/ethasb12.mf
+ texmf-dist/fonts/source/public/ethiop/ethasb14.mf
+ texmf-dist/fonts/source/public/ethiop/ethasb18.mf
+ texmf-dist/fonts/source/public/ethiop/ethasb24.mf
+ texmf-dist/fonts/source/public/ethiop/ethasb36.mf
+ texmf-dist/fonts/source/public/ethiop/ethasb9.mf
+ texmf-dist/fonts/source/public/ethiop/ethatt10.mf
+ texmf-dist/fonts/source/public/ethiop/ethb10.mf
+ texmf-dist/fonts/source/public/ethiop/ethb6.mf
+ texmf-dist/fonts/source/public/ethiop/ethb7.mf
+ texmf-dist/fonts/source/public/ethiop/ethb8.mf
+ texmf-dist/fonts/source/public/ethiop/ethb_cod.mf
+ texmf-dist/fonts/source/public/ethiop/ethb_drv.mf
+ texmf-dist/fonts/source/public/ethiop/ethb_lig.mf
+ texmf-dist/fonts/source/public/ethiop/ethbb10.mf
+ texmf-dist/fonts/source/public/ethiop/ethbb11.mf
+ texmf-dist/fonts/source/public/ethiop/ethbb12.mf
+ texmf-dist/fonts/source/public/ethiop/ethbb14.mf
+ texmf-dist/fonts/source/public/ethiop/ethbb18.mf
+ texmf-dist/fonts/source/public/ethiop/ethbb24.mf
+ texmf-dist/fonts/source/public/ethiop/ethbb36.mf
+ texmf-dist/fonts/source/public/ethiop/ethbb9.mf
+ texmf-dist/fonts/source/public/ethiop/ethbs10.mf
+ texmf-dist/fonts/source/public/ethiop/ethbsb10.mf
+ texmf-dist/fonts/source/public/ethiop/ethbsb11.mf
+ texmf-dist/fonts/source/public/ethiop/ethbsb12.mf
+ texmf-dist/fonts/source/public/ethiop/ethbsb14.mf
+ texmf-dist/fonts/source/public/ethiop/ethbsb18.mf
+ texmf-dist/fonts/source/public/ethiop/ethbsb24.mf
+ texmf-dist/fonts/source/public/ethiop/ethbsb36.mf
+ texmf-dist/fonts/source/public/ethiop/ethbsb9.mf
+ texmf-dist/fonts/source/public/ethiop/ethbtt10.mf
+ texmf-dist/fonts/source/public/ethiop/ethiomac.mf
+ texmf-dist/fonts/tfm/public/ethiop/etha10.tfm
+ texmf-dist/fonts/tfm/public/ethiop/etha6.tfm
+ texmf-dist/fonts/tfm/public/ethiop/etha7.tfm
+ texmf-dist/fonts/tfm/public/ethiop/etha8.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethab10.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethab11.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethab12.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethab14.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethab18.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethab24.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethab36.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethab9.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethas10.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethasb10.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethasb11.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethasb12.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethasb14.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethasb18.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethasb24.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethasb36.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethasb9.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethatt10.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethb10.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethb6.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethb7.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethb8.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbb10.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbb11.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbb12.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbb14.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbb18.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbb24.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbb36.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbb9.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbs10.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbsb10.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbsb11.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbsb12.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbsb14.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbsb18.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbsb24.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbsb36.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbsb9.tfm
+ texmf-dist/fonts/tfm/public/ethiop/ethbtt10.tfm
+ texmf-dist/omega/ocp/ethiop/ethospc.ocp
+ texmf-dist/omega/otp/ethiop/ethospc.otp
+ texmf-dist/tex/latex/ethiop/etharab.sty
+ texmf-dist/tex/latex/ethiop/ethiop.ldf
+ texmf-dist/tex/latex/ethiop/ethiop.sty
+ texmf-dist/tex/latex/ethiop/uetha.fd
+ texmf-dist/tex/latex/ethiop/uethb.fd
+ texmf-dist/tex/latex/ethiop/uetho.fd
+catalogue-version 0.7
+catalogue-date 2007-02-14 08:57:40 +0100
+catalogue-ctan /language/ethiopia/ethiop
+catalogue-license gpl
+
+name ethiop-t1
+category Package
+revision 2269
+shortdesc Type 1 versions of Amharic fonts.
+longdesc These fonts are drop-in Adobe type 1 replacements for the fonts
+longdesc of the ethiop package.
+docfiles size=19858
+ texmf-dist/doc/latex/ethiop-t1/COPYING
+ texmf-dist/doc/latex/ethiop-t1/README
+runfiles size=5437313
+ texmf-dist/fonts/map/dvips/ethiop-t1/ethiop.map
+ texmf-dist/fonts/type1/public/ethiop-t1/etha10.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/etha6.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/etha7.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/etha8.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethab10.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethab11.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethab12.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethab14.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethab18.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethab24.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethab36.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethab9.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethas10.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethasb10.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethasb11.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethasb12.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethasb14.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethasb18.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethasb24.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethasb36.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethasb9.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethatt10.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethb10.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethb6.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethb7.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethb8.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbb10.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbb11.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbb12.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbb14.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbb18.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbb24.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbb36.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbb9.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbs10.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbsb10.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbsb11.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbsb12.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbsb14.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbsb18.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbsb24.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbsb36.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbsb9.pfb
+ texmf-dist/fonts/type1/public/ethiop-t1/ethbtt10.pfb
+catalogue-version
+catalogue-date 2007-02-14 08:57:40 +0100
+catalogue-ctan /fonts/ps-type1/ethiop
+catalogue-license gpl
+
+name etoolbox
+category Package
+revision 5149
+shortdesc Tool-box for LaTeX programmers using e-TeX.
+longdesc The etoolbox package is a toolbox of programming facilities
+longdesc geared primarily towards LaTeX class and package authors. It
+longdesc provides LaTeX frontends to some of the new primitives provided
+longdesc by e-TeX as well as some generic tools which are not strictly
+longdesc related to e-TeX but match the profile of this package. Note
+longdesc that the initial versions of this package were released under
+longdesc the name elatex. This package will not modify any part of the
+longdesc LaTeX kernel. Its name is not meant to imply that it patches
+longdesc LaTeX such that the kernel makes use of e-TeX facilities by
+longdesc default.
+docfiles size=204940
+ texmf-dist/doc/latex/etoolbox/README details="Readme"
+ texmf-dist/doc/latex/etoolbox/etoolbox.pdf details="Package documentation"
+ texmf-dist/doc/latex/etoolbox/etoolbox.tex
+runfiles size=20418
+ texmf-dist/tex/latex/etoolbox/etoolbox.sty
+catalogue-version 1.3
+catalogue-date 2007-10-16 11:01:13 +0200
+catalogue-ctan /macros/latex/contrib/etoolbox
+catalogue-license lppl
+
+name euenc
+category Package
+revision 3737
+docfiles size=114863
+ texmf-dist/doc/xelatex/euenc/README
+ texmf-dist/doc/xelatex/euenc/euenc.pdf
+ texmf-dist/doc/xelatex/euenc/test-eu1lm.ltx
+srcfiles size=21909
+ texmf-dist/source/xelatex/euenc/euenc.dtx
+ texmf-dist/source/xelatex/euenc/euenc.ins
+runfiles size=9368
+ texmf-dist/tex/xelatex/euenc/eu1enc.def
+ texmf-dist/tex/xelatex/euenc/lm/eu1lmdh.fd
+ texmf-dist/tex/xelatex/euenc/lm/eu1lmr.fd
+ texmf-dist/tex/xelatex/euenc/lm/eu1lmss.fd
+ texmf-dist/tex/xelatex/euenc/lm/eu1lmssq.fd
+ texmf-dist/tex/xelatex/euenc/lm/eu1lmtt.fd
+ texmf-dist/tex/xelatex/euenc/lm/eu1lmvtt.fd
+
+name euler
+category Package
+revision 1487
+shortdesc Use AMS Euler fonts for math.
+longdesc Provides a setup for using the AMS Euler family of fonts for
+longdesc mathematics in LaTeX documents. “The underlying philosophy of
+longdesc Zapf's Euler design was to capture the flavour of mathematics
+longdesc as it might be written by a mathematician with excellent
+longdesc handwriting.” [concrete-tug] The euler package is based on
+longdesc Knuth’s macros for the book ‘Concrete Mathematics’. The
+longdesc text fonts for the Concrete book are supported by the beton
+longdesc package.
+docfiles size=39768
+ texmf-dist/doc/latex/euler/euler.dvi
+srcfiles size=34543
+ texmf-dist/source/latex/euler/euler.dtx
+ texmf-dist/source/latex/euler/euler.ins
+ texmf-dist/source/latex/euler/legal.txt
+runfiles size=12116
+ texmf-dist/tex/latex/euler/euler.sty
+catalogue-version
+catalogue-date 2006-12-09 23:51:48 +0100
+catalogue-ctan /macros/latex/contrib/euler
+catalogue-license lppl
+
+name eulervm
+category Package
+revision 3865
+shortdesc Euler virtual math fonts.
+longdesc The well-known Euler fonts are suitable for typsetting
+longdesc mathematics in conjunction with a variety of text fonts which
+longdesc do not provide mathematical character sets of their own. Euler-
+longdesc VM is a set of virtual mathematics fonts based on Euler and CM.
+longdesc This approach has several advantages over immediately using the
+longdesc real Euler fonts: Most noticeably, less TeX resources are
+longdesc consumed, the quality of various math symbols is improved and a
+longdesc usable \hslash symbol can be provided. The virtual fonts are
+longdesc accompanied by a LaTeX package which makes them easy to use,
+longdesc particularly in conjunction with Type1 PostScript text fonts.
+longdesc They are compatible with amsmath. A package option allows the
+longdesc fonts to be loaded at 95% of their nominal size, thus blending
+longdesc better with certain text fonts, e.g., Minion.
+docfiles size=125516
+ texmf-dist/doc/latex/eulervm/README.eulervm details="Package Readme"
+ texmf-dist/doc/latex/eulervm/eulervm.pdf details="Package documentation"
+ texmf-dist/doc/latex/eulervm/manifest.txt
+srcfiles size=79828
+ texmf-dist/source/latex/eulervm/eulervm.dtx
+ texmf-dist/source/latex/eulervm/eulervm.ins
+ texmf-dist/source/latex/eulervm/fontinst/Makefile
+ texmf-dist/source/latex/eulervm/fontinst/amsrel10.mtx
+ texmf-dist/source/latex/eulervm/fontinst/amsrel5.mtx
+ texmf-dist/source/latex/eulervm/fontinst/amsrel7.mtx
+ texmf-dist/source/latex/eulervm/fontinst/axis10.mtx
+ texmf-dist/source/latex/eulervm/fontinst/axis5.mtx
+ texmf-dist/source/latex/eulervm/fontinst/axis7.mtx
+ texmf-dist/source/latex/eulervm/fontinst/eubar10.mtx
+ texmf-dist/source/latex/eulervm/fontinst/eubar5.mtx
+ texmf-dist/source/latex/eulervm/fontinst/eubar7.mtx
+ texmf-dist/source/latex/eulervm/fontinst/euml.etx
+ texmf-dist/source/latex/eulervm/fontinst/eums.etx
+ texmf-dist/source/latex/eulervm/fontinst/eumx.etx
+ texmf-dist/source/latex/eulervm/fontinst/fontevm.tex
+ texmf-dist/source/latex/eulervm/fontinst/unsetams.mtx
+ texmf-dist/source/latex/eulervm/fontinst/unseteus.mtx
+ texmf-dist/source/latex/eulervm/fontinst/unsetex.mtx
+runfiles size=44822
+ texmf-dist/fonts/tfm/public/eulervm/zeuex10.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeurb10.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeurb5.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeurb7.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeurm10.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeurm5.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeurm7.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeusb10.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeusb5.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeusb7.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeusm10.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeusm5.tfm
+ texmf-dist/fonts/tfm/public/eulervm/zeusm7.tfm
+ texmf-dist/fonts/vf/public/eulervm/zeuex10.vf
+ texmf-dist/fonts/vf/public/eulervm/zeurb10.vf
+ texmf-dist/fonts/vf/public/eulervm/zeurb5.vf
+ texmf-dist/fonts/vf/public/eulervm/zeurb7.vf
+ texmf-dist/fonts/vf/public/eulervm/zeurm10.vf
+ texmf-dist/fonts/vf/public/eulervm/zeurm5.vf
+ texmf-dist/fonts/vf/public/eulervm/zeurm7.vf
+ texmf-dist/fonts/vf/public/eulervm/zeusb10.vf
+ texmf-dist/fonts/vf/public/eulervm/zeusb5.vf
+ texmf-dist/fonts/vf/public/eulervm/zeusb7.vf
+ texmf-dist/fonts/vf/public/eulervm/zeusm10.vf
+ texmf-dist/fonts/vf/public/eulervm/zeusm5.vf
+ texmf-dist/fonts/vf/public/eulervm/zeusm7.vf
+ texmf-dist/tex/latex/eulervm/eulervm.sty
+ texmf-dist/tex/latex/eulervm/uzeuex.fd
+ texmf-dist/tex/latex/eulervm/uzeur.fd
+ texmf-dist/tex/latex/eulervm/uzeus.fd
+catalogue-version 4.0
+catalogue-date 2006-12-09 23:51:48 +0100
+catalogue-ctan /fonts/eulervm
+catalogue-license lppl
+
+name euproposal
+category Package
+revision 5341
+shortdesc A class for preparing FP7 proposals.
+longdesc The euproposal class supports many of the specific elements of
+longdesc a Framework 7 Proposal. It is optimized towards collaborative
+longdesc projects. The package comes with an extensive example (a fake
+longdesc EU proposal; see the file propB.tex) that shows all elements in
+longdesc action.
+docfiles size=348618
+ texmf-dist/doc/latex/euproposal/README details="Readme"
+ texmf-dist/doc/latex/euproposal/euproposal.pdf details="Package documentation"
+ texmf-dist/doc/latex/euproposal/propB.delivs
+ texmf-dist/doc/latex/euproposal/propB.pdf details="The fake proposal"
+ texmf-dist/doc/latex/euproposal/propB.tex
+srcfiles size=31620
+ texmf-dist/source/latex/euproposal/euproposal.dtx
+ texmf-dist/source/latex/euproposal/euproposal.ins
+runfiles size=14031
+ texmf-dist/tex/latex/euproposal/euproposal.cls
+catalogue-version 0.3
+catalogue-date 2007-11-10 11:06:38 +0100
+catalogue-ctan /macros/latex/contrib/euproposal
+catalogue-license lppl
+
+name euro
+category Package
+revision 885
+shortdesc Provide Euro values for national currency amounts.
+longdesc Converts arbitrary national currency amounts using the Euro as
+longdesc base unit, and typesets monetary amounts in almost any desired
+longdesc way. Write, e.g., \ATS{17.6} to get something like ‘17,60 öS
+longdesc (1,28 Euro)’ automatically. Conversion rates for the initial
+longdesc Euro-zone countries are already built-in. Further rates can be
+longdesc added easily. The package uses the fp package to do its sums.
+docfiles size=223709
+ texmf-dist/doc/latex/euro/euro.pdf
+ texmf-dist/doc/latex/euro/euro.txt
+srcfiles size=50236
+ texmf-dist/source/latex/euro/Makefile
+ texmf-dist/source/latex/euro/euro.dtx
+ texmf-dist/source/latex/euro/euro.ins
+runfiles size=6433
+ texmf-dist/tex/latex/euro/euro.sty
+catalogue-version 1.1
+catalogue-date 2006-09-12 14:13:09 +0200
+catalogue-ctan /macros/latex/contrib/euro
+catalogue-license lppl
+
+name euro-ce
+category Package
+revision 1487
+shortdesc Euro and CE sign font.
+longdesc MetaFont source for the symbols in several variants, designed
+longdesc to fit with Computer Modern-set text.
+docfiles size=14614
+ texmf-dist/doc/fonts/euro-ce/euro-ce.doc
+ texmf-dist/doc/fonts/euro-ce/euro-ce.dvi
+ texmf-dist/doc/fonts/euro-ce/euro-ce.tex
+runfiles size=24310
+ texmf-dist/fonts/source/public/euro-ce/ceit.mf
+ texmf-dist/fonts/source/public/euro-ce/cemac.mf
+ texmf-dist/fonts/source/public/euro-ce/cerm.mf
+ texmf-dist/fonts/source/public/euro-ce/cesl.mf
+ texmf-dist/fonts/source/public/euro-ce/eurobf.mf
+ texmf-dist/fonts/source/public/euro-ce/eurobfit.mf
+ texmf-dist/fonts/source/public/euro-ce/eurobfsl.mf
+ texmf-dist/fonts/source/public/euro-ce/euroit.mf
+ texmf-dist/fonts/source/public/euro-ce/euromac.mf
+ texmf-dist/fonts/source/public/euro-ce/euroof.mf
+ texmf-dist/fonts/source/public/euro-ce/eurorm.mf
+ texmf-dist/fonts/source/public/euro-ce/eurosl.mf
+ texmf-dist/fonts/source/public/euro-ce/eurosp.mf
+ texmf-dist/fonts/tfm/public/euro-ce/ceit.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/cerm.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/cesl.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/eurobf.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/eurobfit.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/eurobfsl.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/euroit.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/euroof.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/eurorm.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/eurosl.tfm
+ texmf-dist/fonts/tfm/public/euro-ce/eurosp.tfm
+catalogue-version
+catalogue-date 2007-07-29 11:53:03 +0200
+catalogue-ctan /fonts/euro-ce
+catalogue-license other-free
+
+name eurofont
+category Package
+revision 1487
+shortdesc Provides a command that prints a euro symbol.
+longdesc The particular symbol printed by \euro will in general change
+longdesc depending on the font family, weight, and shape in use at the
+longdesc time. This symbol can come from any source, and the package
+longdesc user has complete control over which euro symbol is used in any
+longdesc given situation. The package is pre-configured to behave
+longdesc sensibly with many common text fonts and available euro
+longdesc symbols. The \euro command can print ‘faked’ euro symbols
+longdesc from a C with two lines across it when no suitable real euro
+longdesc symbol is available; the package also includes code for
+longdesc printing fake bold euro symbols for use when no real bold
+longdesc symbol exists, as well as pre-configured support for a faked
+longdesc italic version of the marvosym font. Eurofont comes set up to
+longdesc use euro symbols from Adobe’s Eurofonts, the marvosym font,
+longdesc the Eurosym font, and any available Text Companion fonts. The
+longdesc selection between these can be done using options passed to the
+longdesc package. The eurofont package also ‘knows’ about the
+longdesc China2e font’s euro symbol, and can be configured to use it.
+execute addMap zpeu.map
+docfiles size=322405
+ texmf-dist/doc/fonts/eurofont/README.europs
+ texmf-dist/doc/fonts/eurofont/README.eurosans
+ texmf-dist/doc/fonts/eurofont/dvidrive.txt
+ texmf-dist/doc/fonts/eurofont/eurofont.dtx
+ texmf-dist/doc/fonts/eurofont/eurofont.ins
+ texmf-dist/doc/fonts/eurofont/eurosamp.pdf
+ texmf-dist/doc/fonts/eurofont/eurosamp.tex
+ texmf-dist/doc/fonts/eurofont/eutest.dvi
+ texmf-dist/doc/fonts/eurofont/eutest.tex
+ texmf-dist/doc/fonts/eurofont/readme.txt details="Package Readme"
+srcfiles size=19053
+ texmf-dist/source/fonts/eurofont/europs.dtx
+ texmf-dist/source/fonts/eurofont/europs.ins
+ texmf-dist/source/fonts/eurofont/install.sh
+ texmf-dist/source/fonts/eurofont/marvosym/fmvr8x.afm
+ texmf-dist/source/fonts/eurofont/marvosym/mvrit.tex
+ texmf-dist/source/fonts/eurofont/marvosym/tfmfiles/original/fmvr8x.tfm
+ texmf-dist/source/fonts/eurofont/marvosym/tfmfiles/original/fmvri8x.tfm
+ texmf-dist/source/fonts/eurofont/marvosym/tfmfiles/yandy/fmvr8x.tfm
+ texmf-dist/source/fonts/eurofont/marvosym/tfmfiles/yandy/fmvri8x.tfm
+runfiles size=36535
+ texmf-dist/fonts/map/dvips/eurofont/zpeu.map
+ texmf-dist/tex/latex/eurofont/eurofont.cfg
+ texmf-dist/tex/latex/eurofont/eurofont.sty
+ texmf-dist/tex/latex/eurofont/europs.sty
+ texmf-dist/tex/latex/eurofont/uzmvs.fd
+ texmf-dist/tex/latex/eurofont/uzpeu.fd
+ texmf-dist/tex/latex/eurofont/uzpeur.fd
+ texmf-dist/tex/latex/eurofont/uzpeus.fd
+ texmf-dist/tex/latex/eurofont/uzpeuss.fd
+ texmf-dist/tex/latex/eurofont/uzpeut.fd
+ texmf-dist/tex/latex/eurofont/uzpeutt.fd
+catalogue-version 1.1.3
+catalogue-date 2006-12-09 23:51:48 +0100
+catalogue-ctan /macros/latex/contrib/eurofont
+catalogue-license other
+
+name europecv
+category Package
+revision 1770
+shortdesc Unofficial class for European curricula vitae.
+longdesc The europecv class is an unofficial LaTeX implementation of the
+longdesc standard model for curricula vitae (the “Europass CV”) as
+longdesc recommended by the European Commission. Although primarily
+longdesc intended for users in the European Union, the class is flexible
+longdesc enough to be used for any kind of curriculum vitae. The class
+longdesc has localisations for all the official languages of the EU
+longdesc (plus Catalan), as well as options permitting input in UTF-8
+longdesc and koi8-r.
+docfiles size=959127
+ texmf-dist/doc/latex/europecv/europecv.pdf details="Class documentation:"
+ texmf-dist/doc/latex/europecv/europecv.tex
+ texmf-dist/doc/latex/europecv/examples/at.pdf
+ texmf-dist/doc/latex/europecv/examples/bulgarian-koi8-r.tex
+ texmf-dist/doc/latex/europecv/examples/bulgarian-utf8.tex
+ texmf-dist/doc/latex/europecv/examples/greek-utf8.pdf
+ texmf-dist/doc/latex/europecv/examples/greek-utf8.tex
+ texmf-dist/doc/latex/europecv/examples/maltese-maltese.tex
+ texmf-dist/doc/latex/europecv/examples/maltese-utf8.tex
+ texmf-dist/doc/latex/europecv/examples/minimal.pdf details="Simple example of use:"
+ texmf-dist/doc/latex/europecv/examples/minimal.tex
+ texmf-dist/doc/latex/europecv/templates/cv_template_de.pdf
+ texmf-dist/doc/latex/europecv/templates/cv_template_de.tex
+ texmf-dist/doc/latex/europecv/templates/cv_template_en.pdf
+ texmf-dist/doc/latex/europecv/templates/cv_template_en.tex
+ texmf-dist/doc/latex/europecv/templates/cv_template_it.pdf
+ texmf-dist/doc/latex/europecv/templates/cv_template_it.tex
+ texmf-dist/doc/latex/europecv/templates/cv_template_pl.pdf
+ texmf-dist/doc/latex/europecv/templates/cv_template_pl.tex
+ texmf-dist/doc/latex/europecv/templates/publications.bib
+runfiles size=166474
+ texmf-dist/tex/latex/europecv/EuropeFlagBW.eps
+ texmf-dist/tex/latex/europecv/EuropeFlagBW.pdf
+ texmf-dist/tex/latex/europecv/EuropeFlagBlueCMYK.eps
+ texmf-dist/tex/latex/europecv/EuropeFlagBlueCMYK.pdf
+ texmf-dist/tex/latex/europecv/EuropeFlagCMYK.eps
+ texmf-dist/tex/latex/europecv/EuropeFlagCMYK.pdf
+ texmf-dist/tex/latex/europecv/EuropeFlagWB.eps
+ texmf-dist/tex/latex/europecv/EuropeFlagWB.pdf
+ texmf-dist/tex/latex/europecv/ecvbg.def
+ texmf-dist/tex/latex/europecv/ecvca.def
+ texmf-dist/tex/latex/europecv/ecvcs.def
+ texmf-dist/tex/latex/europecv/ecvda.def
+ texmf-dist/tex/latex/europecv/ecvde.def
+ texmf-dist/tex/latex/europecv/ecven.def
+ texmf-dist/tex/latex/europecv/ecves.def
+ texmf-dist/tex/latex/europecv/ecvet.def
+ texmf-dist/tex/latex/europecv/ecvfi.def
+ texmf-dist/tex/latex/europecv/ecvfr.def
+ texmf-dist/tex/latex/europecv/ecvgl.def
+ texmf-dist/tex/latex/europecv/ecvgr.def
+ texmf-dist/tex/latex/europecv/ecvhu.def
+ texmf-dist/tex/latex/europecv/ecvis.def
+ texmf-dist/tex/latex/europecv/ecvit.def
+ texmf-dist/tex/latex/europecv/ecvlt.def
+ texmf-dist/tex/latex/europecv/ecvlv.def
+ texmf-dist/tex/latex/europecv/ecvmt.def
+ texmf-dist/tex/latex/europecv/ecvnl.def
+ texmf-dist/tex/latex/europecv/ecvno.def
+ texmf-dist/tex/latex/europecv/ecvpl.def
+ texmf-dist/tex/latex/europecv/ecvpt.def
+ texmf-dist/tex/latex/europecv/ecvro.def
+ texmf-dist/tex/latex/europecv/ecvsk.def
+ texmf-dist/tex/latex/europecv/ecvsl.def
+ texmf-dist/tex/latex/europecv/ecvsr.def
+ texmf-dist/tex/latex/europecv/ecvsv.def
+ texmf-dist/tex/latex/europecv/europasslogo.eps
+ texmf-dist/tex/latex/europecv/europasslogo.pdf
+ texmf-dist/tex/latex/europecv/europecv.cls
+catalogue-version
+catalogue-date 2006-12-09 23:51:48 +0100
+catalogue-ctan /macros/latex/contrib/europecv
+catalogue-license lppl
+
+name eurosans
+category Package
+revision 888
+shortdesc Interface to Adobe's sans-serif Euro font.
+longdesc Provides a convenient interface for using Adobe’s freely
+longdesc available Type 1 Euro fonts. Loading the package defines a new
+longdesc command \euro which typesets a Euro symbol. The symbol is
+longdesc always taken from the ‘EuroSans’ family, with the weight
+longdesc (medium or boldface) and shape (normal or oblique) varying
+longdesc according to the font currently selected. This Euro symbol
+longdesc meets the official design and matches most font families well
+longdesc enough, except for typewriter fonts. The fonts themselves are
+longdesc only available from Adobe (though the fonts are free of charge,
+longdesc the licence conditions prevent CTAN from distributing them).
+longdesc Metrics and maps for using the fonts (at all) are available via
+longdesc the adobe-euro package.
+docfiles size=5525
+ texmf-dist/doc/latex/eurosans/README.eurosans details="Readme"
+runfiles size=2535
+ texmf-dist/tex/latex/eurosans/eurosans.sty
+catalogue-version 2.1
+catalogue-date 2007-09-28 12:11:57 +0200
+catalogue-ctan /fonts/euro/latex/eurosans
+catalogue-license lppl
+
+name eurosym
+category Package
+revision 889
+shortdesc MetaFont and macros for Euro sign.
+longdesc The new European currency symbol for the Euro implemented in
+longdesc MetaFont, using the official European Commission dimensions,
+longdesc and providing several shapes (normal, slanted, bold, outline).
+longdesc The package also includes a LaTeX package which defines the
+longdesc macro, pre-compiled tfm files, and documentation.
+execute addMixedMap eurosym.map
+docfiles size=19908
+ texmf-dist/doc/fonts/eurosym/COPYING
+ texmf-dist/doc/fonts/eurosym/Changes
+ texmf-dist/doc/fonts/eurosym/README details="Readme"
+ texmf-dist/doc/fonts/eurosym/doc/Makefile
+ texmf-dist/doc/fonts/eurosym/makemfs
+ texmf-dist/doc/fonts/eurosym/rundvips
+ texmf-dist/doc/fonts/eurosym/runlatex
+ texmf-dist/doc/fonts/eurosym/src/Makefile
+ texmf-dist/doc/fonts/eurosym/testeuro.tex
+srcfiles size=2167
+ texmf-dist/source/fonts/eurosym/Makefile
+ texmf-dist/source/fonts/eurosym/eurosym.cpp
+runfiles size=224229
+ texmf-dist/fonts/map/dvips/eurosym/eurosym.map
+ texmf-dist/fonts/source/public/eurosym/fey.mf
+ texmf-dist/fonts/source/public/eurosym/feybl10.mf
+ texmf-dist/fonts/source/public/eurosym/feybo10.mf
+ texmf-dist/fonts/source/public/eurosym/feybr10.mf
+ texmf-dist/fonts/source/public/eurosym/feyml10.mf
+ texmf-dist/fonts/source/public/eurosym/feymo10.mf
+ texmf-dist/fonts/source/public/eurosym/feymr10.mf
+ texmf-dist/fonts/tfm/public/eurosym/feybl10.tfm
+ texmf-dist/fonts/tfm/public/eurosym/feybo10.tfm
+ texmf-dist/fonts/tfm/public/eurosym/feybr10.tfm
+ texmf-dist/fonts/tfm/public/eurosym/feyml10.tfm
+ texmf-dist/fonts/tfm/public/eurosym/feymo10.tfm
+ texmf-dist/fonts/tfm/public/eurosym/feymr10.tfm
+ texmf-dist/fonts/type1/public/eurosym/feybl10.pfb
+ texmf-dist/fonts/type1/public/eurosym/feybo10.pfb
+ texmf-dist/fonts/type1/public/eurosym/feybr10.pfb
+ texmf-dist/fonts/type1/public/eurosym/feyml10.pfb
+ texmf-dist/fonts/type1/public/eurosym/feymo10.pfb
+ texmf-dist/fonts/type1/public/eurosym/feymr10.pfb
+ texmf-dist/fonts/type1/public/eurosym/geybl10.pfb
+ texmf-dist/fonts/type1/public/eurosym/geybo10.pfb
+ texmf-dist/fonts/type1/public/eurosym/geybr10.pfb
+ texmf-dist/fonts/type1/public/eurosym/geyml10.pfb
+ texmf-dist/fonts/type1/public/eurosym/geymo10.pfb
+ texmf-dist/fonts/type1/public/eurosym/geymr10.pfb
+ texmf-dist/tex/latex/eurosym/eurosym.sty
+catalogue-version 1.2
+catalogue-date 2007-07-24 16:34:53 +0200
+catalogue-ctan /fonts/eurosym
+catalogue-license other
+
+name euxm
+category Package
+revision 101
+runfiles size=6095
+ texmf-dist/fonts/source/public/euxm/euxm10.mf
+ texmf-dist/fonts/source/public/euxm/euxm5.mf
+ texmf-dist/fonts/source/public/euxm/euxm7.mf
+ texmf-dist/fonts/source/public/euxm/euxmch.mf
+ texmf-dist/fonts/tfm/public/euxm/euxm10.tfm
+ texmf-dist/fonts/tfm/public/euxm/euxm5.tfm
+ texmf-dist/fonts/tfm/public/euxm/euxm7.tfm
+
+name everypage
+category Package
+revision 1766
+shortdesc Provide hooks to be run on every page of a document.
+longdesc The package provides hooks to perform actions on every page, or
+longdesc on the current page. Specifically, actions are performed after
+longdesc the page is composed, but before it is shipped, so they can be
+longdesc used to prepare the output page in tasks like putting
+longdesc watermarks in the background, or in setting the next page
+longdesc layout, etc.
+docfiles size=19074
+ texmf-dist/doc/latex/everypage/README
+ texmf-dist/doc/latex/everypage/everypage.pdf
+srcfiles size=12111
+ texmf-dist/source/latex/everypage/everypage.dtx
+ texmf-dist/source/latex/everypage/everypage.ins
+runfiles size=1816
+ texmf-dist/tex/latex/everypage/everypage.sty
+catalogue-version 1.0
+catalogue-date 2007-03-06 10:34:25 +0100
+catalogue-ctan /macros/latex/contrib/everypage
+catalogue-license lppl
+
+name exam
+category Package
+revision 892
+shortdesc Package for typesetting exam scripts.
+longdesc Provides a class exam, which eases production of exams, even by
+longdesc a LaTeX novice. Simple commands are provided to: – create
+longdesc questions, parts of questions, subparts of parts, and
+longdesc subsubparts of subparts, all with optional point values; –
+longdesc create a grading table, indexed either by question number
+longdesc (listing each question and the total possible points for that
+longdesc question) or by page number (listing each page with points and
+longdesc the total possible points for that page); – create headers
+longdesc and footers that are each specified in three parts: one part to
+longdesc be left justified, one part to be centered, and one part to be
+longdesc right justified, in the manner of fancyhdr Headers and/or
+longdesc footers can be different on the first page of the exam, can be
+longdesc different on the last page of the exam, and can vary depending
+longdesc on whether the page number is odd or even, or on whether the
+longdesc current page continues a question from a previous page, or on
+longdesc whether the last question on the current page continues onto
+longdesc the following page. Multiple line headers and/or footers are
+longdesc allowed, and it's easy to increase the part of the page devoted
+longdesc to headers and/or footers to allow for this. Note that the
+longdesc bundles examdesign and exams also provide a file exam.cls;
+longdesc these bundles therefore clash, and should not be installed on
+longdesc the same system.
+docfiles size=431759
+ texmf-dist/doc/latex/exam/README details="Package Readme"
+ texmf-dist/doc/latex/exam/examdoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/exam/examdoc.tex
+runfiles size=154056
+ texmf-dist/tex/latex/exam/exam.cls
+catalogue-version 2.2
+catalogue-date 2006-12-09 23:51:48 +0100
+catalogue-ctan /macros/latex/contrib/exam
+catalogue-license lppl
+
+name examdesign
+category Package
+revision 2100
+docfiles size=463650
+ texmf-dist/doc/latex/examdesign/Bugs
+ texmf-dist/doc/latex/examdesign/Changes
+ texmf-dist/doc/latex/examdesign/INSTALL
+ texmf-dist/doc/latex/examdesign/README
+ texmf-dist/doc/latex/examdesign/examdesign.pdf
+ texmf-dist/doc/latex/examdesign/examplea.pdf
+ texmf-dist/doc/latex/examdesign/examplea.tex
+ texmf-dist/doc/latex/examdesign/exampleb.pdf
+ texmf-dist/doc/latex/examdesign/exampleb.tex
+ texmf-dist/doc/latex/examdesign/examplec.pdf
+ texmf-dist/doc/latex/examdesign/examplec.tex
+ texmf-dist/doc/latex/examdesign/foobar.tex
+srcfiles size=138916
+ texmf-dist/source/latex/examdesign/examdesign.dtx
+ texmf-dist/source/latex/examdesign/examdesign.ins
+runfiles size=48281
+ texmf-dist/tex/latex/examdesign/examdesign.cls
+
+name examplep
+category Package
+revision 2840
+shortdesc Verbatim phrases and listings in LaTeX.
+longdesc Examplep provides sophisticated features for typesetting
+longdesc verbatim source code listings, including the display of the
+longdesc source code and its compiled LaTeX or METAPOST output side-by-
+longdesc side, with automatic width detection and enabled page breaks
+longdesc (in the source), without the need for specifying the source
+longdesc twice. Special care is taken that section, page and footnote
+longdesc numbers do not interfere with the main document. For
+longdesc typesetting short verbatim phrases, a replacement for the \verb
+longdesc command is also provided in the package, which can be used
+longdesc inside tables and moving arguments such as footnotes and
+longdesc section titles. The listings package is used for syntax
+longdesc highlighting. The accompanying codep package and the wrfiles.pl
+longdesc Perl script provide a convenient interface to the examplep
+longdesc package for authors of manuals. With codep it is possible to
+longdesc generate the source code, the LaTeX or METAPOST output and the
+longdesc compilable example file from a single source embedded into the
+longdesc appropriate place of the .tex document file.
+docfiles size=558736
+ texmf-dist/doc/latex/examplep/README
+ texmf-dist/doc/latex/examplep/eurotex_2005_examplep.pdf
+ texmf-dist/doc/latex/examplep/eurotex_2005_examplep.tex
+ texmf-dist/doc/latex/examplep/houses.eps
+ texmf-dist/doc/latex/examplep/houses.pdf
+ texmf-dist/doc/latex/examplep/pexaminipage.eps
+ texmf-dist/doc/latex/examplep/pexaminipage.pdf
+ texmf-dist/doc/latex/examplep/shorthyp_t1xtts.eps
+ texmf-dist/doc/latex/examplep/shorthyp_t1xtts.pdf
+ texmf-dist/doc/latex/examplep/wrfiles.pl
+runfiles size=131377
+ texmf-dist/tex/latex/examplep/codep.sty
+ texmf-dist/tex/latex/examplep/examplep.sty
+ texmf-dist/tex/latex/examplep/verbfwr.sty
+catalogue-version 0.03
+catalogue-date 2006-12-21 20:36:31 +0100
+catalogue-ctan /macros/latex/contrib/examplep
+catalogue-license gpl
+
+name exercise
+category Package
+revision 1778
+shortdesc Typeset exercises, problems, etc. and their answers
+longdesc The package helps to typeset exercises or list of exercises
+longdesc within any document. Exercises, questions, sub-questions are
+longdesc automatically numbered. It is possible to put answers in the
+longdesc same document, and display them immediatly, later in the
+longdesc document or not at all. The layout of exercise is fully
+longdesc customisable. It is then possible to typeset long problems,
+longdesc short exercises, questionnaires, etc. Usage of the babel
+longdesc package is detected, but not fully supported by now (only
+longdesc english and french are implemented).
+docfiles size=215493
+ texmf-dist/doc/latex/exercise/README details="Readme"
+ texmf-dist/doc/latex/exercise/exercise.pdf details="Package documentation"
+srcfiles size=57628
+ texmf-dist/source/latex/exercise/exercise.dtx
+ texmf-dist/source/latex/exercise/exercise.ins
+runfiles size=25630
+ texmf-dist/tex/latex/exercise/exercise.sty
+catalogue-version 1.2
+catalogue-date 2007-01-03 21:31:08 +0100
+catalogue-ctan /macros/latex/contrib/exercise
+catalogue-license gpl
+
+name expdlist
+category Package
+revision 896
+shortdesc Expanded description environments.
+longdesc The expanded description environment provides additional
+longdesc features to the LaTeX description environment. It supports
+longdesc changing the left margin. With \listpart there is a new command
+longdesc available which makes it possible to break a list for a comment
+longdesc without touching any counters.
+docfiles size=2919
+ texmf-dist/doc/latex/expdlist/readme.txt
+srcfiles size=50424
+ texmf-dist/source/latex/expdlist/expdlisg.drv
+ texmf-dist/source/latex/expdlist/expdlist.drv
+ texmf-dist/source/latex/expdlist/expdlist.dtx
+ texmf-dist/source/latex/expdlist/expdlist.ins
+runfiles size=4539
+ texmf-dist/tex/latex/expdlist/expdlist.sty
+catalogue-version 2.4
+catalogue-date 2007-01-03 21:31:08 +0100
+catalogue-ctan /macros/latex/contrib/expdlist
+catalogue-license lppl
+
+name expl3
+category Package
+revision 4336
+shortdesc Packages showing a proposed LaTeX3 programming convention.
+longdesc Experimental packages for experienced TeX programmers to
+longdesc experiment with, and comment on. They contain a proposed set of
+longdesc syntax conventions and basic data-types that might form the
+longdesc basis for programming large scale projects in TeX.
+docfiles size=798326
+ texmf-dist/doc/latex/expl3/ChangeLog.fmi
+ texmf-dist/doc/latex/expl3/expl3.pdf details="The LaTeX3 Programming Language"
+ texmf-dist/doc/latex/expl3/expl3.tex
+ texmf-dist/doc/latex/expl3/l32eproc.pdf details="The LaTeX3 Programming Language - A syntax proposal"
+ texmf-dist/doc/latex/expl3/l32eproc.tex
+ texmf-dist/doc/latex/expl3/l3xref-test.tex
+ texmf-dist/doc/latex/expl3/lbase.ini
+ texmf-dist/doc/latex/expl3/readme.txt
+ texmf-dist/doc/latex/expl3/source3.pdf details="The LaTeX3 Sources"
+ texmf-dist/doc/latex/expl3/source3.tex
+ texmf-dist/doc/latex/expl3/test1.tex
+ texmf-dist/doc/latex/expl3/test2.tex
+ texmf-dist/doc/latex/expl3/test3.tex
+srcfiles size=758203
+ texmf-dist/source/latex/expl3/l3.ins
+ texmf-dist/source/latex/expl3/l3alloc.dtx
+ texmf-dist/source/latex/expl3/l3basics.dtx
+ texmf-dist/source/latex/expl3/l3box.dtx
+ texmf-dist/source/latex/expl3/l3calc.dtx
+ texmf-dist/source/latex/expl3/l3chk.dtx
+ texmf-dist/source/latex/expl3/l3clist.dtx
+ texmf-dist/source/latex/expl3/l3expan.dtx
+ texmf-dist/source/latex/expl3/l3final.dtx
+ texmf-dist/source/latex/expl3/l3format.ins
+ texmf-dist/source/latex/expl3/l3int.dtx
+ texmf-dist/source/latex/expl3/l3io.dtx
+ texmf-dist/source/latex/expl3/l3keyval.dtx
+ texmf-dist/source/latex/expl3/l3messages.dtx
+ texmf-dist/source/latex/expl3/l3names.dtx
+ texmf-dist/source/latex/expl3/l3num.dtx
+ texmf-dist/source/latex/expl3/l3precom.dtx
+ texmf-dist/source/latex/expl3/l3prg.dtx
+ texmf-dist/source/latex/expl3/l3prop.dtx
+ texmf-dist/source/latex/expl3/l3quark.dtx
+ texmf-dist/source/latex/expl3/l3seq.dtx
+ texmf-dist/source/latex/expl3/l3skip.dtx
+ texmf-dist/source/latex/expl3/l3tlp.dtx
+ texmf-dist/source/latex/expl3/l3token.dtx
+ texmf-dist/source/latex/expl3/l3toks.dtx
+ texmf-dist/source/latex/expl3/l3vers.dtx
+ texmf-dist/source/latex/expl3/l3xref.dtx
+runfiles size=432833
+ texmf-dist/tex/latex/expl3/l3basics.sty
+ texmf-dist/tex/latex/expl3/l3box.sty
+ texmf-dist/tex/latex/expl3/l3calc.sty
+ texmf-dist/tex/latex/expl3/l3chk.sty
+ texmf-dist/tex/latex/expl3/l3clist.sty
+ texmf-dist/tex/latex/expl3/l3doc.cls
+ texmf-dist/tex/latex/expl3/l3expan.sty
+ texmf-dist/tex/latex/expl3/l3int.sty
+ texmf-dist/tex/latex/expl3/l3io.sty
+ texmf-dist/tex/latex/expl3/l3keyval.sty
+ texmf-dist/tex/latex/expl3/l3messages.sty
+ texmf-dist/tex/latex/expl3/l3names.sty
+ texmf-dist/tex/latex/expl3/l3num.sty
+ texmf-dist/tex/latex/expl3/l3precom.sty
+ texmf-dist/tex/latex/expl3/l3prg.sty
+ texmf-dist/tex/latex/expl3/l3prop.sty
+ texmf-dist/tex/latex/expl3/l3quark.sty
+ texmf-dist/tex/latex/expl3/l3seq.sty
+ texmf-dist/tex/latex/expl3/l3skip.sty
+ texmf-dist/tex/latex/expl3/l3tlp.sty
+ texmf-dist/tex/latex/expl3/l3token.sty
+ texmf-dist/tex/latex/expl3/l3toks.sty
+ texmf-dist/tex/latex/expl3/l3xref.sty
+ texmf-dist/tex/latex/expl3/lbase.ltx
+catalogue-version
+catalogue-date 2006-12-13 13:07:04 +0100
+catalogue-ctan /macros/latex/exptl/project/expl3
+catalogue-license lppl
+
+name export
+category Package
+revision 898
+shortdesc Import and export values of LaTeX registers.
+longdesc This package allows the user to export/import the values of
+longdesc LaTeX registers (counters, rigid and rubber lengths only). It
+longdesc is definitely not for faint-hearted users. The package may be
+longdesc used, for example, to communicate between documents for the
+longdesc purposes of dvipaste.
+docfiles size=1067
+ texmf-dist/doc/latex/export/00readme
+srcfiles size=30055
+ texmf-dist/source/latex/export/export.dtx
+ texmf-dist/source/latex/export/export.ins
+ texmf-dist/source/latex/export/export.l
+runfiles size=19854
+ texmf-dist/tex/latex/export/dvipaste.sty
+ texmf-dist/tex/latex/export/export.sty
+catalogue-version 1.8
+catalogue-date 2007-01-03 21:31:08 +0100
+catalogue-ctan /macros/latex/contrib/export
+catalogue-license lppl
+
+name expressg
+category Package
+revision 4777
+shortdesc Diagrams consisting of boxes, lines, and annotations.
+longdesc A MetaPost package providing facilities to assist in drawing
+longdesc diagrams that consist of boxes, lines, and annotations.
+longdesc Particular support is provided for creating EXPRESS-G diagrams,
+longdesc for example IDEF1X, OMT, Shlaer-Mellor, and NIAM diagrams. The
+longdesc package may also be used to create UML and most other Box-Line-
+longdesc Annotation charts, but not Gantt charts directly.
+docfiles size=546187
+ texmf-dist/doc/metapost/expressg/README details="Package Readme"
+ texmf-dist/doc/metapost/expressg/aamfigs.pdf details="Examples of use"
+ texmf-dist/doc/metapost/expressg/aamfigs.tex
+ texmf-dist/doc/metapost/expressg/expeg.pdf
+ texmf-dist/doc/metapost/expressg/expeg.tex
+ texmf-dist/doc/metapost/expressg/expressg.pdf details="Package documentation"
+ texmf-dist/doc/metapost/expressg/n2mps.sh
+ texmf-dist/doc/metapost/expressg/n2mpsprl.prl
+srcfiles size=213895
+ texmf-dist/source/metapost/expressg/expressg.dtx
+ texmf-dist/source/metapost/expressg/expressg.ins
+runfiles size=86805
+ texmf-dist/metapost/expressg/aam.mp
+ texmf-dist/metapost/expressg/expeg.mp
+ texmf-dist/metapost/expressg/expressg.mp
+catalogue-version 1.5
+catalogue-date 2007-01-05 12:56:21 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/expressg
+catalogue-license lppl
+
+name extarrows
+category Package
+revision 899
+docfiles size=36969
+ texmf-dist/doc/latex/extarrows/README
+ texmf-dist/doc/latex/extarrows/extarrows-test.pdf
+ texmf-dist/doc/latex/extarrows/extarrows-test.tex
+runfiles size=1561
+ texmf-dist/tex/latex/extarrows/extarrows.sty
+
+name exteps
+category Package
+revision 2208
+shortdesc Include EPS figures in MetaPost.
+longdesc Exteps is a module for including external EPS figures into
+longdesc MetaPost figures. It is written entirely in MetaPost, and does
+longdesc not therefore require any post processing of the MetaPost
+longdesc output.
+docfiles size=200805
+ texmf-dist/doc/metapost/exteps/LICENSE
+ texmf-dist/doc/metapost/exteps/README
+ texmf-dist/doc/metapost/exteps/delfin
+ texmf-dist/doc/metapost/exteps/exteps.pdf details="Package documentation"
+runfiles size=8344
+ texmf-dist/metapost/exteps/exteps.mp
+catalogue-version 0.41
+catalogue-date 2007-03-06 10:34:25 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/exteps
+catalogue-license gpl
+
+name extpfeil
+category Package
+revision 1985
+shortdesc Extensible arrows in mathematics.
+longdesc The exptfeil package provides some more extensible arrows
+longdesc (usable in the same way as xleftarrow from amsmath), and a
+longdesc command to simply create new ones.
+docfiles size=207735
+ texmf-dist/doc/latex/extpfeil/README details="Readme"
+ texmf-dist/doc/latex/extpfeil/extpfeil.pdf details="Benutzerdoku:" language="de"
+srcfiles size=16664
+ texmf-dist/source/latex/extpfeil/extpfeil.dtx
+ texmf-dist/source/latex/extpfeil/extpfeil.ins
+runfiles size=2663
+ texmf-dist/tex/latex/extpfeil/extpfeil.sty
+catalogue-version 0.3
+catalogue-date 2007-03-06 10:34:25 +0100
+catalogue-ctan /macros/latex/contrib/extpfeil
+catalogue-license lppl
+
+name extract
+category Package
+revision 2413
+shortdesc Extract parts of a document and write to another document.
+longdesc The package provides the means to extract specific content from
+longdesc a source document and write that to a target document. One
+longdesc could, for instance, use this to extract all exercises from
+longdesc lecture notes and generate an exercises book on the fly. The
+longdesc package also provides an environment which writes its body
+longdesc entirely to the target file. Another environment will write to
+longdesc the target file, but will also execute the body. This allows to
+longdesc share code (for instance, a preamble) between the source
+longdesc document and the target file. Finally, the package provides an
+longdesc interface to conditionally extract content. With a single
+longdesc package option, one can specify exactly which commands (counted
+longdesc from the start of the document) should be extracted and which
+longdesc not. This might be useful for extracting specific slides from a
+longdesc presentation and use them in a new file.
+docfiles size=204380
+ texmf-dist/doc/latex/extract/README details="Package README"
+ texmf-dist/doc/latex/extract/extract.pdf details="Package documentation"
+srcfiles size=74829
+ texmf-dist/source/latex/extract/extract.dtx
+runfiles size=15812
+ texmf-dist/tex/latex/extract/extract.sty
+catalogue-version 1.8
+catalogue-date 2006-11-09 15:16:55 +0100
+catalogue-ctan /macros/latex/contrib/extract
+catalogue-license lppl
+
+name extsizes
+category Package
+revision 4606
+shortdesc Extend the standard classes' size options.
+longdesc Provides classes extarticle and extreport, extletter, extbook,
+longdesc extproc which allow for documents with a base font of size
+longdesc 8–20pt.
+docfiles size=7033
+ texmf-dist/doc/latex/extsizes/README details="Readme"
+ texmf-dist/doc/latex/extsizes/readme.extsizes
+runfiles size=120589
+ texmf-dist/tex/latex/extsizes/autopagewidth.sty
+ texmf-dist/tex/latex/extsizes/extarticle.cls
+ texmf-dist/tex/latex/extsizes/extbook.cls
+ texmf-dist/tex/latex/extsizes/extletter.cls
+ texmf-dist/tex/latex/extsizes/extproc.cls
+ texmf-dist/tex/latex/extsizes/extreport.cls
+ texmf-dist/tex/latex/extsizes/extsizes.sty
+ texmf-dist/tex/latex/extsizes/size14.clo
+ texmf-dist/tex/latex/extsizes/size17.clo
+ texmf-dist/tex/latex/extsizes/size20.clo
+ texmf-dist/tex/latex/extsizes/size8.clo
+ texmf-dist/tex/latex/extsizes/size9.clo
+catalogue-version 1.4a
+catalogue-date 2007-06-22 18:12:26 +0200
+catalogue-ctan /macros/latex/contrib/extsizes
+catalogue-license lppl
+
+name facsimile
+category Package
+revision 1487
+shortdesc Document class for preparing faxes.
+longdesc The facsimile class provides a simple interface for creating a
+longdesc document for sending as a fax, with LaTeX. The class covers two
+longdesc areas: – First, a title page is created with a detailed fax
+longdesc header; – second, every page gets headers and footers so that
+longdesc the recipient can be sure that every page has been received and
+longdesc all pages are complete, and in the correct order. The class
+longdesc evolved from the fax package, and provides much better language
+longdesc support.
+docfiles size=45807
+ texmf-dist/doc/latex/facsimile/README details="Readme"
+ texmf-dist/doc/latex/facsimile/example.dvi
+ texmf-dist/doc/latex/facsimile/example.tex
+ texmf-dist/doc/latex/facsimile/facsimile.pdf details="Package documentation"
+srcfiles size=38405
+ texmf-dist/source/latex/facsimile/facsimile.dtx
+ texmf-dist/source/latex/facsimile/facsimile.ins
+runfiles size=16392
+ texmf-dist/tex/latex/facsimile/fac-de.cfg
+ texmf-dist/tex/latex/facsimile/fac-en.cfg
+ texmf-dist/tex/latex/facsimile/facsimile.cls
+catalogue-version 1.0
+catalogue-date 2007-01-03 21:31:08 +0100
+catalogue-ctan /macros/latex/contrib/facsimile
+catalogue-license lppl
+
+name faktor
+category Package
+revision 1801
+shortdesc Typeset quotient structures with LaTeX.
+longdesc The package provides the means to typeset factor structures, as
+longdesc are used in many areas of algebraic notation. The structure is
+longdesc similar to the ‘A/B’ that is provided by the nicefrac
+longdesc package (part of the units distribution), and by the xfrac
+longdesc package; the most obvious difference is that the numerator and
+longdesc denominator’s sizes do not change in the \faktor command.
+docfiles size=106044
+ texmf-dist/doc/latex/faktor/README details="Readme and basic instructions"
+ texmf-dist/doc/latex/faktor/faktor.pdf details="Benutzerdoku:" language="de"
+srcfiles size=10046
+ texmf-dist/source/latex/faktor/faktor.dtx
+ texmf-dist/source/latex/faktor/faktor.ins
+runfiles size=1832
+ texmf-dist/tex/latex/faktor/faktor.sty
+catalogue-version 0.1b
+catalogue-date 2007-02-27 14:19:10 +0100
+catalogue-ctan /macros/latex/contrib/faktor
+catalogue-license lppl
+
+name fancybox
+category Package
+revision 4985
+shortdesc Variants of \fbox and other games with boxes.
+longdesc Provides variants of \fbox: \shadowbox, \doublebox, \ovalbox,
+longdesc \Ovalbox, with helpful tools for using box macros and flexible
+longdesc verbatim macros. You can box mathematics, floats, center,
+longdesc flushleft, and flushright, lists, and pages.
+docfiles size=239478
+ texmf-dist/doc/latex/fancybox/fancybox.doc
+ texmf-dist/doc/latex/fancybox/fancybox.pdf
+runfiles size=27419
+ texmf-dist/tex/latex/fancybox/fancybox.sty
+catalogue-version 1.3
+catalogue-date 2007-09-18 12:00:15 +0200
+catalogue-ctan /macros/latex/contrib/fancybox
+catalogue-license lppl
+
+name fancyhdr
+category Package
+revision 2252
+shortdesc Extensive control of page headers and footers in LaTeX2e.
+longdesc The package provides extensive facilities, both for
+longdesc constructing headers and footers, and for controlling their use
+longdesc (for example, at times when LaTeX would automatically change
+longdesc the heading style in use).
+docfiles size=381119
+ texmf-dist/doc/latex/fancyhdr/README details="Package Readme"
+ texmf-dist/doc/latex/fancyhdr/fancyhdr.pdf details="Users' manual"
+ texmf-dist/doc/latex/fancyhdr/fancyhdr.tex
+runfiles size=26089
+ texmf-dist/tex/latex/fancyhdr/extramarks.sty
+ texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
+catalogue-version 3.1
+catalogue-date 2006-12-05 13:18:07 +0100
+catalogue-ctan /macros/latex/contrib/fancyhdr
+catalogue-license lppl
+
+name fancyhdr-it
+category Documentation
+revision 14
+docfiles size=455170
+ texmf-doc/doc/italian/fancyhdr-it/Makefile
+ texmf-doc/doc/italian/fancyhdr-it/itfancyhdr.pdf
+ texmf-doc/doc/italian/fancyhdr-it/itfancyhdr.tex
+
+name fancynum
+category Package
+revision 2250
+shortdesc Typeset numbers.
+longdesc A LaTeX package for typesetting numbers, in particular floating
+longdesc point numbers, such as you find in program output.
+docfiles size=138494
+ texmf-dist/doc/latex/fancynum/CHANGES
+ texmf-dist/doc/latex/fancynum/README details="Package README"
+ texmf-dist/doc/latex/fancynum/aue.txt
+ texmf-dist/doc/latex/fancynum/ctt.txt
+ texmf-dist/doc/latex/fancynum/dbltable.tex
+ texmf-dist/doc/latex/fancynum/examples.pdf
+ texmf-dist/doc/latex/fancynum/examples.tex
+ texmf-dist/doc/latex/fancynum/fancynum.pdf details="Package documentation"
+srcfiles size=14054
+ texmf-dist/source/latex/fancynum/Makefile
+ texmf-dist/source/latex/fancynum/fancynum.dtx
+ texmf-dist/source/latex/fancynum/fancynum.ins
+ texmf-dist/source/latex/fancynum/tables.c
+runfiles size=2796
+ texmf-dist/tex/latex/fancynum/fancynum.sty
+catalogue-version 0.92
+catalogue-date 2006-10-05 22:17:39 +0200
+catalogue-ctan /macros/latex/contrib/fancynum
+catalogue-license dfsg
+
+name fancyref
+category Package
+revision 2626
+shortdesc A LaTeX package for fancy cross-referencing.
+longdesc Provides fancy cross-referencing support, based on the
+longdesc package's reference commands (\fref and \Fref) that recognise
+longdesc what sort of object is being referenced. So, for example, the
+longdesc label for a \section would be expected to be of the form
+longdesc ‘sec:foo’: the package would recognise the ‘sec:’ part.
+docfiles size=142640
+ texmf-dist/doc/latex/fancyref/COPYING
+ texmf-dist/doc/latex/fancyref/README details="Package Readme"
+ texmf-dist/doc/latex/fancyref/fancyref.pdf details="Package documentation"
+ texmf-dist/doc/latex/fancyref/freftest.tex
+srcfiles size=80735
+ texmf-dist/source/latex/fancyref/fancyref.dtx
+ texmf-dist/source/latex/fancyref/fancyref.ins
+runfiles size=15867
+ texmf-dist/tex/latex/fancyref/fancyref.sty
+catalogue-version 0.9c
+catalogue-date 2006-12-05 17:23:05 +0100
+catalogue-ctan /macros/latex/contrib/fancyref
+catalogue-license gpl
+
+name fancytooltips
+category Package
+revision 4686
+shortdesc Include a wide range of material in PDF tooltips.
+longdesc The package was inspired by the cooltooltips package. In
+longdesc contrast to cooltooltips, fancytooltips allows inclusion of
+longdesc tooltips which contain arbitrary TeX material or a series of
+longdesc TeX materials (animated graphics) from an external PDF file. To
+longdesc see the tooltips, you have to open the files in Adobe Reader.
+longdesc The links and JavaScripts are inserted using eforms package
+longdesc from the AcroTeX bundle.
+docfiles size=605216
+ texmf-dist/doc/latex/fancytooltips/README
+ texmf-dist/doc/latex/fancytooltips/examples/blackpanel.tex
+ texmf-dist/doc/latex/fancytooltips/examples/example-min.tex
+ texmf-dist/doc/latex/fancytooltips/examples/example.tex
+ texmf-dist/doc/latex/fancytooltips/examples/fancytips.tex
+ texmf-dist/doc/latex/fancytooltips/examples/logomu.pdf
+ texmf-dist/doc/latex/fancytooltips/examples/pdfscreen.cfg
+ texmf-dist/doc/latex/fancytooltips/examples/tecna2.pdf
+ texmf-dist/doc/latex/fancytooltips/examples/tooltipy.pdf
+ texmf-dist/doc/latex/fancytooltips/examples/tooltipy.tex
+ texmf-dist/doc/latex/fancytooltips/fancytipmark.eps
+ texmf-dist/doc/latex/fancytooltips/fancytipmark.pdf
+ texmf-dist/doc/latex/fancytooltips/fancytipmark.svg
+ texmf-dist/doc/latex/fancytooltips/fancytooltips.pdf details="Package documentation"
+ texmf-dist/doc/latex/fancytooltips/tip.pdf
+ texmf-dist/doc/latex/fancytooltips/tip.tex
+srcfiles size=22207
+ texmf-dist/source/latex/fancytooltips/fancytooltips.dtx
+ texmf-dist/source/latex/fancytooltips/fancytooltips.ins
+runfiles size=9709
+ texmf-dist/tex/latex/fancytooltips/fancytooltips.sty
+catalogue-version 1.3
+catalogue-date 2007-07-31 12:45:39 +0200
+catalogue-ctan /macros/latex/contrib/fancytooltips
+catalogue-license lppl
+
+name fancyvrb
+category Package
+revision 907
+shortdesc Sophisticated verbatim text.
+longdesc Flexible handling of verbatim text including: verbatim commands
+longdesc in footnotes; a variety of verbatim environments with many
+longdesc parameters; ability to define new customized verbatim
+longdesc environments; save and restore verbatim text and environments;
+longdesc write and read files in verbatim mode; build "example"
+longdesc environments (showing both result and verbatim source).
+docfiles size=209342
+ texmf-dist/doc/latex/fancyvrb/README details="Readme"
+ texmf-dist/doc/latex/fancyvrb/artistic2.txt
+ texmf-dist/doc/latex/fancyvrb/fancyvrb.pdf details="Package documentation"
+ texmf-dist/doc/latex/fancyvrb/t-fvrbex.tex
+srcfiles size=183404
+ texmf-dist/source/latex/fancyvrb/README.contrib
+ texmf-dist/source/latex/fancyvrb/fancyvrb.dtx
+ texmf-dist/source/latex/fancyvrb/fancyvrb.ins
+ texmf-dist/source/latex/fancyvrb/fvrb-ex.dtx
+ texmf-dist/source/latex/fancyvrb/fvrb-ex.ins
+runfiles size=62870
+ texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
+ texmf-dist/tex/latex/fancyvrb/fvrb-ex.sty
+ texmf-dist/tex/latex/fancyvrb/hbaw.sty
+ texmf-dist/tex/latex/fancyvrb/hcolor.sty
+catalogue-version
+catalogue-date 2007-09-18 18:09:19 +0200
+catalogue-ctan /macros/latex/contrib/fancyvrb
+catalogue-license artistic2
+
+name fax
+category Package
+revision 2251
+shortdesc Document class for preparing faxes.
+longdesc The fax class generates a suitable format, using the artikel3
+longdesc class (from the ntgclass bundle), if it's available, and the
+longdesc lastpage package. A package sig.sty is included, which enables
+longdesc use of scanned signatures; this package is dependent on emTeX
+longdesc graphics \special commands.
+docfiles size=89438
+ texmf-dist/doc/latex/fax/fax.unx
+ texmf-dist/doc/latex/fax/faxdoc.pdf details="Documentation of fax.cls"
+ texmf-dist/doc/latex/fax/faxdoc.tex
+ texmf-dist/doc/latex/fax/from.fax
+ texmf-dist/doc/latex/fax/nb.fax
+ texmf-dist/doc/latex/fax/note.fax
+ texmf-dist/doc/latex/fax/read.me
+ texmf-dist/doc/latex/fax/sigdoc.pdf details="Documentation of sig.sty"
+ texmf-dist/doc/latex/fax/sigdoc.tex
+ texmf-dist/doc/latex/fax/test.tex
+ texmf-dist/doc/latex/fax/van.fax
+runfiles size=5328
+ texmf-dist/tex/latex/fax/fax.cls
+ texmf-dist/tex/latex/fax/sig.sty
+catalogue-version
+catalogue-date 2006-10-05 22:05:06 +0200
+catalogue-ctan /macros/latex/contrib/fax
+catalogue-license unknown
+
+name fc
+category Package
+revision 909
+shortdesc Fonts for African languages.
+longdesc The fonts are provided as MetaFont source, in the familiar
+longdesc arrangement of lots of (autogenerated) preamble files and a
+longdesc modest set of glyph specifications. (A similar arrangement
+longdesc appears in the ec and lh font bundles.)
+docfiles size=85084
+ texmf-dist/doc/fonts/fc/fc.bug
+ texmf-dist/doc/fonts/fc/fc.rme
+ texmf-dist/doc/fonts/fc/fctugbot.tex
+ texmf-dist/doc/fonts/fc/fontdef.fc_old
+ texmf-dist/doc/fonts/fc/licence.gnu
+runfiles size=1033885
+ texmf-dist/fonts/source/jknappen/fc/b-fcbx.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcbxi.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcbxsl.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcbxu.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fccsc.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fci.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcitt.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcr.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcsibx.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcsitt.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcsl.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcss.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcssbx.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcssi.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcsstt.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fctt.mf
+ texmf-dist/fonts/source/jknappen/fc/b-fcu.mf
+ texmf-dist/fonts/source/jknappen/fc/c-fcsstt.mf
+ texmf-dist/fonts/source/jknappen/fc/fcaccent.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbx9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxi9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxsl9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcbxu9.mf
+ texmf-dist/fonts/source/jknappen/fc/fccoding.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc10.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc11.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc12.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc14.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc17.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc20.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc25.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc5.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc6.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc7.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc8.mf
+ texmf-dist/fonts/source/jknappen/fc/fccsc9.mf
+ texmf-dist/fonts/source/jknappen/fc/fccscspu.mf
+ texmf-dist/fonts/source/jknappen/fc/fci10.mf
+ texmf-dist/fonts/source/jknappen/fc/fci11.mf
+ texmf-dist/fonts/source/jknappen/fc/fci12.mf
+ texmf-dist/fonts/source/jknappen/fc/fci14.mf
+ texmf-dist/fonts/source/jknappen/fc/fci17.mf
+ texmf-dist/fonts/source/jknappen/fc/fci20.mf
+ texmf-dist/fonts/source/jknappen/fc/fci25.mf
+ texmf-dist/fonts/source/jknappen/fc/fci5.mf
+ texmf-dist/fonts/source/jknappen/fc/fci6.mf
+ texmf-dist/fonts/source/jknappen/fc/fci7.mf
+ texmf-dist/fonts/source/jknappen/fc/fci8.mf
+ texmf-dist/fonts/source/jknappen/fc/fci9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcilig.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitalic.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitligt.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitlpct.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcitt9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcmacros.mf
+ texmf-dist/fonts/source/jknappen/fc/fcpunct.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcr9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcrlig.mf
+ texmf-dist/fonts/source/jknappen/fc/fcroligt.mf
+ texmf-dist/fonts/source/jknappen/fc/fcroman.mf
+ texmf-dist/fonts/source/jknappen/fc/fcrompct.mf
+ texmf-dist/fonts/source/jknappen/fc/fcscligt.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsfligt.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsibx9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsitt9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsl9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcss9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssbx9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcssi9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcsstt9.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt10.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt11.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt12.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt14.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt17.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt20.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt25.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt5.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt6.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt7.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt8.mf
+ texmf-dist/fonts/source/jknappen/fc/fctt9.mf
+ texmf-dist/fonts/source/jknappen/fc/fcttligt.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu10.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu11.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu12.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu14.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu17.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu20.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu25.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu5.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu6.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu7.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu8.mf
+ texmf-dist/fonts/source/jknappen/fc/fcu9.mf
+ texmf-dist/fonts/source/jknappen/fc/itala.mf
+ texmf-dist/fonts/source/jknappen/fc/italbcd.mf
+ texmf-dist/fonts/source/jknappen/fc/itale.mf
+ texmf-dist/fonts/source/jknappen/fc/italfgh.mf
+ texmf-dist/fonts/source/jknappen/fc/italij.mf
+ texmf-dist/fonts/source/jknappen/fc/italklm.mf
+ texmf-dist/fonts/source/jknappen/fc/italn.mf
+ texmf-dist/fonts/source/jknappen/fc/italo.mf
+ texmf-dist/fonts/source/jknappen/fc/italpqr.mf
+ texmf-dist/fonts/source/jknappen/fc/italst.mf
+ texmf-dist/fonts/source/jknappen/fc/italuvw.mf
+ texmf-dist/fonts/source/jknappen/fc/italxyz.mf
+ texmf-dist/fonts/source/jknappen/fc/lowera.mf
+ texmf-dist/fonts/source/jknappen/fc/lowerbcd.mf
+ texmf-dist/fonts/source/jknappen/fc/lowere.mf
+ texmf-dist/fonts/source/jknappen/fc/lowerfgh.mf
+ texmf-dist/fonts/source/jknappen/fc/lowerij.mf
+ texmf-dist/fonts/source/jknappen/fc/lowerklm.mf
+ texmf-dist/fonts/source/jknappen/fc/lowern.mf
+ texmf-dist/fonts/source/jknappen/fc/lowero.mf
+ texmf-dist/fonts/source/jknappen/fc/lowerpqr.mf
+ texmf-dist/fonts/source/jknappen/fc/lowerst.mf
+ texmf-dist/fonts/source/jknappen/fc/loweruvw.mf
+ texmf-dist/fonts/source/jknappen/fc/lowerxyz.mf
+ texmf-dist/fonts/source/jknappen/fc/uppera.mf
+ texmf-dist/fonts/source/jknappen/fc/upperbcd.mf
+ texmf-dist/fonts/source/jknappen/fc/uppere.mf
+ texmf-dist/fonts/source/jknappen/fc/upperfgh.mf
+ texmf-dist/fonts/source/jknappen/fc/upperij.mf
+ texmf-dist/fonts/source/jknappen/fc/upperklm.mf
+ texmf-dist/fonts/source/jknappen/fc/uppern.mf
+ texmf-dist/fonts/source/jknappen/fc/uppero.mf
+ texmf-dist/fonts/source/jknappen/fc/upperpqr.mf
+ texmf-dist/fonts/source/jknappen/fc/upperst.mf
+ texmf-dist/fonts/source/jknappen/fc/upperuvw.mf
+ texmf-dist/fonts/source/jknappen/fc/upperxyz.mf
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbx9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxi9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxsl9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcbxu9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fccsc9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fci9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcitt9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcr9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsibx9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsitt9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsl9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcss9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssbx9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcssi9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcsstt9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fctt9.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu10.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu11.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu12.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu14.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu17.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu20.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu25.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu5.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu6.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu7.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu8.tfm
+ texmf-dist/fonts/tfm/jknappen/fc/fcu9.tfm
+ texmf-dist/tex/latex/fc/fclfont.sty
+ texmf-dist/tex/latex/fc/fclfont.sty_old
+ texmf-dist/tex/latex/fc/fcuse.sty
+ texmf-dist/tex/latex/fc/t4cmr.fd
+ texmf-dist/tex/latex/fc/t4cmss.fd
+ texmf-dist/tex/latex/fc/t4cmtt.fd
+ texmf-dist/tex/latex/fc/t4enc.def
+ texmf-dist/tex/latex/fc/t4fcr.fd
+ texmf-dist/tex/latex/fc/t4phonet.sty
+catalogue-version 1.4
+catalogue-date 2007-01-04 00:44:01 +0100
+catalogue-ctan /fonts/jknappen/fc
+catalogue-license gpl
+
+name featpost
+category Package
+revision 104
+shortdesc MetaPost macros for 3D.
+longdesc These macros allow the production of three-dimensional schemes
+longdesc containing: angles, circles, cylinders, cones and spheres,
+longdesc among other things.
+docfiles size=1544074
+ texmf-dist/doc/metapost/featpost/README.ctan
+ texmf-dist/doc/metapost/featpost/README.featpost
+ texmf-dist/doc/metapost/featpost/bashscript/dosome.sh
+ texmf-dist/doc/metapost/featpost/bashscript/eps2j.sh
+ texmf-dist/doc/metapost/featpost/bashscript/fpost
+ texmf-dist/doc/metapost/featpost/bashscript/insertinputcommands.sed
+ texmf-dist/doc/metapost/featpost/bashscript/insertinputcommands.sh
+ texmf-dist/doc/metapost/featpost/bashscript/laproof
+ texmf-dist/doc/metapost/featpost/bashscript/lbproof
+ texmf-dist/doc/metapost/featpost/bashscript/lcproof
+ texmf-dist/doc/metapost/featpost/bashscript/makelogo.sh
+ texmf-dist/doc/metapost/featpost/bashscript/maketugboatart.sh
+ texmf-dist/doc/metapost/featpost/bashscript/nontextualpng.sh
+ texmf-dist/doc/metapost/featpost/bashscript/procedurenames.sh
+ texmf-dist/doc/metapost/featpost/bashscript/remfi.sh
+ texmf-dist/doc/metapost/featpost/bashscript/removeinputcommand.sh
+ texmf-dist/doc/metapost/featpost/bashscript/replacetext.sh
+ texmf-dist/doc/metapost/featpost/bashscript/simpleviewer.sh
+ texmf-dist/doc/metapost/featpost/doc/doclicense.txt
+ texmf-dist/doc/metapost/featpost/doc/featexamples.html
+ texmf-dist/doc/metapost/featpost/doc/featpost.1.gz
+ texmf-dist/doc/metapost/featpost/doc/featpost.sgml
+ texmf-dist/doc/metapost/featpost/doc/tug2004.pdf
+ texmf-dist/doc/metapost/featpost/example/bugtrack/bughunt.mp
+ texmf-dist/doc/metapost/featpost/example/bugtrack/gstr.mp
+ texmf-dist/doc/metapost/featpost/example/highmemory/hiddenlinegraph.mp
+ texmf-dist/doc/metapost/featpost/example/highmemory/mainmemtest.mp
+ texmf-dist/doc/metapost/featpost/example/highmemory/par3Dplotexamples.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/borderframetest.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/conegetready.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/doitnow.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/electricpotential.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/emptylines.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/experimental.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/fieldlines.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/fis3prey.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/frustum.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/geom_casq.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/geom_freder.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/graphexample.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/lcurvature.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/mptoolcone.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/nembends.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/nemdirector.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/nemquira.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/nemquirapitch.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/nemuniax.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/pathernon.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/planpht.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/rigorcubo.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/rmnbob.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/sal.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/sfearschem.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/signalvertexSD.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/spherample.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/squareanglines.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/troncoconedef.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/twistnlc.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/twistroundbiax.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/twocyclestogether.mp
+ texmf-dist/doc/metapost/featpost/example/repeated/twoupcones.mp
+ texmf-dist/doc/metapost/featpost/example/standard/anglinerigorouscircle.mp
+ texmf-dist/doc/metapost/featpost/example/standard/cartaxes.mp
+ texmf-dist/doc/metapost/featpost/example/standard/conicurv.mp
+ texmf-dist/doc/metapost/featpost/example/standard/cubicfacecentered.mp
+ texmf-dist/doc/metapost/featpost/example/standard/cubicfigures.mp
+ texmf-dist/doc/metapost/featpost/example/standard/cylimple.mp
+ texmf-dist/doc/metapost/featpost/example/standard/downloadicon.mp
+ texmf-dist/doc/metapost/featpost/example/standard/eemcsblabla.mp
+ texmf-dist/doc/metapost/featpost/example/standard/embroncordada.mp
+ texmf-dist/doc/metapost/featpost/example/standard/fakehole.mp
+ texmf-dist/doc/metapost/featpost/example/standard/featpostlogo.mp
+ texmf-dist/doc/metapost/featpost/example/standard/ffcbob.mp
+ texmf-dist/doc/metapost/featpost/example/standard/fieldlinesnorma.mp
+ texmf-dist/doc/metapost/featpost/example/standard/fis1prex.mp
+ texmf-dist/doc/metapost/featpost/example/standard/fis3prex.mp
+ texmf-dist/doc/metapost/featpost/example/standard/geombasic.mp
+ texmf-dist/doc/metapost/featpost/example/standard/geomfiguei.mp
+ texmf-dist/doc/metapost/featpost/example/standard/geommine.mp
+ texmf-dist/doc/metapost/featpost/example/standard/globe.mp
+ texmf-dist/doc/metapost/featpost/example/standard/halfcirclesfear.mp
+ texmf-dist/doc/metapost/featpost/example/standard/hexagonaltrimesh.mp
+ texmf-dist/doc/metapost/featpost/example/standard/hiddensurface.mp
+ texmf-dist/doc/metapost/featpost/example/standard/hiddensurfaces.mp
+ texmf-dist/doc/metapost/featpost/example/standard/inductionbob.mp
+ texmf-dist/doc/metapost/featpost/example/standard/joinedemptylines.mp
+ texmf-dist/doc/metapost/featpost/example/standard/kindofcube.mp
+ texmf-dist/doc/metapost/featpost/example/standard/labelconstruct.mp
+ texmf-dist/doc/metapost/featpost/example/standard/labelinspace.mp
+ texmf-dist/doc/metapost/featpost/example/standard/magneticflux.mp
+ texmf-dist/doc/metapost/featpost/example/standard/nembiaxi.mp
+ texmf-dist/doc/metapost/featpost/example/standard/nemsaddl.mp
+ texmf-dist/doc/metapost/featpost/example/standard/nsmetica.mp
+ texmf-dist/doc/metapost/featpost/example/standard/parafuso.mp
+ texmf-dist/doc/metapost/featpost/example/standard/pathofstraightline.mp
+ texmf-dist/doc/metapost/featpost/example/standard/photoreverse.mp
+ texmf-dist/doc/metapost/featpost/example/standard/polyhedr.mp
+ texmf-dist/doc/metapost/featpost/example/standard/positivecharge.mp
+ texmf-dist/doc/metapost/featpost/example/standard/resistcircuit.mp
+ texmf-dist/doc/metapost/featpost/example/standard/rigorouscircle.mp
+ texmf-dist/doc/metapost/featpost/example/standard/rigorouscone.mp
+ texmf-dist/doc/metapost/featpost/example/standard/rigorousdiscSD.mp
+ texmf-dist/doc/metapost/featpost/example/standard/rigorousdiscoptions.mp
+ texmf-dist/doc/metapost/featpost/example/standard/rigorousfearpath.mp
+ texmf-dist/doc/metapost/featpost/example/standard/rotatnlc.mp
+ texmf-dist/doc/metapost/featpost/example/standard/saturn.mp
+ texmf-dist/doc/metapost/featpost/example/standard/sharpraytrace.mp
+ texmf-dist/doc/metapost/featpost/example/standard/simplecar.mp
+ texmf-dist/doc/metapost/featpost/example/standard/simplecarparam.mp
+ texmf-dist/doc/metapost/featpost/example/standard/spatialhalfsfear.mp
+ texmf-dist/doc/metapost/featpost/example/standard/spltwiben.mp
+ texmf-dist/doc/metapost/featpost/example/standard/stageforthree.mp
+ texmf-dist/doc/metapost/featpost/example/standard/tangencypoint.mp
+ texmf-dist/doc/metapost/featpost/example/standard/tdarrow.mp
+ texmf-dist/doc/metapost/featpost/example/standard/thearchicon.mp
+ texmf-dist/doc/metapost/featpost/example/standard/thethreekindsofperspec.mp
+ texmf-dist/doc/metapost/featpost/example/standard/torus.mp
+ texmf-dist/doc/metapost/featpost/example/standard/trajectoryline.mp
+ texmf-dist/doc/metapost/featpost/example/standard/triangulartrimesh.mp
+ texmf-dist/doc/metapost/featpost/example/standard/tropicalglobe.mp
+ texmf-dist/doc/metapost/featpost/example/standard/tshirtfig.mp
+ texmf-dist/doc/metapost/featpost/example/standard/tuftescatter.mp
+ texmf-dist/doc/metapost/featpost/example/standard/twistflat.mp
+ texmf-dist/doc/metapost/featpost/example/standard/twoholes.mp
+ texmf-dist/doc/metapost/featpost/example/standard/unperfection.mp
+ texmf-dist/doc/metapost/featpost/example/standard/unperfectionremoved.mp
+ texmf-dist/doc/metapost/featpost/example/standard/vanallenbelt.mp
+ texmf-dist/doc/metapost/featpost/example/standard/verygoodcone.mp
+ texmf-dist/doc/metapost/featpost/example/standard/xraycamera.mp
+ texmf-dist/doc/metapost/featpost/example/tug04/cone.mp
+ texmf-dist/doc/metapost/featpost/example/tug04/ellipticprism.mp
+ texmf-dist/doc/metapost/featpost/example/tug04/intersection2D.mp
+ texmf-dist/doc/metapost/featpost/example/tug04/kindofcube.mp
+ texmf-dist/doc/metapost/featpost/example/tug04/newexperimental.mp
+ texmf-dist/doc/metapost/featpost/example/tug04/perspec.mp
+ texmf-dist/doc/metapost/featpost/example/tug04/planintersection.mp
+ texmf-dist/doc/metapost/featpost/example/tug04/revolvers.mp
+ texmf-dist/doc/metapost/featpost/example/tug04/tangency2D.mp
+ texmf-dist/doc/metapost/featpost/galrey/galrey.rc
+ texmf-dist/doc/metapost/featpost/galrey/galrey.sh
+ texmf-dist/doc/metapost/featpost/galrey/galrey.tpl
+ texmf-dist/doc/metapost/featpost/jpeg/cbxSmall.jpg
+ texmf-dist/doc/metapost/featpost/jpeg/hiddenlinegraph1.jpg
+ texmf-dist/doc/metapost/featpost/jpeg/mymetapostbackground.jpeg
+ texmf-dist/doc/metapost/featpost/jpeg/mymetapostclearback.jpeg
+ texmf-dist/doc/metapost/featpost/jpeg/par3Dplotexamples1.jpg
+ texmf-dist/doc/metapost/featpost/jpeg/par3Dplotexamples2.jpg
+ texmf-dist/doc/metapost/featpost/jpeg/planpau2.jpeg
+ texmf-dist/doc/metapost/featpost/latex/linuxdoc-sgml.sty
+ texmf-dist/doc/metapost/featpost/latex/logofeatpost.tex
+ texmf-dist/doc/metapost/featpost/latex/ltugboat.cls
+ texmf-dist/doc/metapost/featpost/latex/macroMan.tex
+ texmf-dist/doc/metapost/featpost/latex/mflogohack.sty
+ texmf-dist/doc/metapost/featpost/latex/null.sty
+ texmf-dist/doc/metapost/featpost/latex/qwertz.sty
+ texmf-dist/doc/metapost/featpost/macro/README.macro
+ texmf-dist/doc/metapost/featpost/nontextualpng/cylimple.1.png
+ texmf-dist/doc/metapost/featpost/nontextualpng/globe.1.png
+ texmf-dist/doc/metapost/featpost/nontextualpng/rigorouscone.1.png
+ texmf-dist/doc/metapost/featpost/nontextualpng/rigorousfearpath.1.png
+ texmf-dist/doc/metapost/featpost/nontextualpng/rotatnlc.1.png
+ texmf-dist/doc/metapost/featpost/nontextualpng/stageforthree.2.png
+ texmf-dist/doc/metapost/featpost/nontextualpng/torus.5.png
+ texmf-dist/doc/metapost/featpost/nontextualpng/torus.6.png
+ texmf-dist/doc/metapost/featpost/nontextualpng/triangulartrimesh.1.png
+ texmf-dist/doc/metapost/featpost/png/border140.png
+ texmf-dist/doc/metapost/featpost/png/borderframetest.png
+ texmf-dist/doc/metapost/featpost/png/composite.png
+ texmf-dist/doc/metapost/featpost/png/downloadicon.png
+ texmf-dist/doc/metapost/featpost/png/experfilminifram.png
+ texmf-dist/doc/metapost/featpost/png/featpost2.png
+ texmf-dist/doc/metapost/featpost/png/inifram.png
+ texmf-dist/doc/metapost/featpost/png/lcdistortsallinifram.png
+ texmf-dist/doc/metapost/featpost/png/metapostlace.png
+ texmf-dist/doc/metapost/featpost/png/myicon.png
+ texmf-dist/doc/metapost/featpost/typesetinspace/README.mpy
+ texmf-dist/doc/metapost/featpost/typesetinspace/example.mp
+ texmf-dist/doc/metapost/featpost/typesetinspace/exampleminimal.mp
+ texmf-dist/doc/metapost/featpost/typesetinspace/makempy.pl
+ texmf-dist/doc/metapost/featpost/typesetinspace/mp-grph.mp
+ texmf-dist/doc/metapost/featpost/typesetinspace/mp-tool.mp
+ texmf-dist/doc/metapost/featpost/xcmd/README.xcmd
+ texmf-dist/doc/metapost/featpost/xcmd/xmpost
+runfiles size=111726
+ texmf-dist/metapost/featpost/featpost.mp
+ texmf-dist/metapost/featpost/featpost3Dplus2D.mp
+catalogue-version 0.6.7
+catalogue-date 2007-02-22 16:49:05 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/featpost
+catalogue-license gpl
+
+name fenixpar
+category Package
+revision 4190
+shortdesc One-shot changes to token registers such as \everypar.
+longdesc The bundle provides two packages, fenxitok and fenixpar. The
+longdesc fenixtok package provides user macros to add material to a
+longdesc token register; the material will be (automatically) removed
+longdesc from the token register when the register is executed. Material
+longdesc may be added either to the left or to the right, and care is
+longdesc taken not to override any redefinition that may be included in
+longdesc the token register itself. The fenixpar package uses the macros
+longdesc of fenixtok to provide a user interface to manipulation of the
+longdesc \everypar token register. The packages require the e-TeX
+longdesc extensions; with them, they work either with Plain TeX or with
+longdesc LaTeX.
+docfiles size=1773
+ texmf-dist/doc/generic/fenixpar/README details="Readme"
+runfiles size=9632
+ texmf-dist/tex/generic/fenixpar/fenixpar.sty
+ texmf-dist/tex/generic/fenixpar/fenixtok.sty
+catalogue-version 0.9
+catalogue-date 2007-05-13 12:01:55 +0200
+catalogue-ctan /macros/generic/fenixpar
+catalogue-license lppl
+
+name feyn
+category Package
+revision 910
+shortdesc A font for in-text Feynman diagrams.
+longdesc Feyn may be used to produce relatively simple Feynman diagrams
+longdesc within equations in a LaTeX document. While the feynmf package
+longdesc is good at drawing large diagrams for figures, this package and
+longdesc its fonts allow diagrams within equations or text, at a
+longdesc matching size. The fonts are distributed as MetaFont source,
+longdesc and macros for their use are also provided.
+docfiles size=173568
+ texmf-dist/doc/latex/feyn/README details="Package Readme"
+ texmf-dist/doc/latex/feyn/feyn.pdf details="Package documentation"
+srcfiles size=44534
+ texmf-dist/source/latex/feyn/LICENCE
+ texmf-dist/source/latex/feyn/VERSION
+ texmf-dist/source/latex/feyn/feyn.drv
+ texmf-dist/source/latex/feyn/feyn.dtx
+ texmf-dist/source/latex/feyn/feyn.ins
+runfiles size=29824
+ texmf-dist/fonts/source/public/feyn/feyn.mf
+ texmf-dist/fonts/source/public/feyn/feyn10.mf
+ texmf-dist/fonts/source/public/feyn/feyn11.mf
+ texmf-dist/fonts/source/public/feyn/feyn12.mf
+ texmf-dist/fonts/source/public/feyn/feynmac.mf
+ texmf-dist/fonts/source/public/feyn/feyntext10.mf
+ texmf-dist/fonts/source/public/feyn/feyntext11.mf
+ texmf-dist/fonts/source/public/feyn/feyntext12.mf
+ texmf-dist/fonts/tfm/public/feyn/feyn10.tfm
+ texmf-dist/fonts/tfm/public/feyn/feyn11.tfm
+ texmf-dist/fonts/tfm/public/feyn/feyn12.tfm
+ texmf-dist/fonts/tfm/public/feyn/feyntext10.tfm
+ texmf-dist/fonts/tfm/public/feyn/feyntext11.tfm
+ texmf-dist/fonts/tfm/public/feyn/feyntext12.tfm
+ texmf-dist/tex/latex/feyn/feyn.sty
+catalogue-version 0.2-2
+catalogue-date 2007-09-28 19:02:55 +0200
+catalogue-ctan /fonts/feyn
+catalogue-license gpl
+
+name feynmf
+category Package
+revision 911
+shortdesc Macros and fonts for creating Feynman (and other) diagrams.
+longdesc The feynmf package provides an interface to MetaFont (inspired
+longdesc by the facilities of mfpic) to use simple structure
+longdesc specifications to produce relatively complex diagrams. (The
+longdesc feynmp package, also part of this bundle, uses MetaPost in the
+longdesc same way.) While the package was designed for Feynman diagrams,
+longdesc it could in principle be used for diagrams in graph and similar
+longdesc theories, where the structure is semi-algorithmically
+longdesc determined.
+docfiles size=235123
+ texmf-dist/doc/latex/feynmf/Feynman.Diagrams
+ texmf-dist/doc/latex/feynmf/Tutorial
+ texmf-dist/doc/latex/feynmf/fmfman.drv
+ texmf-dist/doc/latex/feynmf/fmfmanps.drv
+ texmf-dist/doc/latex/feynmf/manpics.1
+ texmf-dist/doc/latex/feynmf/manpics.2
+ texmf-dist/doc/latex/feynmf/manpics.3
+ texmf-dist/doc/latex/feynmf/manual.ps.gz
+srcfiles size=324645
+ texmf-dist/source/latex/feynmf/Announce
+ texmf-dist/source/latex/feynmf/COPYING
+ texmf-dist/source/latex/feynmf/Makefile
+ texmf-dist/source/latex/feynmf/README
+ texmf-dist/source/latex/feynmf/feynmf.drv
+ texmf-dist/source/latex/feynmf/feynmf.dtx
+ texmf-dist/source/latex/feynmf/feynmf.ins
+ texmf-dist/source/latex/feynmf/feynmf.pl
+ texmf-dist/source/latex/feynmf/feynmf209.ins
+ texmf-dist/source/latex/feynmf/feynmp.drv
+ texmf-dist/source/latex/feynmf/template.tex
+runfiles size=154909
+ texmf-dist/metafont/feynmf/feynmf.mf
+ texmf-dist/metapost/feynmf/feynmp.mp
+ texmf-dist/metapost/feynmf/manpics.mp
+ texmf-dist/tex/latex/feynmf/feynmf.sty
+ texmf-dist/tex/latex/feynmf/feynmp.sty
+catalogue-version 1.08
+catalogue-date 2006-12-13 12:28:27 +0100
+catalogue-ctan /macros/latex/contrib/feynmf
+catalogue-license gpl
+
+name fge
+category Package
+revision 4608
+shortdesc A font for Frege's Grundgesetze der Arithmetik.
+longdesc The fonts are provided as MetaFont source, and a small LaTeX
+longdesc package (fge) is provided.
+docfiles size=44541
+ texmf-dist/doc/fonts/fge/README details="Readme"
+ texmf-dist/doc/fonts/fge/fge-doc.pdf details="Package documentation"
+srcfiles size=10138
+ texmf-dist/source/fonts/fge/fge.dtx
+ texmf-dist/source/fonts/fge/fge.ins
+runfiles size=54150
+ texmf-dist/fonts/source/public/fge/fgebase.mf
+ texmf-dist/fonts/source/public/fge/fgeit.mf
+ texmf-dist/fonts/source/public/fge/fgeit10.mf
+ texmf-dist/fonts/source/public/fge/fgerm.mf
+ texmf-dist/fonts/source/public/fge/fgerm10.mf
+ texmf-dist/fonts/tfm/public/fge/fgeit10.tfm
+ texmf-dist/fonts/tfm/public/fge/fgerm10.tfm
+ texmf-dist/tex/latex/fge/Ufgeit.fd
+ texmf-dist/tex/latex/fge/Ufgerm.fd
+ texmf-dist/tex/latex/fge/fge.sty
+catalogue-version 1.21
+catalogue-date 2007-07-13 16:20:56 +0200
+catalogue-ctan /fonts/fge
+catalogue-license lppl
+
+name figbib
+category Package
+revision 912
+docfiles size=182690
+ texmf-dist/doc/latex/figbib/README
+ texmf-dist/doc/latex/figbib/figbib_doc.pdf
+ texmf-dist/doc/latex/figbib/figbib_doc.tex
+ texmf-dist/doc/latex/figbib/figbib_sample.figbib.1.fig
+ texmf-dist/doc/latex/figbib/figbib_sample.figbib.2.fig
+ texmf-dist/doc/latex/figbib/figbib_sample.pdf
+ texmf-dist/doc/latex/figbib/figbib_sample.tex
+ texmf-dist/doc/latex/figbib/smiley.eps
+runfiles size=12028
+ texmf-dist/bibtex/bib/figbib/figbib_sample.bib
+ texmf-dist/bibtex/bst/figbib/figbib.bst
+ texmf-dist/bibtex/bst/figbib/figbib1.bst
+ texmf-dist/tex/latex/figbib/figbib.sty
+
+name figsize
+category Package
+revision 913
+docfiles size=139225
+ texmf-dist/doc/latex/figsize/README
+ texmf-dist/doc/latex/figsize/figsize.pdf
+ texmf-dist/doc/latex/figsize/figsize.tex
+srcfiles size=10030
+ texmf-dist/source/latex/figsize/epsfig.eps
+runfiles size=2175
+ texmf-dist/tex/latex/figsize/figsize.sty
+
+name filecontents
+category Package
+revision 2411
+shortdesc Extended filecontents and filecontents* environments
+longdesc LaTeX2e's filecontents and filecontents* environments enable a
+longdesc LaTeX source file to generate external files as it runs through
+longdesc LaTeX. However, there are two limitations of these
+longdesc environments: they refuse to overwrite existing files, and they
+longdesc can only be used in the preamble of a document. The
+longdesc filecontents package removes these limitations, letting you
+longdesc overwrite existing files and letting you use
+longdesc filecontents/filecontents* anywhere.
+docfiles size=183118
+ texmf-dist/doc/latex/filecontents/README details="Package Readme"
+ texmf-dist/doc/latex/filecontents/filecontents.pdf details="Package documentation"
+srcfiles size=15490
+ texmf-dist/source/latex/filecontents/filecontents.dtx
+ texmf-dist/source/latex/filecontents/filecontents.ins
+runfiles size=3011
+ texmf-dist/tex/latex/filecontents/filecontents.sty
+catalogue-version 1.1a
+catalogue-date 2006-12-11 00:37:24 +0100
+catalogue-ctan /macros/latex/contrib/filecontents
+catalogue-license lppl
+
+name finbib
+category Package
+revision 71
+runfiles size=25129
+ texmf-dist/bibtex/bst/finbib/finplain.bst
+
+name fink
+category Package
+revision 5450
+docfiles size=69690
+ texmf-dist/doc/latex/fink/NEWS
+ texmf-dist/doc/latex/fink/README
+ texmf-dist/doc/latex/fink/fink.el
+ texmf-dist/doc/latex/fink/fink.pdf
+srcfiles size=13585
+ texmf-dist/source/latex/fink/fink.dtx
+ texmf-dist/source/latex/fink/fink.ins
+runfiles size=3881
+ texmf-dist/tex/latex/fink/fink.sty
+
+name firststeps
+category Documentation
+revision 20
+docfiles size=49986
+ texmf-doc/doc/english/firststeps/Contents
+ texmf-doc/doc/english/firststeps/article.tpl
+ texmf-doc/doc/english/firststeps/article2.tpl
+ texmf-doc/doc/english/firststeps/bibl.tpl
+ texmf-doc/doc/english/firststeps/gallery.tex
+ texmf-doc/doc/english/firststeps/ggamsart.tpl
+ texmf-doc/doc/english/firststeps/ggart.tpl
+ texmf-doc/doc/english/firststeps/ggart2.tpl
+ texmf-doc/doc/english/firststeps/intrart.tex
+ texmf-doc/doc/english/firststeps/lattice.sty
+ texmf-doc/doc/english/firststeps/math.tex
+ texmf-doc/doc/english/firststeps/mathb.tex
+ texmf-doc/doc/english/firststeps/note1.tex
+ texmf-doc/doc/english/firststeps/note1b.tex
+ texmf-doc/doc/english/firststeps/note2.tex
+ texmf-doc/doc/english/firststeps/noteslug.tex
+ texmf-doc/doc/english/firststeps/sampart.tex
+ texmf-doc/doc/english/firststeps/sampart2.tex
+
+name fixfoot
+category Package
+revision 1487
+shortdesc Multiple use of the same footnote text.
+longdesc Provides a \DeclareFixedFootnote command to provide a single
+longdesc command for a frequently-used footnote. The package ensures
+longdesc that only one instance of the footnote text appears on each
+longdesc page (LaTeX needs to be run several times to achieve this).
+docfiles size=1118
+ texmf-dist/doc/latex/fixfoot/testfix.dvi
+ texmf-dist/doc/latex/fixfoot/testfix.tex
+runfiles size=7191
+ texmf-dist/tex/latex/fixfoot/fixfoot.sty
+catalogue-version 0.3
+catalogue-date 2007-11-12 12:04:39 +0100
+catalogue-ctan /macros/latex/contrib/fixfoot
+catalogue-license lppl
+
+name fixme
+category Package
+revision 1798
+docfiles size=103372
+ texmf-dist/doc/latex/fixme/NEWS
+ texmf-dist/doc/latex/fixme/README
+ texmf-dist/doc/latex/fixme/fixme.el
+ texmf-dist/doc/latex/fixme/fixme.pdf
+srcfiles size=46347
+ texmf-dist/source/latex/fixme/fixme.dtx
+ texmf-dist/source/latex/fixme/fixme.ins
+runfiles size=17152
+ texmf-dist/tex/latex/fixme/fixme.sty
+
+name fixpdfmag
+category Package
+revision 3669
+shortdesc Fix magnification in PDFTeX.
+longdesc A recent change to PDFTeX has caused magnification to apply to
+longdesc page dimensions. This small package changes the values set in
+longdesc the page dimension variables from pt to truept, thus evading
+longdesc the effects of \mag.
+runfiles size=1276
+ texmf-dist/tex/plain/fixpdfmag/fixpdfmag.tex
+catalogue-version
+catalogue-date 2007-02-27 14:19:10 +0100
+catalogue-ctan /macros/plain/contrib/misc/fixpdfmag.tex
+catalogue-license pd
+
+name flabels
+category Package
+revision 918
+shortdesc Labels for files and folders.
+longdesc Macros for typesetting pretty labels (optionally colored) for
+longdesc the back of files or binders (currently only the special A4
+longdesc “Leitz-Ordner” ring binder is supported).
+docfiles size=2492
+ texmf-dist/doc/latex/flabels/README
+srcfiles size=42442
+ texmf-dist/source/latex/flabels/flabels.dtx
+ texmf-dist/source/latex/flabels/flabels.ins
+ texmf-dist/source/latex/flabels/makedoc
+ texmf-dist/source/latex/flabels/makedoc.bat
+runfiles size=5942
+ texmf-dist/tex/latex/flabels/flabels.sty
+catalogue-version 1.0
+catalogue-date 2006-10-06 23:15:00 +0200
+catalogue-ctan /macros/latex/contrib/flabels
+catalogue-license lppl
+
+name flagderiv
+category Package
+revision 919
+shortdesc Flag style derivation package
+longdesc The flagderiv package is used to create mathematical
+longdesc derivations using the flag/flagpole notation. The package
+longdesc features an intuitive command syntax, opening and closing
+longdesc multiple flagpoles, different comment styles, customizable
+longdesc symbols and label namespaces.
+docfiles size=211414
+ texmf-dist/doc/latex/flagderiv/README
+ texmf-dist/doc/latex/flagderiv/flagderiv.pdf
+srcfiles size=51875
+ texmf-dist/source/latex/flagderiv/flagderiv.dtx
+ texmf-dist/source/latex/flagderiv/flagderiv.ins
+runfiles size=5099
+ texmf-dist/tex/latex/flagderiv/flagderiv.sty
+catalogue-version 0.10
+catalogue-date 2007-02-22 16:49:05 +0100
+catalogue-ctan /macros/latex/contrib/flagderiv
+catalogue-license gpl
+
+name flashcards
+category Package
+revision 1487
+shortdesc A class for typesetting flashcards.
+longdesc The FlashCards class provides for the typesetting of flash
+longdesc cards. By flash card, we mean a two sided card which has a
+longdesc prompt or a question on one side and the response or the answer
+longdesc on the flip (back) side. Flash cards come in many sizes
+longdesc depending on the nature of the information they contain.
+docfiles size=178626
+ texmf-dist/doc/latex/flashcards/README details="Package Readme"
+ texmf-dist/doc/latex/flashcards/flashcards.pdf details="Package documentation"
+ texmf-dist/doc/latex/flashcards/samplecards.dvi
+ texmf-dist/doc/latex/flashcards/samplecards.tex
+srcfiles size=46979
+ texmf-dist/source/latex/flashcards/COPYING
+ texmf-dist/source/latex/flashcards/flashcards.dtx
+ texmf-dist/source/latex/flashcards/flashcards.ins
+runfiles size=17431
+ texmf-dist/tex/latex/flashcards/avery5371.cfg
+ texmf-dist/tex/latex/flashcards/avery5388.cfg
+ texmf-dist/tex/latex/flashcards/flashcards.cls
+catalogue-version 1.0.0
+catalogue-date 2006-12-18 18:25:02 +0100
+catalogue-ctan /macros/latex/contrib/flashcards
+catalogue-license gpl
+
+name flippdf
+category Package
+revision 1765
+shortdesc Horizontal flipping of pages with pdfLaTeX.
+longdesc The package allows the production of a document with pages
+longdesc “mirrored”. This is sometimes required by publishers who
+longdesc want camera-ready documents to be printed on transparent film
+longdesc (to be viewed from the “wrong” side). The package requires
+longdesc everypage, and only works with pdfLaTeX in PDF mode.
+docfiles size=15432
+ texmf-dist/doc/latex/flippdf/README details="Readme"
+ texmf-dist/doc/latex/flippdf/flippdf.pdf details="Package documentation"
+srcfiles size=8811
+ texmf-dist/source/latex/flippdf/flippdf.dtx
+ texmf-dist/source/latex/flippdf/flippdf.ins
+runfiles size=1536
+ texmf-dist/tex/latex/flippdf/flippdf.sty
+catalogue-version 1.0
+catalogue-date 2007-02-27 14:19:10 +0100
+catalogue-ctan /macros/latex/contrib/flippdf
+catalogue-license lppl
+
+name float
+category Package
+revision 2627
+shortdesc Improved interface for floating objects.
+longdesc Improves the interface for defining floating objects such as
+longdesc figures and tables. Introduces the boxed float, the ruled float
+longdesc and the plaintop float. You can define your own floats and
+longdesc improve the behaviour of the old ones. The package also
+longdesc provides the H float modifier option of the obsolete here
+longdesc package. You can select this as automatic default with
+longdesc \floatplacement{figure}{H}.
+docfiles size=138142
+ texmf-dist/doc/latex/float/README details="Package Readme"
+ texmf-dist/doc/latex/float/float.pdf details="Package documentation"
+srcfiles size=39197
+ texmf-dist/source/latex/float/float.dtx
+ texmf-dist/source/latex/float/float.ins
+runfiles size=6749
+ texmf-dist/tex/latex/float/float.sty
+catalogue-version 1.3d
+catalogue-date 2006-12-05 13:18:07 +0100
+catalogue-ctan /macros/latex/contrib/float
+catalogue-license lppl
+
+name floatflt
+category Package
+revision 922
+shortdesc Wrap text around floats.
+longdesc Float text around figures and tables which do not span the full
+longdesc width of a page, improving upon floatfig, allowing
+longdesc tables/figures to be set left/right or alternating on even/odd
+longdesc pages.
+docfiles size=29120
+ texmf-dist/doc/latex/floatflt/00readme.flt
+ texmf-dist/doc/latex/floatflt/floatexm.tex
+ texmf-dist/doc/latex/floatflt/floatfge.tex
+ texmf-dist/doc/latex/floatflt/floatfig.txt
+srcfiles size=56634
+ texmf-dist/source/latex/floatflt/floatflt.dtx
+ texmf-dist/source/latex/floatflt/floatflt.ins
+runfiles size=11060
+ texmf-dist/tex/latex/floatflt/floatflt.sty
+catalogue-version 1.31
+catalogue-date 2007-01-03 08:50:54 +0100
+catalogue-ctan /macros/latex/contrib/floatflt
+catalogue-license nosell
+
+name floatrow
+category Package
+revision 4910
+shortdesc Modifying the layout of floats.
+longdesc The floatrow package provides many ways to customize layouts of
+longdesc floating environments and has code to cooperate with the
+longdesc caption 3.x package. The package offers mechanisms to put
+longdesc floats side by side, and to put the caption beside its float.
+longdesc The floatrow settings could be expanded to the floats created
+longdesc by packages rotating, wrapfig, subfig (in the case of rows of
+longdesc subfloats), and longtable.
+docfiles size=929949
+ texmf-dist/doc/latex/floatrow/README details="Readme"
+ texmf-dist/doc/latex/floatrow/floatrow-rus.tex
+ texmf-dist/doc/latex/floatrow/floatrow.pdf details="Package documentation"
+ texmf-dist/doc/latex/floatrow/fr-sample.tex
+ texmf-dist/doc/latex/floatrow/frsample01.tex
+ texmf-dist/doc/latex/floatrow/frsample02.tex
+ texmf-dist/doc/latex/floatrow/frsample03.tex
+ texmf-dist/doc/latex/floatrow/frsample04.tex
+ texmf-dist/doc/latex/floatrow/frsample05.tex
+ texmf-dist/doc/latex/floatrow/frsample10.tex
+ texmf-dist/doc/latex/floatrow/frsample11.tex
+ texmf-dist/doc/latex/floatrow/frsample12.tex
+ texmf-dist/doc/latex/floatrow/pictures.tex
+ texmf-dist/doc/latex/floatrow/sample-longtable-rus.tex
+ texmf-dist/doc/latex/floatrow/sample-longtable.tex
+srcfiles size=372762
+ texmf-dist/source/latex/floatrow/floatrow.dtx
+ texmf-dist/source/latex/floatrow/floatrow.ins
+runfiles size=69232
+ texmf-dist/tex/latex/floatrow/floatpagestyle.sty
+ texmf-dist/tex/latex/floatrow/floatrow.sty
+ texmf-dist/tex/latex/floatrow/fr-fancy.sty
+ texmf-dist/tex/latex/floatrow/fr-longtable.sty
+ texmf-dist/tex/latex/floatrow/fr-subfig.sty
+ texmf-dist/tex/latex/floatrow/listpen.sty
+catalogue-version 0.2a
+catalogue-date 2007-09-07 11:33:18 +0200
+catalogue-ctan /macros/latex/contrib/floatrow
+catalogue-license lppl
+
+name flowfram
+category Package
+revision 4801
+shortdesc Create text frames for posters, brochures or magazines.
+longdesc The flowfram package enables you to create frames in a document
+longdesc such that the contents of the document environment flow from
+longdesc one frame to the next in the order in which they were defined.
+longdesc This is useful for creating posters or magazines or any other
+longdesc form of document that does not conform to the standard one or
+longdesc two column layout.
+docfiles size=1186871
+ texmf-dist/doc/latex/flowfram/CHANGES
+ texmf-dist/doc/latex/flowfram/README
+ texmf-dist/doc/latex/flowfram/brochure.pdf
+ texmf-dist/doc/latex/flowfram/brochure.tex
+ texmf-dist/doc/latex/flowfram/egg.eps
+ texmf-dist/doc/latex/flowfram/egg.png
+ texmf-dist/doc/latex/flowfram/ffuserguide.pdf
+ texmf-dist/doc/latex/flowfram/ffuserguide.tex
+ texmf-dist/doc/latex/flowfram/flowfram.pdf
+ texmf-dist/doc/latex/flowfram/news.pdf
+ texmf-dist/doc/latex/flowfram/news.tex
+ texmf-dist/doc/latex/flowfram/news2.pdf
+ texmf-dist/doc/latex/flowfram/news2.tex
+ texmf-dist/doc/latex/flowfram/poster.pdf
+ texmf-dist/doc/latex/flowfram/poster.tex
+ texmf-dist/doc/latex/flowfram/sheep.eps
+ texmf-dist/doc/latex/flowfram/sheep.png
+srcfiles size=205384
+ texmf-dist/source/latex/flowfram/flowfram.dtx
+ texmf-dist/source/latex/flowfram/flowfram.ins
+runfiles size=116768
+ texmf-dist/tex/latex/flowfram/flowfram.sty
+catalogue-version 1.10
+catalogue-date 2007-08-21 16:34:20 +0200
+catalogue-ctan /macros/latex/contrib/flowfram
+catalogue-license lppl
+
+name fltpoint
+category Package
+revision 4776
+shortdesc Simple floating point arithmetic.
+longdesc The package provides simple floating point operations
+longdesc (addition, subtraction, multiplication, division and rounding).
+longdesc Used, for example, by rccol.
+docfiles size=206770
+ texmf-dist/doc/generic/fltpoint/README details="Readme"
+ texmf-dist/doc/generic/fltpoint/fltpoint.pdf details="Package documentation"
+srcfiles size=59681
+ texmf-dist/source/generic/fltpoint/fltpoint.dtx
+ texmf-dist/source/generic/fltpoint/fltpoint.ins
+runfiles size=18939
+ texmf-dist/tex/generic/fltpoint/deccomma.sty
+ texmf-dist/tex/generic/fltpoint/fltpoint.sty
+ texmf-dist/tex/generic/fltpoint/fltpoint.tex
+catalogue-version 1.1b
+catalogue-date 2007-01-04 00:44:01 +0100
+catalogue-ctan /macros/latex/contrib/fltpoint
+catalogue-license dfsg
+
+name fmp
+category Package
+revision 925
+shortdesc Include Functional MetaPost in LaTeX.
+docfiles size=150819
+ texmf-dist/doc/latex/fmp/README details="Readme"
+ texmf-dist/doc/latex/fmp/fmp.pdf details="Package documentation"
+srcfiles size=26604
+ texmf-dist/source/latex/fmp/fmp-doc.hs
+ texmf-dist/source/latex/fmp/fmp.dtx
+ texmf-dist/source/latex/fmp/fmp.ins
+runfiles size=4651
+ texmf-dist/tex/latex/fmp/fmp.sty
+catalogue-version
+catalogue-date 2007-01-04 00:44:01 +0100
+catalogue-ctan /macros/latex/contrib/fmp
+catalogue-license lppl
+
+name fmtcount
+category Package
+revision 4800
+shortdesc Display the value of a LaTeX counter in a variety of formats.
+longdesc The package fmtcount.sty provides commands that display the
+longdesc value of a LaTeX counter in a variety of formats (ordinal,
+longdesc text, hexadecimal, decimal, octal, binary etc). The package
+longdesc offers some multilingual support; configurations for use in
+longdesc English (both British and American usage), French, German,
+longdesc Portuguese and Spanish documents are provided. This package was
+longdesc originally provided as part of the author's datetime package,
+longdesc but is now distributed separately.
+docfiles size=288983
+ texmf-dist/doc/latex/fmtcount/README details="Package README"
+ texmf-dist/doc/latex/fmtcount/doc/CHANGES
+ texmf-dist/doc/latex/fmtcount/doc/fc-lang.tex
+ texmf-dist/doc/latex/fmtcount/doc/fc-samp.tex
+ texmf-dist/doc/latex/fmtcount/doc/fmtcount-manual.html details="Package documentation (HTML)"
+ texmf-dist/doc/latex/fmtcount/doc/fmtcount.pdf details="Package documentation (PDF)"
+ texmf-dist/doc/latex/fmtcount/fmtcount.perl
+ texmf-dist/doc/latex/fmtcount/latex2html/fmtcount.perl
+srcfiles size=220255
+ texmf-dist/source/latex/fmtcount/fmtcount.dtx
+ texmf-dist/source/latex/fmtcount/fmtcount.ins
+runfiles size=118845
+ texmf-dist/tex/latex/fmtcount/fc-UKenglish.def
+ texmf-dist/tex/latex/fmtcount/fc-USenglish.def
+ texmf-dist/tex/latex/fmtcount/fc-british.def
+ texmf-dist/tex/latex/fmtcount/fc-english.def
+ texmf-dist/tex/latex/fmtcount/fc-french.def
+ texmf-dist/tex/latex/fmtcount/fc-german.def
+ texmf-dist/tex/latex/fmtcount/fc-portuges.def
+ texmf-dist/tex/latex/fmtcount/fc-spanish.def
+ texmf-dist/tex/latex/fmtcount/fmtcount.sty
+catalogue-version 1.3
+catalogue-date 2007-08-21 16:34:20 +0200
+catalogue-ctan /macros/latex/contrib/fmtcount
+catalogue-license lppl
+
+name fnbreak
+category Package
+revision 4697
+shortdesc Warn for split footnotes.
+longdesc This package detects footnotes that are split over several
+longdesc pages, and writes a warning to the log file.
+docfiles size=168816
+ texmf-dist/doc/latex/fnbreak/ChangeLog
+ texmf-dist/doc/latex/fnbreak/README details="Readme"
+ texmf-dist/doc/latex/fnbreak/fnbreak-v.tex
+ texmf-dist/doc/latex/fnbreak/fnbreak.pdf details="Package documentation"
+ texmf-dist/doc/latex/fnbreak/fnbreak.xml
+ texmf-dist/doc/latex/fnbreak/fnbreaktest.tex
+srcfiles size=11150
+ texmf-dist/source/latex/fnbreak/Makefile
+ texmf-dist/source/latex/fnbreak/fnbreak.dtx
+ texmf-dist/source/latex/fnbreak/fnbreak.ins
+runfiles size=3148
+ texmf-dist/tex/latex/fnbreak/fnbreak.sty
+catalogue-version 1.10
+catalogue-date 2007-01-04 00:44:01 +0100
+catalogue-ctan /macros/latex/contrib/fnbreak
+catalogue-license lppl
+
+name fncychap
+category Package
+revision 4693
+shortdesc Seven predefined chapter heading styles.
+longdesc Each style can be modified using a set of simple commands.
+longdesc Optionally one can modify the formatting routines in order to
+longdesc create additional chapter headings. This package was previously
+longdesc known as FancyChapter.
+docfiles size=1150784
+ texmf-dist/doc/latex/fncychap/Bjarne.eps
+ texmf-dist/doc/latex/fncychap/Bjarnes.eps
+ texmf-dist/doc/latex/fncychap/Bjornstrup.eps
+ texmf-dist/doc/latex/fncychap/BjornstrupS.eps
+ texmf-dist/doc/latex/fncychap/Conny.eps
+ texmf-dist/doc/latex/fncychap/Connys.eps
+ texmf-dist/doc/latex/fncychap/Glenn.eps
+ texmf-dist/doc/latex/fncychap/Glenns.eps
+ texmf-dist/doc/latex/fncychap/Lenny.eps
+ texmf-dist/doc/latex/fncychap/Lennys.eps
+ texmf-dist/doc/latex/fncychap/README
+ texmf-dist/doc/latex/fncychap/Rejne.eps
+ texmf-dist/doc/latex/fncychap/Rejnes.eps
+ texmf-dist/doc/latex/fncychap/Sonny.eps
+ texmf-dist/doc/latex/fncychap/Sonnys.eps
+ texmf-dist/doc/latex/fncychap/fncychap.pdf details="Package documentation, with examples"
+ texmf-dist/doc/latex/fncychap/fncychap.tex
+runfiles size=18775
+ texmf-dist/tex/latex/fncychap/fncychap.sty
+catalogue-version v1.34
+catalogue-date 2007-07-31 20:33:15 +0200
+catalogue-ctan /macros/latex/contrib/fncychap
+catalogue-license dfsg
+
+name foekfont
+category Package
+revision 2945
+shortdesc The title font of the Mads Føk magazine.
+longdesc The bundle provides an Adobe Type 1 font, and LaTeX support for
+longdesc its use. The magazine web site shows the font in use in a few
+longdesc places.
+execute addMap foekfont.map
+docfiles size=119389
+ texmf-dist/doc/latex/foekfont/FoekFont.sfd
+ texmf-dist/doc/latex/foekfont/README details="Package README"
+ texmf-dist/doc/latex/foekfont/foekfont.pdf details="Package documentation"
+ texmf-dist/doc/latex/foekfont/foekfont.tex
+runfiles size=12118
+ texmf-dist/fonts/map/dvips/foekfont/foekfont.map
+ texmf-dist/fonts/tfm/public/foekfont/foekfont.tfm
+ texmf-dist/fonts/type1/public/foekfont/FoekFont.pfb
+ texmf-dist/tex/latex/foekfont/foekfont.sty
+ texmf-dist/tex/latex/foekfont/ot1foekfont.fd
+ texmf-dist/tex/latex/foekfont/t1foekfont.fd
+catalogue-version
+catalogue-date 2007-02-27 14:19:10 +0100
+catalogue-ctan /fonts/foekfont
+catalogue-license gpl
+
+name foilhtml
+category Package
+revision 929
+shortdesc Interface between foiltex and LaTeX2HTML.
+longdesc Provides integration between FoilTeX and LaTeX2HTML, adding
+longdesc sectioning commands and elements of logical formatting to
+longdesc FoilTeX and providing support for FoilTeX commands in
+longdesc LaTeX2HTML.
+srcfiles size=91463
+ texmf-dist/source/latex/foilhtml/foilhtml-96.perl
+ texmf-dist/source/latex/foilhtml/foilhtml.drv
+ texmf-dist/source/latex/foilhtml/foilhtml.dtx
+ texmf-dist/source/latex/foilhtml/foilhtml.ins
+ texmf-dist/source/latex/foilhtml/foils-97.perl
+ texmf-dist/source/latex/foilhtml/foils.perl
+ texmf-dist/source/latex/foilhtml/readme.v12
+runfiles size=11862
+ texmf-dist/tex/latex/foilhtml/foilhtml.cfg
+ texmf-dist/tex/latex/foilhtml/foilhtml.sty
+catalogue-version 1.2
+catalogue-date 2007-01-05 16:07:21 +0100
+catalogue-ctan /macros/latex/contrib/foilhtml
+catalogue-license lppl
+
+name fonetika
+category Package
+revision 5494
+shortdesc Support for the danish "Dania" phonetic system.
+longdesc Fonetika Dania is a font bundle with a serif font and a sans
+longdesc serif font for the danish phonetic system Dania. Both fonts
+longdesc exist in regular and bold weights. LaTeX support is provided.
+longdesc The fonts are based on URW Palladio and Iwona Condensed, and
+longdesc were created using FontForge.
+execute Map fonetika.map
+docfiles size=174267
+ texmf-dist/doc/fonts/fonetika/FonetikaDaniaIwonaeBold.ttf
+ texmf-dist/doc/fonts/fonetika/FonetikaDaniaIwonaeRegular.ttf
+ texmf-dist/doc/fonts/fonetika/FonetikaDaniaPallaeBold.ttf
+ texmf-dist/doc/fonts/fonetika/FonetikaDaniaPallaeRegular.ttf
+ texmf-dist/doc/fonts/fonetika/README details="Package Readme"
+ texmf-dist/doc/fonts/fonetika/fonetika.pdf
+ texmf-dist/doc/fonts/fonetika/fonetika.tex
+runfiles size=73649
+ texmf-dist/fonts/afm/public/fonetika/FonetikaDaniaIwonaeBold.afm
+ texmf-dist/fonts/afm/public/fonetika/FonetikaDaniaIwonaeRegular.afm
+ texmf-dist/fonts/afm/public/fonetika/FonetikaDaniaPallaeBold.afm
+ texmf-dist/fonts/afm/public/fonetika/FonetikaDaniaPallaeRegular.afm
+ texmf-dist/fonts/map/dvips/fonetika/fonetika.map
+ texmf-dist/fonts/tfm/public/fonetika/fonetika.tfm
+ texmf-dist/fonts/tfm/public/fonetika/fonetikabold.tfm
+ texmf-dist/fonts/tfm/public/fonetika/fonetikasans.tfm
+ texmf-dist/fonts/tfm/public/fonetika/fonetikasansbold.tfm
+ texmf-dist/fonts/type1/public/fonetika/FonetikaDaniaIwonaeBold.pfb
+ texmf-dist/fonts/type1/public/fonetika/FonetikaDaniaIwonaeRegular.pfb
+ texmf-dist/fonts/type1/public/fonetika/FonetikaDaniaPallaeBold.pfb
+ texmf-dist/fonts/type1/public/fonetika/FonetikaDaniaPallaeRegular.pfb
+ texmf-dist/tex/latex/fonetika/fonetika.sty
+ texmf-dist/tex/latex/fonetika/t1fonetika.fd
+catalogue-version
+catalogue-date 2006-12-04 15:13:37 +0100
+catalogue-ctan /fonts/fonetika
+catalogue-license other-free
+
+name fontch
+category Package
+revision 4887
+shortdesc Changing fonts, sizes and encodings in Plain TeX.
+longdesc The fontch macros allow the user to change font size and family
+longdesc in any place of a plain TeX document. Sizes of 8, 10, 12, 14,
+longdesc 20 and 24 points are available. A sans serif family (\sf) is
+longdesc defined in addition to the families already defined in plain
+longdesc TeX. Optional support for Latin Modern T1 and TS1 fonts is
+longdesc given. There are macros for non-latin1 letters and for most TS1
+longdesc symbols. Math mode always uses CM fonts. A command for
+longdesc producing doubled-spaced documents is also provided.
+docfiles size=10572
+ texmf-dist/doc/plain/fontch/README details="Readme and usage details"
+runfiles size=51948
+ texmf-dist/tex/plain/fontch/DSmac.tex
+ texmf-dist/tex/plain/fontch/TS1mac.tex
+ texmf-dist/tex/plain/fontch/bsymbols.tex
+ texmf-dist/tex/plain/fontch/fontch.tex
+catalogue-version 2.0
+catalogue-date 2007-09-05 10:05:20 +0200
+catalogue-ctan /macros/plain/contrib/fontch
+catalogue-license lppl
+
+name fontinst
+category Package
+revision 1487
+shortdesc Help with installing fonts for TeX and LaTeX.
+longdesc TeX macros for converting Adobe Font Metric files to TeX metric
+longdesc and virtual font format. Fontinst helps mainly with the number
+longdesc crunching and shovelling parts of font installation. This means
+longdesc in practice that it creates a number of files which give the
+longdesc TeX metrics (and related information) for a font family that
+longdesc (La)TeX needs to do any typesetting in these fonts. Fontinst
+longdesc furthermore makes it easy to create fonts containing glyphs
+longdesc from more than one base font, taking advantage of (e.g.)
+longdesc "expert" font sets. Fontinst cannot examine files to see if
+longdesc they contain any useful information, nor automatically search
+longdesc for files or work with binary file formats; those tasks must
+longdesc normally be done manually or with the help of some other tool,
+longdesc such as the pltotf and vptovf programs.
+docfiles size=916355
+ texmf-dist/doc/fontinst/base/README details="Readme"
+ texmf-dist/doc/fontinst/base/encspecs/encspecs.tex
+ texmf-dist/doc/fontinst/base/encspecs/omxdraft.etx
+ texmf-dist/doc/fontinst/base/encspecs/ot1draft.etx
+ texmf-dist/doc/fontinst/base/encspecs/t1draft.etx
+ texmf-dist/doc/fontinst/base/examples/basicex.tex
+ texmf-dist/doc/fontinst/base/examples/basicex2.tex
+ texmf-dist/doc/fontinst/base/manual/fontinst.pdf
+ texmf-dist/doc/fontinst/base/manual/fontinst.tex
+ texmf-dist/doc/fontinst/base/manual/intro98.pdf
+ texmf-dist/doc/fontinst/base/manual/intro98.tex
+ texmf-dist/doc/fontinst/base/manual/roadmap.eps
+ texmf-dist/doc/fontinst/base/test/comparemetrics.sty
+ texmf-dist/doc/fontinst/base/test/comparepls.tex
+ texmf-dist/doc/fontinst/base/test/scaledtest.tex
+ texmf-dist/doc/fontinst/base/test/speedtest1.tex
+ texmf-dist/doc/fontinst/base/test/testfont.tex
+ texmf-dist/doc/fontinst/base/test/testsc.tex
+ texmf-dist/doc/fontinst/base/test/v1901test.tex
+ texmf-dist/doc/fontinst/base/test/v1902test.tex
+ texmf-dist/doc/fontinst/base/test/v1905test.tex
+ texmf-dist/doc/fontinst/base/test/v1906test.tex
+ texmf-dist/doc/fontinst/base/test/v1913test.tex
+ texmf-dist/doc/fontinst/base/test/v1914test.tex
+ texmf-dist/doc/fontinst/base/test/v1914testmap.tex
+ texmf-dist/doc/fontinst/base/test/v1915test.tex
+ texmf-dist/doc/fontinst/base/test/v1915testmap.tex
+ texmf-dist/doc/fontinst/base/test/v1916test.tex
+ texmf-dist/doc/fontinst/base/test/v1916test2.tex
+ texmf-dist/doc/fontinst/base/test/v1923test.tex
+ texmf-dist/doc/fontinst/base/test/v1927test.tex
+srcfiles size=3177648
+ texmf-dist/source/fontinst/base/CHANGES
+ texmf-dist/source/fontinst/base/fibasics.dtx
+ texmf-dist/source/fontinst/base/ficommon.dtx
+ texmf-dist/source/fontinst/base/ficonv.dtx
+ texmf-dist/source/fontinst/base/filtfam.dtx
+ texmf-dist/source/fontinst/base/fimain.dtx
+ texmf-dist/source/fontinst/base/fimapgen.dtx
+ texmf-dist/source/fontinst/base/fisource.dvi
+ texmf-dist/source/fontinst/base/fisource.sty
+ texmf-dist/source/fontinst/base/fisource.tex
+ texmf-dist/source/fontinst/base/fontinst.ins
+ texmf-dist/source/fontinst/base/trig.dtx
+ texmf-dist/source/fontinst/base/xdoc/README
+ texmf-dist/source/fontinst/base/xdoc/docindex.dtx
+ texmf-dist/source/fontinst/base/xdoc/docindex.ins
+ texmf-dist/source/fontinst/base/xdoc/docindex.pdf
+ texmf-dist/source/fontinst/base/xdoc/xdoc2.dtx
+ texmf-dist/source/fontinst/base/xdoc/xdoc2.ins
+ texmf-dist/source/fontinst/base/xdoc/xdoc2.pdf
+ texmf-dist/source/fontinst/base/xdoc/xdocdemo.pdf
+ texmf-dist/source/fontinst/base/xdoc/xdocdemo.tex
+runfiles size=1095384
+ texmf-dist/tex/fontinst/base/bbox.sty
+ texmf-dist/tex/fontinst/base/cfntinst.sty
+ texmf-dist/tex/fontinst/base/finstmsc.sty
+ texmf-dist/tex/fontinst/base/fontinst.ini
+ texmf-dist/tex/fontinst/base/fontinst.sty
+ texmf-dist/tex/fontinst/base/trig.sty
+ texmf-dist/tex/fontinst/base/xfntinst.sty
+ texmf-dist/tex/fontinst/cyrfinst/6r.etx
+ texmf-dist/tex/fontinst/cyrfinst/README
+ texmf-dist/tex/fontinst/cyrfinst/cyrillic.mtx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcyc.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcyci.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcycij.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcycj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcyctt.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcyi.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcyij.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcyitt.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcyj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/lcytt.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/ot2c.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/ot2cj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/ot2i.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/ot2ij.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/ot2j.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2ac.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2acj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2ai.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2aij.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2aj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2bc.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2bcj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2bi.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2bij.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2bj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2cc.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2ccj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2ci.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2cij.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/t2cj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/x2c.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/x2cj.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/x2i.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/x2ij.etx
+ texmf-dist/tex/fontinst/cyrfinst/derivatives/x2j.etx
+ texmf-dist/tex/fontinst/cyrfinst/etc/alias-cmc.tex
+ texmf-dist/tex/fontinst/cyrfinst/etc/alias-wncy.tex
+ texmf-dist/tex/fontinst/cyrfinst/etc/cyralias.tex
+ texmf-dist/tex/fontinst/cyrfinst/etc/fnstcorr.tex
+ texmf-dist/tex/fontinst/cyrfinst/etc/showenc
+ texmf-dist/tex/fontinst/cyrfinst/lcy-hi.etx
+ texmf-dist/tex/fontinst/cyrfinst/lcy.etx
+ texmf-dist/tex/fontinst/cyrfinst/ot2.etx
+ texmf-dist/tex/fontinst/cyrfinst/t2a.etx
+ texmf-dist/tex/fontinst/cyrfinst/t2b.etx
+ texmf-dist/tex/fontinst/cyrfinst/t2c.etx
+ texmf-dist/tex/fontinst/cyrfinst/x2.etx
+ texmf-dist/tex/fontinst/latinetx/8r.etx
+ texmf-dist/tex/fontinst/latinetx/8y.etx
+ texmf-dist/tex/fontinst/latinetx/ot1.etx
+ texmf-dist/tex/fontinst/latinetx/ot1c.etx
+ texmf-dist/tex/fontinst/latinetx/ot1cj.etx
+ texmf-dist/tex/fontinst/latinetx/ot1ctt.etx
+ texmf-dist/tex/fontinst/latinetx/ot1i.etx
+ texmf-dist/tex/fontinst/latinetx/ot1ij.etx
+ texmf-dist/tex/fontinst/latinetx/ot1itt.etx
+ texmf-dist/tex/fontinst/latinetx/ot1j.etx
+ texmf-dist/tex/fontinst/latinetx/ot1tt.etx
+ texmf-dist/tex/fontinst/latinetx/t1.etx
+ texmf-dist/tex/fontinst/latinetx/t1c.etx
+ texmf-dist/tex/fontinst/latinetx/t1cj.etx
+ texmf-dist/tex/fontinst/latinetx/t1i.etx
+ texmf-dist/tex/fontinst/latinetx/t1ij.etx
+ texmf-dist/tex/fontinst/latinetx/t1j.etx
+ texmf-dist/tex/fontinst/latinetx/txtfdmns.etx
+ texmf-dist/tex/fontinst/latinmtx/8r.mtx
+ texmf-dist/tex/fontinst/latinmtx/8y.mtx
+ texmf-dist/tex/fontinst/latinmtx/latin.mtx
+ texmf-dist/tex/fontinst/latinmtx/latinsc.mtx
+ texmf-dist/tex/fontinst/latinmtx/llbuild.mtx
+ texmf-dist/tex/fontinst/latinmtx/lsbuild.mtx
+ texmf-dist/tex/fontinst/latinmtx/lsfake.mtx
+ texmf-dist/tex/fontinst/latinmtx/lsmisc.mtx
+ texmf-dist/tex/fontinst/latinmtx/ltcmds.mtx
+ texmf-dist/tex/fontinst/latinmtx/ltpunct.mtx
+ texmf-dist/tex/fontinst/latinmtx/lubuild.mtx
+ texmf-dist/tex/fontinst/latinmtx/newlatin.mtx
+ texmf-dist/tex/fontinst/latinmtx/resetsc.mtx
+ texmf-dist/tex/fontinst/latinmtx/unsetalf.mtx
+ texmf-dist/tex/fontinst/mathetx/euex.etx
+ texmf-dist/tex/fontinst/mathetx/eufrak.etx
+ texmf-dist/tex/fontinst/mathetx/eurm.etx
+ texmf-dist/tex/fontinst/mathetx/euscr.etx
+ texmf-dist/tex/fontinst/mathetx/msam.etx
+ texmf-dist/tex/fontinst/mathetx/msbm.etx
+ texmf-dist/tex/fontinst/mathetx/oml.etx
+ texmf-dist/tex/fontinst/mathetx/oms.etx
+ texmf-dist/tex/fontinst/mathetx/omx.etx
+ texmf-dist/tex/fontinst/mathetx/rsfs.etx
+ texmf-dist/tex/fontinst/mathmtx/mathex.mtx
+ texmf-dist/tex/fontinst/mathmtx/mathit.mtx
+ texmf-dist/tex/fontinst/mathmtx/mathsy.mtx
+ texmf-dist/tex/fontinst/misc/csc2x.tex
+ texmf-dist/tex/fontinst/misc/csckrn2x.tex
+ texmf-dist/tex/fontinst/misc/glyphbox.aux
+ texmf-dist/tex/fontinst/misc/glyphbox.dvi
+ texmf-dist/tex/fontinst/misc/glyphbox.log
+ texmf-dist/tex/fontinst/misc/glyphbox.mtx
+ texmf-dist/tex/fontinst/misc/glyphoff.mtx
+ texmf-dist/tex/fontinst/misc/glyphon.mtx
+ texmf-dist/tex/fontinst/misc/kernoff.mtx
+ texmf-dist/tex/fontinst/misc/kernon.mtx
+ texmf-dist/tex/fontinst/misc/osf2x.tex
+ texmf-dist/tex/fontinst/smbletx/digit2.etx
+ texmf-dist/tex/fontinst/smbletx/ts1.etx
+ texmf-dist/tex/fontinst/smbletx/ts1i.etx
+ texmf-dist/tex/fontinst/smbletx/ts1ij.etx
+ texmf-dist/tex/fontinst/smbletx/ts1j.etx
+ texmf-dist/tex/fontinst/smblmtx/resetosf.mtx
+ texmf-dist/tex/fontinst/smblmtx/textcomp.mtx
+ texmf-dist/tex/fontinst/smblmtx/unsetnum.mtx
+ texmf-dist/tex/latex/fontinst/fontdoc.sty
+catalogue-version 1.928
+catalogue-date 2007-02-27 14:19:10 +0100
+catalogue-ctan /fonts/utilities/fontinst
+catalogue-license lppl
+
+name fontname
+category Package
+revision 4643
+shortdesc Scheme for naming fonts in TeX.
+longdesc The scheme for assigning names is described (in the
+longdesc documentation part of the package), and map files giving the
+longdesc relation between foundry name and ‘TeX-name’ are also
+longdesc provided.
+docfiles size=2396508
+ texmf-dist/doc/fontname/8a.html
+ texmf-dist/doc/fontname/8r.html
+ texmf-dist/doc/fontname/Adobe-fonts.html
+ texmf-dist/doc/fontname/Apple-fonts.html
+ texmf-dist/doc/fontname/Bitstream-fonts.html
+ texmf-dist/doc/fontname/ChangeLog
+ texmf-dist/doc/fontname/DTC-fonts.html
+ texmf-dist/doc/fontname/Encodings.html
+ texmf-dist/doc/fontname/Filenames-for-fonts.html
+ texmf-dist/doc/fontname/Font-legalities.html
+ texmf-dist/doc/fontname/Font-name-lists.html
+ texmf-dist/doc/fontname/History.html
+ texmf-dist/doc/fontname/ITC-fonts.html
+ texmf-dist/doc/fontname/Introduction.html
+ texmf-dist/doc/fontname/Linotype-fonts.html
+ texmf-dist/doc/fontname/Long-names.html
+ texmf-dist/doc/fontname/Long-naming-scheme.html
+ texmf-dist/doc/fontname/Makefile
+ texmf-dist/doc/fontname/Monotype-fonts.html
+ texmf-dist/doc/fontname/Name-mapping-file.html
+ texmf-dist/doc/fontname/References.html
+ texmf-dist/doc/fontname/Standard-PostScript-fonts.html
+ texmf-dist/doc/fontname/Suppliers.html
+ texmf-dist/doc/fontname/Typefaces.html
+ texmf-dist/doc/fontname/URW-fonts.html
+ texmf-dist/doc/fontname/Variants.html
+ texmf-dist/doc/fontname/Weights.html
+ texmf-dist/doc/fontname/Widths.html
+ texmf-dist/doc/fontname/bitstrea.aka
+ texmf-dist/doc/fontname/cork.html
+ texmf-dist/doc/fontname/dvips.html
+ texmf-dist/doc/fontname/fontname.aux
+ texmf-dist/doc/fontname/fontname.cp
+ texmf-dist/doc/fontname/fontname.html details="Outline of the mapping scheme (HTML)"
+ texmf-dist/doc/fontname/fontname.pdf details="Outline of the mapping scheme (PDF)"
+ texmf-dist/doc/fontname/fontname.texi
+ texmf-dist/doc/fontname/fontname.toc
+ texmf-dist/doc/fontname/index.html
+ texmf-dist/doc/fontname/texmext.html
+ texmf-dist/doc/fontname/texmital.html
+ texmf-dist/doc/fontname/texmsym.html
+ texmf-dist/doc/fontname/texnansi.html
+ texmf-dist/doc/fontname/texnansx.html
+ texmf-dist/doc/fontname/xl2.html
+ texmf-dist/doc/fontname/xt2.html
+runfiles size=1500345
+ texmf-dist/fonts/map/fontname/adobe.map
+ texmf-dist/fonts/map/fontname/apple.map
+ texmf-dist/fonts/map/fontname/bitstrea.map
+ texmf-dist/fonts/map/fontname/dtc.map
+ texmf-dist/fonts/map/fontname/itc.map
+ texmf-dist/fonts/map/fontname/linot-cd.map
+ texmf-dist/fonts/map/fontname/linotype-cd.map
+ texmf-dist/fonts/map/fontname/linotype.map
+ texmf-dist/fonts/map/fontname/monotype.map
+ texmf-dist/fonts/map/fontname/skey1250.map
+ texmf-dist/fonts/map/fontname/skey1555.map
+ texmf-dist/fonts/map/fontname/softkey-1250.map
+ texmf-dist/fonts/map/fontname/softkey-1555.map
+ texmf-dist/fonts/map/fontname/softkey.map
+ texmf-dist/fonts/map/fontname/special.map
+ texmf-dist/fonts/map/fontname/supplier.map
+ texmf-dist/fonts/map/fontname/texfonts.map
+ texmf-dist/fonts/map/fontname/typeface.map
+ texmf-dist/fonts/map/fontname/urw.map
+ texmf-dist/fonts/map/fontname/variant.map
+ texmf-dist/fonts/map/fontname/weight.map
+ texmf-dist/fonts/map/fontname/width.map
+ texmf-dist/fonts/map/fontname/yandy.map
+catalogue-version
+catalogue-date 2007-06-02 11:23:30 +0200
+catalogue-ctan /info/fontname
+catalogue-license gpl
+
+name fontspec
+category Package
+revision 4633
+shortdesc An automatic interface to feature-rich fonts in XeLaTeX.
+longdesc Fontspec is a package for XeLaTeX. It provides an automatic and
+longdesc unified interface to feature-rich AAT and OpenType fonts
+longdesc through the NFSS in LaTeX running on XeTeX. XeTeX (the
+longdesc successor to TeX-GX) is a TeX-variant (originally for Mac OS X,
+longdesc but now more widely available) that accepts unicode input and
+longdesc can access system fonts directly.
+docfiles size=1662722
+ texmf-dist/doc/xelatex/fontspec/README details="Package README"
+ texmf-dist/doc/xelatex/fontspec/fontspec-example.ltx
+ texmf-dist/doc/xelatex/fontspec/fontspec.pdf details="Package documentation"
+srcfiles size=191394
+ texmf-dist/source/xelatex/fontspec/fontspec.dtx
+ texmf-dist/source/xelatex/fontspec/fontspec.ins
+runfiles size=55372
+ texmf-dist/tex/xelatex/fontspec/fontspec.cfg
+ texmf-dist/tex/xelatex/fontspec/fontspec.sty
+catalogue-version v1.14
+catalogue-date 2007-08-22 21:37:03 +0200
+catalogue-ctan /macros/xetex/latex/fontspec
+catalogue-license lppl
+
+name footbib
+category Package
+revision 2411
+shortdesc Bibliographic references as footnotes.
+longdesc The package makes bibliographic references appear as footnotes.
+longdesc It defines a command \footcite which is similar to the LaTeX
+longdesc \cite command but the references cited in this way appear at
+longdesc the bottom of the pages. This ‘foot bibliography’ does not
+longdesc conflict with the standard one and both may exist
+longdesc simultaneously in a document. The command \cite may still be
+longdesc used to produce the standard bibliography. The foot
+longdesc bibliography uses its own style and bibliographic database
+longdesc which may be specified independently of the standard one. Any
+longdesc standard bibliography style may be used.
+docfiles size=261220
+ texmf-dist/doc/latex/footbib/footbib.pdf details="Package documentation"
+srcfiles size=90858
+ texmf-dist/source/latex/footbib/footbib.dtx
+ texmf-dist/source/latex/footbib/footbib.ins
+runfiles size=24745
+ texmf-dist/tex/latex/footbib/footbib.sty
+catalogue-version 2.0.4
+catalogue-date 2007-01-04 08:48:45 +0100
+catalogue-ctan /macros/latex/contrib/footbib
+catalogue-license lppl
+
+name footmisc
+category Package
+revision 933
+shortdesc A range of footnote options.
+longdesc A collection of ways to change the typesetting of footnotes.
+longdesc The package provides means of changing the layout of the
+longdesc footnotes themselves (including setting them in
+longdesc ‘paragraphs’ — the para option), a way to number
+longdesc footnotes per page (the perpage option), to make footnotes
+longdesc disappear when an argument moves (stable option) and to deal
+longdesc with multiple references to footnotes from the same place
+longdesc (multiple option). The package also has a range of techniques
+longdesc for labelling footnotes with symbols rather than numbers. Some
+longdesc of the functions of the package are overlap with the
+longdesc functionality of other packages. The para option is also
+longdesc provided by the manyfoot and bigfoot packages, though those are
+longdesc both also portmanteau packages. (Don't be seduced by fnpara,
+longdesc whose implementation is improved by the present package.) The
+longdesc perpage option is also offered by footnpag and by the rather
+longdesc more general-purpose perpage
+docfiles size=328650
+ texmf-dist/doc/latex/footmisc/footmisc.pdf details="Package documentation"
+srcfiles size=72228
+ texmf-dist/source/latex/footmisc/footmisc.dtx
+ texmf-dist/source/latex/footmisc/footmisc.ins
+runfiles size=22974
+ texmf-dist/tex/latex/footmisc/footmisc.sty
+catalogue-version 5.3d
+catalogue-date 2007-06-21 00:56:30 +0200
+catalogue-ctan /macros/latex/contrib/footmisc
+catalogue-license lppl
+
+name footnpag
+category Package
+revision 3224
+shortdesc Per-page numbering of footnotes.
+longdesc Allows footnotes on individual pages to be numbered from 1,
+longdesc rather than being numbered sequentially through the document.
+docfiles size=117695
+ texmf-dist/doc/latex/footnpag/CATALOG
+ texmf-dist/doc/latex/footnpag/History
+ texmf-dist/doc/latex/footnpag/INSTALL
+ texmf-dist/doc/latex/footnpag/Imakefile
+ texmf-dist/doc/latex/footnpag/License
+ texmf-dist/doc/latex/footnpag/MANIFEST
+ texmf-dist/doc/latex/footnpag/README details="Readme"
+ texmf-dist/doc/latex/footnpag/TODO
+ texmf-dist/doc/latex/footnpag/footnpag-doc.sty
+ texmf-dist/doc/latex/footnpag/footnpag-user.pdf details="Package documentation"
+ texmf-dist/doc/latex/footnpag/footnpag-user.tex
+ texmf-dist/doc/latex/footnpag/footnpag.doc
+ texmf-dist/doc/latex/footnpag/test/Imakefile
+ texmf-dist/doc/latex/footnpag/test/eqnarray-fnmark.tex
+ texmf-dist/doc/latex/footnpag/test/late.tex
+ texmf-dist/doc/latex/footnpag/test/many.tex
+ texmf-dist/doc/latex/footnpag/test/minipage.tex
+ texmf-dist/doc/latex/footnpag/test/report.tex
+ texmf-dist/doc/latex/footnpag/test/title-2col.tex
+srcfiles size=1303
+ texmf-dist/source/latex/footnpag/Makefile
+runfiles size=20051
+ texmf-dist/tex/latex/footnpag/footnpag.sty
+catalogue-version
+catalogue-date 2007-01-05 21:30:32 +0100
+catalogue-ctan /macros/latex/contrib/footnpag
+catalogue-license gpl
+
+name forloop
+category Package
+revision 2170
+shortdesc Iteration in LaTeX.
+longdesc The package provides a command \forloop for doing iteration in
+longdesc LaTeX macro programming.
+docfiles size=83408
+ texmf-dist/doc/latex/forloop/README details="Package README"
+ texmf-dist/doc/latex/forloop/forloop.pdf details="Package documentation"
+srcfiles size=6244
+ texmf-dist/source/latex/forloop/forloop.dtx
+ texmf-dist/source/latex/forloop/forloop.ins
+runfiles size=1717
+ texmf-dist/tex/latex/forloop/forloop.sty
+catalogue-version 3.0
+catalogue-date 2007-02-27 14:19:10 +0100
+catalogue-ctan /macros/latex/contrib/forloop
+catalogue-license lgpl
+
+name formlett
+category Package
+revision 1487
+shortdesc Letters to multiple recipients.
+longdesc A package for multiple letters from the same basic source; the
+longdesc package offers parametrisation of the letters actually sent.
+docfiles size=156931
+ texmf-dist/doc/latex/formlett/prog_manual.dvi
+ texmf-dist/doc/latex/formlett/prog_manual.tex
+ texmf-dist/doc/latex/formlett/user_manual.dvi
+ texmf-dist/doc/latex/formlett/user_manual.tex
+runfiles size=68043
+ texmf-dist/tex/latex/formlett/formlett.sty
+catalogue-version
+catalogue-date 2007-02-17 12:19:01 +0100
+catalogue-ctan /macros/generic/formlett
+catalogue-license unknown
+
+name formula
+category Package
+revision 1487
+shortdesc Typesetting physical units.
+longdesc Support for typesetting physical symbols, ensuring the same
+longdesc shape in text and maths mode. The user may specify their own
+longdesc units, and may change the format for the package’s predefined
+longdesc physical units.
+docfiles size=5949
+ texmf-dist/doc/latex/formula/formpel.dvi
+ texmf-dist/doc/latex/formula/formpel.tex
+srcfiles size=55606
+ texmf-dist/source/latex/formula/Bugs
+ texmf-dist/source/latex/formula/Changes
+ texmf-dist/source/latex/formula/Makefile
+ texmf-dist/source/latex/formula/README.1ST
+ texmf-dist/source/latex/formula/Todo
+ texmf-dist/source/latex/formula/dp/ftp_incoming.txt
+ texmf-dist/source/latex/formula/formula.drv
+ texmf-dist/source/latex/formula/formula.dtx
+ texmf-dist/source/latex/formula/formula.ins
+ texmf-dist/source/latex/formula/install.eng
+ texmf-dist/source/latex/formula/install.ger
+ texmf-dist/source/latex/formula/newform.bat
+ texmf-dist/source/latex/formula/newformula
+ texmf-dist/source/latex/formula/prepverz.bat
+ texmf-dist/source/latex/formula/prepverz.sh
+runfiles size=17509
+ texmf-dist/tex/latex/formula/formula.sty
+catalogue-version 0.2
+catalogue-date 2007-01-05 21:30:32 +0100
+catalogue-ctan /macros/latex/contrib/formula
+catalogue-license gpl
+
+name formular
+category Package
+revision 937
+shortdesc Create forms containing field for manual entry.
+longdesc When typesetting forms there often arises the need for defining
+longdesc fields which consist of one or more lines where the customer
+longdesc can write something down manually. This package offers some
+longdesc commands for defining such fields in a distinctive way.
+docfiles size=155946
+ texmf-dist/doc/latex/formular/README details="Readme"
+ texmf-dist/doc/latex/formular/formular.pdf details="Package documentation"
+srcfiles size=31841
+ texmf-dist/source/latex/formular/formular.dtx
+ texmf-dist/source/latex/formular/formular.ins
+runfiles size=11375
+ texmf-dist/tex/latex/formular/formular.sty
+catalogue-version 1.0a
+catalogue-date 2007-01-05 21:30:32 +0100
+catalogue-ctan /macros/latex/contrib/formular
+catalogue-license lppl
+
+name fourier
+category Package
+revision 938
+shortdesc Using Utopia fonts in LaTeX documents.
+longdesc Fourier-GUTenberg is a LaTeX typesetting system which uses
+longdesc Adobe Utopia as its standard base font. NB: Adobe Utopia is
+longdesc freely available, but it is not free software. Fourier-
+longdesc GUTenberg provides all complementary typefaces needed to allow
+longdesc Utopia based TeX typesetting, including an extensive
+longdesc mathematics set and several other symbols. The system is
+longdesc absolutely stand-alone: apart from Utopia and Fourier, no other
+longdesc typefaces are required. The fourier fonts will also work with
+longdesc Adobe Utopia Expert fonts, which are only available for
+longdesc purchase. Utopia is a registered trademark of Adobe Systems
+longdesc Incorporated
+execute addMap fourier.map
+execute addMap fourier-utopia-expert.map
+docfiles size=190833
+ texmf-dist/doc/fonts/fourier/README details="Readme"
+ texmf-dist/doc/fonts/fourier/fourier-doc-en.pdf
+ texmf-dist/doc/fonts/fourier/fourier-doc-en.tex
+ texmf-dist/doc/fonts/fourier/fourier-orns.pdf
+ texmf-dist/doc/fonts/fourier/fourier-orns.tex
+srcfiles size=12497
+ texmf-dist/source/fonts/fourier/Makefile
+runfiles size=1025711
+ texmf-dist/fonts/afm/public/fourier/fourier-alt-black.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-alt-bold.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-alt-boldita.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-alt-ita.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-alt-semi.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-alt-semiita.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-alt.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-bb.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-mcl.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-mex.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-ml.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-mlb.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-mlit.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-mlitb.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-ms.afm
+ texmf-dist/fonts/afm/public/fourier/fourier-orns.afm
+ texmf-dist/fonts/map/dvips/fourier/fourier-utopia-expert.map
+ texmf-dist/fonts/map/dvips/fourier/fourier.map
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt-black.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt-bold-sl.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt-bold.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt-boldita.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt-ita.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt-semi-sl.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt-semi.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt-semiita.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt-sl.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-alt.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-bb.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-mcl.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-mex.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-ml.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-mlb.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-mlit.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-mlitb.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-ms.tfm
+ texmf-dist/fonts/tfm/public/fourier/fourier-orns.tfm
+ texmf-dist/fonts/tfm/public/fourier/futb8c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futb8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futb8t.tfm
+ texmf-dist/fonts/tfm/public/fourier/futb8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futb9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futb9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futb9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbc8t.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbi8c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbi8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbi8t.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbi8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbi9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbi9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbi9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbo8c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbo8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbo8t.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbo8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbo9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbo9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futbo9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futboorn.tfm
+ texmf-dist/fonts/tfm/public/fourier/futborn.tfm
+ texmf-dist/fonts/tfm/public/fourier/futc8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futc8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futc9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futc9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futc9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futcorn.tfm
+ texmf-dist/fonts/tfm/public/fourier/futmi.tfm
+ texmf-dist/fonts/tfm/public/fourier/futmib.tfm
+ texmf-dist/fonts/tfm/public/fourier/futmii.tfm
+ texmf-dist/fonts/tfm/public/fourier/futmiib.tfm
+ texmf-dist/fonts/tfm/public/fourier/futr8c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futr8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futr8t.tfm
+ texmf-dist/fonts/tfm/public/fourier/futr8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futr9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futr9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futr9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futrc8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futrc8t.tfm
+ texmf-dist/fonts/tfm/public/fourier/futrc9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futrc9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futrd8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futrd8t.tfm
+ texmf-dist/fonts/tfm/public/fourier/futri8c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futri8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futri8t.tfm
+ texmf-dist/fonts/tfm/public/fourier/futri8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futri9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futri9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futri9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futro8c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futro8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futro8t.tfm
+ texmf-dist/fonts/tfm/public/fourier/futro8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futro9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futro9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futro9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futroorn.tfm
+ texmf-dist/fonts/tfm/public/fourier/futrorn.tfm
+ texmf-dist/fonts/tfm/public/fourier/futs8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futs8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futs9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futs9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futs9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsc8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsc9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsc9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsi8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsi8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsi9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsi9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsi9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futso8r.tfm
+ texmf-dist/fonts/tfm/public/fourier/futso8x.tfm
+ texmf-dist/fonts/tfm/public/fourier/futso9c.tfm
+ texmf-dist/fonts/tfm/public/fourier/futso9d.tfm
+ texmf-dist/fonts/tfm/public/fourier/futso9e.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsoorn.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsorn.tfm
+ texmf-dist/fonts/tfm/public/fourier/futsy.tfm
+ texmf-dist/fonts/type1/public/fourier/fourier-alt-black.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-alt-bold.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-alt-boldita.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-alt-ita.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-alt-semi.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-alt-semiita.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-alt.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-bb.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-mcl.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-mex.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-ml.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-mlb.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-mlit.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-mlitb.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-ms.pfb
+ texmf-dist/fonts/type1/public/fourier/fourier-orns.pfb
+ texmf-dist/fonts/vf/public/fourier/futb8c.vf
+ texmf-dist/fonts/vf/public/fourier/futb8t.vf
+ texmf-dist/fonts/vf/public/fourier/futb9c.vf
+ texmf-dist/fonts/vf/public/fourier/futb9d.vf
+ texmf-dist/fonts/vf/public/fourier/futb9e.vf
+ texmf-dist/fonts/vf/public/fourier/futbc8t.vf
+ texmf-dist/fonts/vf/public/fourier/futbi8c.vf
+ texmf-dist/fonts/vf/public/fourier/futbi8t.vf
+ texmf-dist/fonts/vf/public/fourier/futbi9c.vf
+ texmf-dist/fonts/vf/public/fourier/futbi9d.vf
+ texmf-dist/fonts/vf/public/fourier/futbi9e.vf
+ texmf-dist/fonts/vf/public/fourier/futbo8c.vf
+ texmf-dist/fonts/vf/public/fourier/futbo8t.vf
+ texmf-dist/fonts/vf/public/fourier/futbo9c.vf
+ texmf-dist/fonts/vf/public/fourier/futbo9d.vf
+ texmf-dist/fonts/vf/public/fourier/futbo9e.vf
+ texmf-dist/fonts/vf/public/fourier/futboorn.vf
+ texmf-dist/fonts/vf/public/fourier/futborn.vf
+ texmf-dist/fonts/vf/public/fourier/futc9c.vf
+ texmf-dist/fonts/vf/public/fourier/futc9d.vf
+ texmf-dist/fonts/vf/public/fourier/futc9e.vf
+ texmf-dist/fonts/vf/public/fourier/futcorn.vf
+ texmf-dist/fonts/vf/public/fourier/futmi.vf
+ texmf-dist/fonts/vf/public/fourier/futmib.vf
+ texmf-dist/fonts/vf/public/fourier/futmii.vf
+ texmf-dist/fonts/vf/public/fourier/futmiib.vf
+ texmf-dist/fonts/vf/public/fourier/futr8c.vf
+ texmf-dist/fonts/vf/public/fourier/futr8t.vf
+ texmf-dist/fonts/vf/public/fourier/futr9c.vf
+ texmf-dist/fonts/vf/public/fourier/futr9d.vf
+ texmf-dist/fonts/vf/public/fourier/futr9e.vf
+ texmf-dist/fonts/vf/public/fourier/futrc8t.vf
+ texmf-dist/fonts/vf/public/fourier/futrc9d.vf
+ texmf-dist/fonts/vf/public/fourier/futrc9e.vf
+ texmf-dist/fonts/vf/public/fourier/futrd8t.vf
+ texmf-dist/fonts/vf/public/fourier/futri8c.vf
+ texmf-dist/fonts/vf/public/fourier/futri8t.vf
+ texmf-dist/fonts/vf/public/fourier/futri9c.vf
+ texmf-dist/fonts/vf/public/fourier/futri9d.vf
+ texmf-dist/fonts/vf/public/fourier/futri9e.vf
+ texmf-dist/fonts/vf/public/fourier/futro8c.vf
+ texmf-dist/fonts/vf/public/fourier/futro8t.vf
+ texmf-dist/fonts/vf/public/fourier/futro9c.vf
+ texmf-dist/fonts/vf/public/fourier/futro9d.vf
+ texmf-dist/fonts/vf/public/fourier/futro9e.vf
+ texmf-dist/fonts/vf/public/fourier/futroorn.vf
+ texmf-dist/fonts/vf/public/fourier/futrorn.vf
+ texmf-dist/fonts/vf/public/fourier/futs9c.vf
+ texmf-dist/fonts/vf/public/fourier/futs9d.vf
+ texmf-dist/fonts/vf/public/fourier/futs9e.vf
+ texmf-dist/fonts/vf/public/fourier/futsc9d.vf
+ texmf-dist/fonts/vf/public/fourier/futsc9e.vf
+ texmf-dist/fonts/vf/public/fourier/futsi9c.vf
+ texmf-dist/fonts/vf/public/fourier/futsi9d.vf
+ texmf-dist/fonts/vf/public/fourier/futsi9e.vf
+ texmf-dist/fonts/vf/public/fourier/futso9c.vf
+ texmf-dist/fonts/vf/public/fourier/futso9d.vf
+ texmf-dist/fonts/vf/public/fourier/futso9e.vf
+ texmf-dist/fonts/vf/public/fourier/futsoorn.vf
+ texmf-dist/fonts/vf/public/fourier/futsorn.vf
+ texmf-dist/fonts/vf/public/fourier/futsy.vf
+ texmf-dist/tex/latex/fourier/fmlfutm.fd
+ texmf-dist/tex/latex/fourier/fmlfutmi.fd
+ texmf-dist/tex/latex/fourier/fmsfutm.fd
+ texmf-dist/tex/latex/fourier/fmxfutm.fd
+ texmf-dist/tex/latex/fourier/fourier-orns.sty
+ texmf-dist/tex/latex/fourier/fourier.sty
+ texmf-dist/tex/latex/fourier/t1futj.fd
+ texmf-dist/tex/latex/fourier/t1futs.fd
+ texmf-dist/tex/latex/fourier/t1futx.fd
+ texmf-dist/tex/latex/fourier/ts1futj.fd
+ texmf-dist/tex/latex/fourier/ts1futs.fd
+ texmf-dist/tex/latex/fourier/ts1futx.fd
+ texmf-dist/tex/latex/fourier/ufuts.fd
+catalogue-version 1.3
+catalogue-date 2007-09-28 22:06:39 +0200
+catalogue-ctan /fonts/fourier-GUT
+catalogue-license lppl
+
+name fouriernc
+category Package
+revision 4196
+docfiles size=104050
+ texmf-dist/doc/fonts/fouriernc/README
+ texmf-dist/doc/fonts/fouriernc/build-fouriernc.tex
+ texmf-dist/doc/fonts/fouriernc/mathit.mtx
+ texmf-dist/doc/fonts/fouriernc/mathsy.mtx
+ texmf-dist/doc/fonts/fouriernc/omlgutop.etx
+ texmf-dist/doc/fonts/fouriernc/omsgutop.etx
+ texmf-dist/doc/fonts/fouriernc/setxheight.mtx
+ texmf-dist/doc/fonts/fouriernc/specialkernings.mtx
+ texmf-dist/doc/fonts/fouriernc/specialkerningsital.mtx
+ texmf-dist/doc/fonts/fouriernc/test_fouriernc.pdf
+ texmf-dist/doc/fonts/fouriernc/unset0.mtx
+ texmf-dist/doc/fonts/fouriernc/unset0A.mtx
+ texmf-dist/doc/fonts/fouriernc/unsetAlph.mtx
+ texmf-dist/doc/fonts/fouriernc/unsetUCgreek.mtx
+ texmf-dist/doc/fonts/fouriernc/unsetfontparams.mtx
+ texmf-dist/doc/fonts/fouriernc/unsetmu.mtx
+ texmf-dist/doc/fonts/fouriernc/unsetpar.mtx
+ texmf-dist/doc/fonts/fouriernc/zrmhax.mtx
+ texmf-dist/doc/fonts/fouriernc/zrykernx.mtx
+runfiles size=84748
+ texmf-dist/fonts/afm/public/fouriernc/fourier-mcl.afm
+ texmf-dist/fonts/afm/public/fouriernc/fourier-ml.afm
+ texmf-dist/fonts/afm/public/fouriernc/fourier-mlb.afm
+ texmf-dist/fonts/afm/public/fouriernc/fourier-mlit.afm
+ texmf-dist/fonts/afm/public/fouriernc/fourier-mlitb.afm
+ texmf-dist/fonts/afm/public/fouriernc/fourier-ms.afm
+ texmf-dist/fonts/afm/public/fouriernc/pncb8a.afm
+ texmf-dist/fonts/afm/public/fouriernc/pncbi8a.afm
+ texmf-dist/fonts/afm/public/fouriernc/pncr8a.afm
+ texmf-dist/fonts/afm/public/fouriernc/pncri8a.afm
+ texmf-dist/fonts/tfm/public/fouriernc/fncmi.tfm
+ texmf-dist/fonts/tfm/public/fouriernc/fncmib.tfm
+ texmf-dist/fonts/tfm/public/fouriernc/fncmii.tfm
+ texmf-dist/fonts/tfm/public/fouriernc/fncmiib.tfm
+ texmf-dist/fonts/tfm/public/fouriernc/fncsy.tfm
+ texmf-dist/fonts/vf/public/fouriernc/fncmi.vf
+ texmf-dist/fonts/vf/public/fouriernc/fncmib.vf
+ texmf-dist/fonts/vf/public/fouriernc/fncmii.vf
+ texmf-dist/fonts/vf/public/fouriernc/fncmiib.vf
+ texmf-dist/fonts/vf/public/fouriernc/fncsy.vf
+ texmf-dist/tex/latex/fouriernc/fmlfncm.fd
+ texmf-dist/tex/latex/fouriernc/fmlfncmi.fd
+ texmf-dist/tex/latex/fouriernc/fmsfncm.fd
+ texmf-dist/tex/latex/fouriernc/fouriernc.sty
+ texmf-dist/tex/latex/fouriernc/t1fnc.fd
+ texmf-dist/tex/latex/fouriernc/ts1fnc.fd
+
+name fp
+category Package
+revision 939
+shortdesc Fixed point arithmetic.
+longdesc Provides an extensive collection of arithmetic operations for
+longdesc fixed point real numbers of high precision.
+docfiles size=18152
+ texmf-dist/doc/latex/fp/README
+ texmf-dist/doc/latex/fp/fp.tex
+runfiles size=118772
+ texmf-dist/tex/latex/fp/defpattern.sty
+ texmf-dist/tex/latex/fp/fp-addons.sty
+ texmf-dist/tex/latex/fp/fp-basic.sty
+ texmf-dist/tex/latex/fp/fp-eqn.sty
+ texmf-dist/tex/latex/fp/fp-eval.sty
+ texmf-dist/tex/latex/fp/fp-exp.sty
+ texmf-dist/tex/latex/fp/fp-pas.sty
+ texmf-dist/tex/latex/fp/fp-random.sty
+ texmf-dist/tex/latex/fp/fp-snap.sty
+ texmf-dist/tex/latex/fp/fp-trigo.sty
+ texmf-dist/tex/latex/fp/fp-upn.sty
+ texmf-dist/tex/latex/fp/fp.sty
+ texmf-dist/tex/latex/fp/lfp.sty
+ texmf-dist/tex/plain/fp/fp.tex
+catalogue-version
+catalogue-date 2006-12-18 23:50:36 +0100
+catalogue-ctan /macros/latex/contrib/fp
+catalogue-license lppl
+
+name fpl
+category Package
+revision 4825
+shortdesc SC and OsF fonts for URW Palladio L
+longdesc The FPL Fonts provide a set of SC/OsF fonts for URW Palladio L
+longdesc which are compatible with respect to metrics with the Palatino
+longdesc SC/OsF fonts from Adobe. Note that it is not my aim to exactly
+longdesc reproduce the outlines of the original Adobe fonts. The SC and
+longdesc OsF in the FPL Fonts were designed with the glyphs from URW
+longdesc Palladio L as starting point. For some glyphs (e.g. ‘o’) I
+longdesc got the best result by scaling and boldening. For others (e.g.
+longdesc ‘h’) shifting selected portions of the character gave more
+longdesc satisfying results. All this was done using the free font
+longdesc editor FontForge. The kerning data in these fonts comes from
+longdesc Walter Schmidt's improved Palatino metrics. LaTeX use is
+longdesc enabled by the mathpazo package, which is part of the psnfss
+longdesc distribution.
+docfiles size=20703
+ texmf-dist/doc/fonts/fpl/COPYING
+ texmf-dist/doc/fonts/fpl/README details="Readme"
+srcfiles size=219730
+ texmf-dist/source/fonts/fpl/AddException
+ texmf-dist/source/fonts/fpl/AddGPL
+ texmf-dist/source/fonts/fpl/Makefile
+ texmf-dist/source/fonts/fpl/Palladio-BoldItalicOsF.sfd
+ texmf-dist/source/fonts/fpl/Palladio-BoldOsF.sfd
+ texmf-dist/source/fonts/fpl/Palladio-ItalicOsF.sfd
+ texmf-dist/source/fonts/fpl/Palladio-SC.sfd
+ texmf-dist/source/fonts/fpl/README
+ texmf-dist/source/fonts/fpl/TeXPalladioL-BoldItalicOsF.pe
+ texmf-dist/source/fonts/fpl/TeXPalladioL-BoldOsF.pe
+ texmf-dist/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe
+ texmf-dist/source/fonts/fpl/TeXPalladioL-SC.pe
+ texmf-dist/source/fonts/fpl/URW-OtherSubrs.ps
+runfiles size=704953
+ texmf-dist/fonts/afm/public/fpl/fplbij8a.afm
+ texmf-dist/fonts/afm/public/fpl/fplbj8a.afm
+ texmf-dist/fonts/afm/public/fpl/fplrc8a.afm
+ texmf-dist/fonts/afm/public/fpl/fplrij8a.afm
+ texmf-dist/fonts/afm/public/fpl/pplb9d-kern.afm
+ texmf-dist/fonts/afm/public/fpl/pplbi9d-kern.afm
+ texmf-dist/fonts/afm/public/fpl/pplrc9d-kern.afm
+ texmf-dist/fonts/afm/public/fpl/pplri9d-kern.afm
+ texmf-dist/fonts/type1/public/fpl/fplbij8a.pfb
+ texmf-dist/fonts/type1/public/fpl/fplbij8a.pfm
+ texmf-dist/fonts/type1/public/fpl/fplbj8a.pfb
+ texmf-dist/fonts/type1/public/fpl/fplbj8a.pfm
+ texmf-dist/fonts/type1/public/fpl/fplrc8a.pfb
+ texmf-dist/fonts/type1/public/fpl/fplrc8a.pfm
+ texmf-dist/fonts/type1/public/fpl/fplrij8a.pfb
+ texmf-dist/fonts/type1/public/fpl/fplrij8a.pfm
+catalogue-version 1.002
+catalogue-date 2007-09-28 22:20:10 +0200
+catalogue-ctan /fonts/fpl
+catalogue-license gpl
+
+name frankenstein
+category Package
+revision 4311
+shortdesc A collection of LaTeX packages.
+longdesc Frankenstein is a bundle of LaTeX packages serving various
+longdesc purposes and a BibTeX bibliography style. Descriptions are
+longdesc given under the individual packages: abbrevs, achicago package,
+longdesc achicago bibstyle, attrib, blkcntrl, compsci, dialogue, lips,
+longdesc moredefs, newclude, slemph, titles.
+docfiles size=2610328
+ texmf-dist/doc/latex/frankenstein/ChangeLog
+ texmf-dist/doc/latex/frankenstein/Frankenfile
+ texmf-dist/doc/latex/frankenstein/INSTALL
+ texmf-dist/doc/latex/frankenstein/README details="Bundle README"
+ texmf-dist/doc/latex/frankenstein/abbrevs.pdf
+ texmf-dist/doc/latex/frankenstein/abbrevs.tex
+ texmf-dist/doc/latex/frankenstein/achicago-bst.pdf
+ texmf-dist/doc/latex/frankenstein/achicago-bst.tex
+ texmf-dist/doc/latex/frankenstein/achicago-bst.ver
+ texmf-dist/doc/latex/frankenstein/achicago.bsq
+ texmf-dist/doc/latex/frankenstein/achicago.pdf
+ texmf-dist/doc/latex/frankenstein/achicago.tex
+ texmf-dist/doc/latex/frankenstein/attrib.pdf
+ texmf-dist/doc/latex/frankenstein/attrib.tex
+ texmf-dist/doc/latex/frankenstein/blkcntrl.pdf
+ texmf-dist/doc/latex/frankenstein/blkcntrl.tex
+ texmf-dist/doc/latex/frankenstein/compsci.pdf
+ texmf-dist/doc/latex/frankenstein/compsci.tex
+ texmf-dist/doc/latex/frankenstein/dialogue.pdf
+ texmf-dist/doc/latex/frankenstein/dialogue.tex
+ texmf-dist/doc/latex/frankenstein/lips.pdf
+ texmf-dist/doc/latex/frankenstein/lips.tex
+ texmf-dist/doc/latex/frankenstein/moredefs.pdf
+ texmf-dist/doc/latex/frankenstein/moredefs.tex
+ texmf-dist/doc/latex/frankenstein/newclude.pdf
+ texmf-dist/doc/latex/frankenstein/newclude.tex
+ texmf-dist/doc/latex/frankenstein/slemph.pdf
+ texmf-dist/doc/latex/frankenstein/slemph.tex
+ texmf-dist/doc/latex/frankenstein/titles.pdf
+ texmf-dist/doc/latex/frankenstein/titles.tex
+ texmf-dist/doc/latex/frankenstein/unsupported/README-unsupported
+ texmf-dist/doc/latex/frankenstein/unsupported/bits.cfg
+ texmf-dist/doc/latex/frankenstein/unsupported/bits.ins
+ texmf-dist/doc/latex/frankenstein/unsupported/bits.pdf
+ texmf-dist/doc/latex/frankenstein/unsupported/bits.sty
+ texmf-dist/doc/latex/frankenstein/unsupported/bits.tex
+ texmf-dist/doc/latex/frankenstein/unsupported/drama.ins
+ texmf-dist/doc/latex/frankenstein/unsupported/drama.pdf
+ texmf-dist/doc/latex/frankenstein/unsupported/drama.sty
+ texmf-dist/doc/latex/frankenstein/unsupported/drama.tex
+ texmf-dist/doc/latex/frankenstein/unsupported/includex-test.tex
+ texmf-dist/doc/latex/frankenstein/unsupported/includex.ins
+ texmf-dist/doc/latex/frankenstein/unsupported/includex.pdf
+ texmf-dist/doc/latex/frankenstein/unsupported/includex.sty
+ texmf-dist/doc/latex/frankenstein/unsupported/includex.tex
+srcfiles size=38264
+ texmf-dist/source/latex/frankenstein/Makefile
+ texmf-dist/source/latex/frankenstein/abbrevs.ins
+ texmf-dist/source/latex/frankenstein/achicago-bst.ins
+ texmf-dist/source/latex/frankenstein/achicago.ins
+ texmf-dist/source/latex/frankenstein/attrib.ins
+ texmf-dist/source/latex/frankenstein/blkcntrl.ins
+ texmf-dist/source/latex/frankenstein/compsci.ins
+ texmf-dist/source/latex/frankenstein/dialogue.ins
+ texmf-dist/source/latex/frankenstein/lips.ins
+ texmf-dist/source/latex/frankenstein/moredefs.ins
+ texmf-dist/source/latex/frankenstein/newclude.ins
+ texmf-dist/source/latex/frankenstein/slemph.ins
+ texmf-dist/source/latex/frankenstein/titles.ins
+runfiles size=726394
+ texmf-dist/bibtex/bib/frankenstein/frankenstein.bib
+ texmf-dist/bibtex/bst/frankenstein/achicago.bst
+ texmf-dist/tex/latex/frankenstein/abbrevs.cfg
+ texmf-dist/tex/latex/frankenstein/abbrevs.stq
+ texmf-dist/tex/latex/frankenstein/abbrevs.sty
+ texmf-dist/tex/latex/frankenstein/achicago.stq
+ texmf-dist/tex/latex/frankenstein/achicago.sty
+ texmf-dist/tex/latex/frankenstein/allocate.sto
+ texmf-dist/tex/latex/frankenstein/attrib.stq
+ texmf-dist/tex/latex/frankenstein/attrib.sty
+ texmf-dist/tex/latex/frankenstein/blkcntrl.stq
+ texmf-dist/tex/latex/frankenstein/blkcntrl.sty
+ texmf-dist/tex/latex/frankenstein/compsci.cfg
+ texmf-dist/tex/latex/frankenstein/compsci.stq
+ texmf-dist/tex/latex/frankenstein/compsci.sty
+ texmf-dist/tex/latex/frankenstein/dialogue.stq
+ texmf-dist/tex/latex/frankenstein/dialogue.sty
+ texmf-dist/tex/latex/frankenstein/lips.stq
+ texmf-dist/tex/latex/frankenstein/lips.sty
+ texmf-dist/tex/latex/frankenstein/moredefs.stq
+ texmf-dist/tex/latex/frankenstein/moredefs.sty
+ texmf-dist/tex/latex/frankenstein/newclude.stq
+ texmf-dist/tex/latex/frankenstein/newclude.sty
+ texmf-dist/tex/latex/frankenstein/simple.sto
+ texmf-dist/tex/latex/frankenstein/slemph.cfg
+ texmf-dist/tex/latex/frankenstein/slemph.stq
+ texmf-dist/tex/latex/frankenstein/slemph.sty
+ texmf-dist/tex/latex/frankenstein/tag.sto
+ texmf-dist/tex/latex/frankenstein/titles.cfg
+ texmf-dist/tex/latex/frankenstein/titles.stq
+ texmf-dist/tex/latex/frankenstein/titles.sty
+catalogue-version
+catalogue-date 2006-11-26 00:07:47 +0100
+catalogue-ctan /macros/latex/contrib/frankenstein
+catalogue-license gpl
+
+name frcursive
+category Package
+revision 940
+shortdesc French cursive hand fonts.
+longdesc A hand-writing font in the style of the French academic
+longdesc running-hand. The font is written in Metafont. An NFSS font
+longdesc description and a supporting LaTeX package are provided.
+docfiles size=80677
+ texmf-dist/doc/fonts/frcursive/COPYING
+ texmf-dist/doc/fonts/frcursive/FILES
+ texmf-dist/doc/fonts/frcursive/README
+ texmf-dist/doc/fonts/frcursive/fcsource.tex
+ texmf-dist/doc/fonts/frcursive/figs.tex
+ texmf-dist/doc/fonts/frcursive/latex/Makefile
+ texmf-dist/doc/fonts/frcursive/lttst.tex
+ texmf-dist/doc/fonts/frcursive/mf/Makefile
+ texmf-dist/doc/fonts/frcursive/mkdrv.sh
+ texmf-dist/doc/fonts/frcursive/test/Makefile
+ texmf-dist/doc/fonts/frcursive/tfc.tex
+ texmf-dist/doc/fonts/frcursive/txt-en.tex
+ texmf-dist/doc/fonts/frcursive/txt-fr.tex
+srcfiles size=10485
+ texmf-dist/source/fonts/frcursive/Makefile
+ texmf-dist/source/fonts/frcursive/frcursive.dtx
+ texmf-dist/source/fonts/frcursive/frcursive.ins
+runfiles size=237571
+ texmf-dist/fonts/source/public/frcursive/frca10.mf
+ texmf-dist/fonts/source/public/frcursive/frcbx10.mf
+ texmf-dist/fonts/source/public/frcursive/frcbx11.mf
+ texmf-dist/fonts/source/public/frcursive/frcbx12.mf
+ texmf-dist/fonts/source/public/frcursive/frcbx14.mf
+ texmf-dist/fonts/source/public/frcursive/frcbx17.mf
+ texmf-dist/fonts/source/public/frcursive/frcbx7.mf
+ texmf-dist/fonts/source/public/frcursive/frcbx8.mf
+ texmf-dist/fonts/source/public/frcursive/frcbx9.mf
+ texmf-dist/fonts/source/public/frcursive/frcc10.mf
+ texmf-dist/fonts/source/public/frcursive/frcc11.mf
+ texmf-dist/fonts/source/public/frcursive/frcc12.mf
+ texmf-dist/fonts/source/public/frcursive/frcc14.mf
+ texmf-dist/fonts/source/public/frcursive/frcf10.mf
+ texmf-dist/fonts/source/public/frcursive/frcf11.mf
+ texmf-dist/fonts/source/public/frcursive/frcf12.mf
+ texmf-dist/fonts/source/public/frcursive/frcf14.mf
+ texmf-dist/fonts/source/public/frcursive/frcr10.mf
+ texmf-dist/fonts/source/public/frcursive/frcr11.mf
+ texmf-dist/fonts/source/public/frcursive/frcr12.mf
+ texmf-dist/fonts/source/public/frcursive/frcr14.mf
+ texmf-dist/fonts/source/public/frcursive/frcr17.mf
+ texmf-dist/fonts/source/public/frcursive/frcr7.mf
+ texmf-dist/fonts/source/public/frcursive/frcr8.mf
+ texmf-dist/fonts/source/public/frcursive/frcr9.mf
+ texmf-dist/fonts/source/public/frcursive/frcsl10.mf
+ texmf-dist/fonts/source/public/frcursive/frcsl11.mf
+ texmf-dist/fonts/source/public/frcursive/frcsl12.mf
+ texmf-dist/fonts/source/public/frcursive/frcsl14.mf
+ texmf-dist/fonts/source/public/frcursive/frcsl17.mf
+ texmf-dist/fonts/source/public/frcursive/frcsl7.mf
+ texmf-dist/fonts/source/public/frcursive/frcsl8.mf
+ texmf-dist/fonts/source/public/frcursive/frcsl9.mf
+ texmf-dist/fonts/source/public/frcursive/frcslbx10.mf
+ texmf-dist/fonts/source/public/frcursive/frcslbx11.mf
+ texmf-dist/fonts/source/public/frcursive/frcslbx12.mf
+ texmf-dist/fonts/source/public/frcursive/frcslbx14.mf
+ texmf-dist/fonts/source/public/frcursive/frcslbx17.mf
+ texmf-dist/fonts/source/public/frcursive/frcslbx7.mf
+ texmf-dist/fonts/source/public/frcursive/frcslbx8.mf
+ texmf-dist/fonts/source/public/frcursive/frcslbx9.mf
+ texmf-dist/fonts/source/public/frcursive/frcursive.mf
+ texmf-dist/fonts/source/public/frcursive/frcw10.mf
+ texmf-dist/fonts/tfm/public/frcursive/frca10.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcbx10.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcbx11.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcbx12.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcbx14.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcbx17.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcbx7.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcbx8.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcbx9.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcc10.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcc11.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcc12.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcc14.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcf10.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcf11.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcf12.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcf14.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcr10.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcr11.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcr12.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcr14.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcr17.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcr7.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcr8.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcr9.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcsl10.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcsl11.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcsl12.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcsl14.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcsl17.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcsl7.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcsl8.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcsl9.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcslbx10.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcslbx11.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcslbx12.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcslbx14.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcslbx17.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcslbx7.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcslbx8.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcslbx9.tfm
+ texmf-dist/fonts/tfm/public/frcursive/frcw10.tfm
+ texmf-dist/metapost/frcursive/chars.mp
+ texmf-dist/tex/latex/frcursive/frcursive.sty
+ texmf-dist/tex/latex/frcursive/ot1frc.fd
+ texmf-dist/tex/latex/frcursive/t1frc.fd
+catalogue-version
+catalogue-date 2007-03-04 19:10:32 +0100
+catalogue-ctan /fonts/frcursive
+catalogue-license gpl
+
+name free-math-font-survey
+category Documentation
+revision 1633
+shortdesc A survey of available free Mathematics fonts.
+longdesc This document is a survey of the free mathematics fonts that
+longdesc are available for use with TeX and LaTeX. Examples are provided
+longdesc for each font, links to where to obtain the font, and the
+longdesc commands for loading the associated LaTeX package. The survey
+longdesc is available in both English and Vietnamese.
+docfiles size=4182912
+ texmf-doc/doc/english/free-math-font-survey/README
+ texmf-doc/doc/english/free-math-font-survey/images/antpolt.png
+ texmf-doc/doc/english/free-math-font-survey/images/anttor.png
+ texmf-doc/doc/english/free-math-font-survey/images/arev.png
+ texmf-doc/doc/english/free-math-font-survey/images/belleek.png
+ texmf-doc/doc/english/free-math-font-survey/images/chartermd.png
+ texmf-doc/doc/english/free-math-font-survey/images/cm.png
+ texmf-doc/doc/english/free-math-font-survey/images/cmbright.png
+ texmf-doc/doc/english/free-math-font-survey/images/comicsans.png
+ texmf-doc/doc/english/free-math-font-survey/images/concmath.png
+ texmf-doc/doc/english/free-math-font-survey/images/concrete.png
+ texmf-doc/doc/english/free-math-font-survey/images/fourier.png
+ texmf-doc/doc/english/free-math-font-survey/images/fouriernc.png
+ texmf-doc/doc/english/free-math-font-survey/images/garamondmd.png
+ texmf-doc/doc/english/free-math-font-survey/images/iwona.png
+ texmf-doc/doc/english/free-math-font-survey/images/kerkis.png
+ texmf-doc/doc/english/free-math-font-survey/images/kurier.png
+ texmf-doc/doc/english/free-math-font-survey/images/mathpple.png
+ texmf-doc/doc/english/free-math-font-survey/images/mathptmx.png
+ texmf-doc/doc/english/free-math-font-survey/images/mbtimes.png
+ texmf-doc/doc/english/free-math-font-survey/images/millennial.png
+ texmf-doc/doc/english/free-math-font-survey/images/pazo.png
+ texmf-doc/doc/english/free-math-font-survey/images/pxfonts.png
+ texmf-doc/doc/english/free-math-font-survey/images/txfonts.png
+ texmf-doc/doc/english/free-math-font-survey/images/utopiamd.png
+ texmf-doc/doc/english/free-math-font-survey/source/Makefile
+ texmf-doc/doc/english/free-math-font-survey/source/antpolt.tex
+ texmf-doc/doc/english/free-math-font-survey/source/anttor.tex
+ texmf-doc/doc/english/free-math-font-survey/source/arev.tex
+ texmf-doc/doc/english/free-math-font-survey/source/belleek.tex
+ texmf-doc/doc/english/free-math-font-survey/source/chartermd.tex
+ texmf-doc/doc/english/free-math-font-survey/source/cm.tex
+ texmf-doc/doc/english/free-math-font-survey/source/cmbright.tex
+ texmf-doc/doc/english/free-math-font-survey/source/comicsans.tex
+ texmf-doc/doc/english/free-math-font-survey/source/concmath.tex
+ texmf-doc/doc/english/free-math-font-survey/source/concrete.tex
+ texmf-doc/doc/english/free-math-font-survey/source/fixepsbbox
+ texmf-doc/doc/english/free-math-font-survey/source/fourier.tex
+ texmf-doc/doc/english/free-math-font-survey/source/fouriernc.tex
+ texmf-doc/doc/english/free-math-font-survey/source/garamondmd.tex
+ texmf-doc/doc/english/free-math-font-survey/source/iwona.tex
+ texmf-doc/doc/english/free-math-font-survey/source/kerkis.tex
+ texmf-doc/doc/english/free-math-font-survey/source/kurier.tex
+ texmf-doc/doc/english/free-math-font-survey/source/mathpple.tex
+ texmf-doc/doc/english/free-math-font-survey/source/mathptmx.tex
+ texmf-doc/doc/english/free-math-font-survey/source/mbtimes.tex
+ texmf-doc/doc/english/free-math-font-survey/source/millennial.tex
+ texmf-doc/doc/english/free-math-font-survey/source/pazo.tex
+ texmf-doc/doc/english/free-math-font-survey/source/pxfonts.tex
+ texmf-doc/doc/english/free-math-font-survey/source/sampleformat.tex
+ texmf-doc/doc/english/free-math-font-survey/source/survey.lyx
+ texmf-doc/doc/english/free-math-font-survey/source/survey.tex
+ texmf-doc/doc/english/free-math-font-survey/source/textfragment.tex
+ texmf-doc/doc/english/free-math-font-survey/source/txfonts.tex
+ texmf-doc/doc/english/free-math-font-survey/source/utopiamd.tex
+ texmf-doc/doc/english/free-math-font-survey/survey.html details="The survey, as an HTML file" language="en"
+ texmf-doc/doc/english/free-math-font-survey/survey.pdf details="The survey, as a PDF file" language="en"
+catalogue-version
+catalogue-date 2007-02-27 14:19:10 +0100
+catalogue-ctan /info/Free_Math_Font_Survey/en
+catalogue-license dfsg
+
+name frenchle
+category Package
+revision 4385
+shortdesc French macros, usable stand-alone or with Babel.
+longdesc This is a light (and free) version of the excellent (shareware)
+longdesc French Pro package for LaTeX, a package to typeset French
+longdesc documents according to the rules of the “Imprimerie
+longdesc Nationale”. The package comprises three LaTeX files (plus
+longdesc documentation, etc.): frenchle.sty is for use in a French-only
+longdesc document, while frenchle.ldf is for use as a babel language
+longdesc file (utilised by \usepackage[frenchle]{babel}; note that babel
+longdesc itself no longer permits such usage, but the babelfr.sty
+longdesc package in this distribution makes it possible). The full
+longdesc package with “extras” may be downloaded from
+longdesc http://frenchle.free.fr/frenchle.tar.gz
+docfiles size=635979
+ texmf-dist/doc/latex/frenchle/FAQ.pdf details="Foire aux questions" language="fr"
+ texmf-dist/doc/latex/frenchle/README.le
+ texmf-dist/doc/latex/frenchle/frenchle.pdf details="Notice d'utilisation" language="fr"
+runfiles size=92416
+ texmf-dist/tex/latex/frenchle/babelfr.sty
+ texmf-dist/tex/latex/frenchle/french.ldf
+ texmf-dist/tex/latex/frenchle/frenchle.cfg
+ texmf-dist/tex/latex/frenchle/frenchle.ldf
+ texmf-dist/tex/latex/frenchle/frenchle.sty
+catalogue-version 5.9993
+catalogue-date 2007-06-11 17:05:24 +0200
+catalogue-ctan /language/french/frenchle
+catalogue-license lppl
+
+name fribrief
+category Package
+revision 941
+shortdesc Two LaTeX classes for writing letters in German.
+docfiles size=19951
+ texmf-dist/doc/latex/fribrief/fribrief.ger details="Description of fribrief class" language="de"
+ texmf-dist/doc/latex/fribrief/k_fribri.ger details="Description of k-fribri class" language="de"
+runfiles size=9231
+ texmf-dist/tex/latex/fribrief/fribrief.cls
+ texmf-dist/tex/latex/fribrief/k_fribri.cls
+catalogue-version
+catalogue-date 2006-12-07 18:41:15 +0100
+catalogue-ctan /macros/latex/contrib/fribrief
+catalogue-license unknown
+
+name frletter
+category Package
+revision 5290
+shortdesc Typeset letters in the French style.
+longdesc A small class for typesetting letters in France. No assumption
+longdesc is made about the language in use. The class represents a small
+longdesc modification of the beletter class, which is itself a
+longdesc modification of the standard LaTeX letter class.
+docfiles size=428
+ texmf-dist/doc/latex/frletter/README details="Readme"
+runfiles size=2834
+ texmf-dist/tex/latex/frletter/frletter.cls
+catalogue-version
+catalogue-date 2007-11-07 11:03:51 +0100
+catalogue-ctan /macros/latex/contrib/frletter
+catalogue-license pd
+
+name fullblck
+category Package
+revision 942
+shortdesc Left-blocking for letter class.
+longdesc Used with the letter documentclass to set the letter in a
+longdesc fullblock style (everything at the left margin).
+docfiles size=1460
+ texmf-dist/doc/latex/fullblck/README
+srcfiles size=5783
+ texmf-dist/source/latex/fullblck/fullblck.dtx
+ texmf-dist/source/latex/fullblck/fullblck.ins
+runfiles size=1304
+ texmf-dist/tex/latex/fullblck/fullblck.sty
+catalogue-version
+catalogue-date 2007-01-05 21:30:32 +0100
+catalogue-ctan /macros/latex/contrib/fullblck
+catalogue-license unknown
+
+name fullpict
+category Package
+revision 2414
+shortdesc Full page pictures.
+longdesc The package provides picture-mode environments whose size is
+longdesc related to the size of the page. The fullpict environment takes
+longdesc arguments to specify the dimension of the picture in picture
+longdesc mode ‘unit lengths’; the value for \unitlength is defined
+longdesc by the fact that the picture is to be 90% of \textwidth.
+longdesc Similar environments halfpict (half the width of fullpict), and
+longdesc scalepict (a given percentage of the width of fullpict), are
+longdesc also defined.
+docfiles size=4879
+ texmf-dist/doc/latex/fullpict/fullpict.doc
+runfiles size=13902
+ texmf-dist/tex/latex/fullpict/fullpict.sty
+catalogue-version
+catalogue-date 2007-01-05 22:28:21 +0100
+catalogue-ctan /macros/latex/contrib/fullpict
+catalogue-license unknown
+
+name functan
+category Package
+revision 944
+shortdesc Macros for functional analysis and PDE theory
+longdesc This package provides a convenient and coherent way to deal
+longdesc with name of functional spaces (mainly Sobolev spaces) in
+longdesc functional analysis and PDE theory. It also provides a set of
+longdesc macros for dealing with norms, scalar products and convergence
+longdesc with some object oriented flavor (it gives the possibility to
+longdesc override the standard behavior of norms, ...).
+docfiles size=175767
+ texmf-dist/doc/latex/functan/README details="Readme"
+ texmf-dist/doc/latex/functan/functan.pdf details="Package documentation"
+srcfiles size=39522
+ texmf-dist/source/latex/functan/functan.drv
+ texmf-dist/source/latex/functan/functan.dtx
+ texmf-dist/source/latex/functan/functan.ins
+runfiles size=8470
+ texmf-dist/tex/latex/functan/functan.sty
+catalogue-version
+catalogue-date 2007-01-07 11:47:19 +0100
+catalogue-ctan /macros/latex/contrib/functan
+catalogue-license lppl
+
+name fundus
+category Package
+revision 1487
+shortdesc Providing LaTeX access to various font families.
+longdesc Fonts supported are Peter Vanroose's calligra and handwriting
+longdesc fonts, the Washington University cyrillic fonts, the la and lla
+longdesc children's handwriting fonts, the Computer Modern outline
+longdesc fonts, various ‘Star Trek’ fonts, Sütterlin and schwell
+longdesc handwriting fonts, the twcal calligraphic fonts, and the va
+longdesc handwriting fonts. Note that the Washington University fonts
+longdesc are now officially supported by LaTeX, as the OT2 encoding.
+docfiles size=35204
+ texmf-dist/doc/latex/fundus/calligra.dvi
+ texmf-dist/doc/latex/fundus/la.dvi
+ texmf-dist/doc/latex/fundus/outline.dvi
+ texmf-dist/doc/latex/fundus/pvscript.dvi
+ texmf-dist/doc/latex/fundus/startrek.dvi
+ texmf-dist/doc/latex/fundus/suetterl.dvi
+ texmf-dist/doc/latex/fundus/twcal.dvi
+ texmf-dist/doc/latex/fundus/va.dvi
+srcfiles size=385545
+ texmf-dist/source/latex/fundus/calligra.dtx
+ texmf-dist/source/latex/fundus/calligra.ins
+ texmf-dist/source/latex/fundus/la.dtx
+ texmf-dist/source/latex/fundus/la.ins
+ texmf-dist/source/latex/fundus/outline.dtx
+ texmf-dist/source/latex/fundus/outline.ins
+ texmf-dist/source/latex/fundus/pvscript.dtx
+ texmf-dist/source/latex/fundus/pvscript.ins
+ texmf-dist/source/latex/fundus/startrek.dtx
+ texmf-dist/source/latex/fundus/startrek.ins
+ texmf-dist/source/latex/fundus/startrek.map
+ texmf-dist/source/latex/fundus/stclass.zip
+ texmf-dist/source/latex/fundus/stmov.zip
+ texmf-dist/source/latex/fundus/suetterl.dtx
+ texmf-dist/source/latex/fundus/suetterl.ins
+ texmf-dist/source/latex/fundus/tngcril.zip
+ texmf-dist/source/latex/fundus/tngmon.zip
+ texmf-dist/source/latex/fundus/tngtit.zip
+ texmf-dist/source/latex/fundus/twcal.dtx
+ texmf-dist/source/latex/fundus/twcal.ins
+ texmf-dist/source/latex/fundus/va.dtx
+ texmf-dist/source/latex/fundus/va.ins
+runfiles size=37787
+ texmf-dist/tex/latex/fundus/calligra.sty
+ texmf-dist/tex/latex/fundus/cyr.sty
+ texmf-dist/tex/latex/fundus/la.sty
+ texmf-dist/tex/latex/fundus/ot1ocm.fd
+ texmf-dist/tex/latex/fundus/ot1ocmss.fd
+ texmf-dist/tex/latex/fundus/ot1ocmtt.fd
+ texmf-dist/tex/latex/fundus/pvscript.sty
+ texmf-dist/tex/latex/fundus/startrek.sty
+ texmf-dist/tex/latex/fundus/suetterl.sty
+ texmf-dist/tex/latex/fundus/twcal.sty
+ texmf-dist/tex/latex/fundus/va.sty
+catalogue-version
+catalogue-date 2007-01-07 11:47:19 +0100
+catalogue-ctan /macros/latex/contrib/gene/fundus
+catalogue-license unknown
+
+name futhark
+category Package
+revision 1487
+shortdesc Fonts for the Older Futhark script.
+longdesc Futhark is an ancient runic script, possibly developed from the
+longdesc Greek or Etruscan alphabets. There is an alternate Futhark
+longdesc system (not represented in this font) which may be related to
+longdesc ogham. The font is presented as MetaFont source.
+docfiles size=7136
+ texmf-dist/doc/fonts/futhark/READ.ME details="Readme"
+ texmf-dist/doc/fonts/futhark/futhold.dvi
+ texmf-dist/doc/fonts/futhark/futhold.tex
+runfiles size=13541
+ texmf-dist/fonts/source/public/futhark/futhol10.mf
+ texmf-dist/fonts/source/public/futhark/futhol20.mf
+ texmf-dist/fonts/source/public/futhark/futhol30.mf
+ texmf-dist/fonts/source/public/futhark/futhol40.mf
+ texmf-dist/fonts/source/public/futhark/futhol50.mf
+ texmf-dist/fonts/source/public/futhark/futhold.mf
+ texmf-dist/fonts/tfm/public/futhark/futhol10.tfm
+ texmf-dist/fonts/tfm/public/futhark/futhol20.tfm
+ texmf-dist/fonts/tfm/public/futhark/futhol30.tfm
+ texmf-dist/fonts/tfm/public/futhark/futhol40.tfm
+ texmf-dist/fonts/tfm/public/futhark/futhol50.tfm
+catalogue-version
+catalogue-date 2007-01-14 10:14:42 +0100
+catalogue-ctan /fonts/futhark
+catalogue-license unknown
+
+name g-brief
+category Package
+revision 1487
+shortdesc Letter document class.
+longdesc Designed for formatting formless letters in German; can also be
+longdesc used for English (by those who can read the documentation).
+longdesc There are LaTeX 2.09 documentstyle and LaTeX 2e class files for
+longdesc both an ‘old’ and a ‘new’ version of g-brief.
+docfiles size=39045
+ texmf-dist/doc/latex/g-brief/beispiel.dvi details="Example, old version" language="de"
+ texmf-dist/doc/latex/g-brief/beispiel.tex
+ texmf-dist/doc/latex/g-brief/beispiel2.dvi details="Example, new version" language="de"
+ texmf-dist/doc/latex/g-brief/beispiel2.tex
+ texmf-dist/doc/latex/g-brief/g-brief.dvi details="Package documentation" language="de"
+srcfiles size=65107
+ texmf-dist/source/latex/g-brief/g-brief.drv
+ texmf-dist/source/latex/g-brief/g-brief.dtx
+ texmf-dist/source/latex/g-brief/g-brief.ins
+runfiles size=36216
+ texmf-dist/tex/latex/g-brief/g-brief.cls
+ texmf-dist/tex/latex/g-brief/g-brief.sty
+ texmf-dist/tex/latex/g-brief/g-brief2.cls
+ texmf-dist/tex/latex/g-brief/g-brief2.sty
+catalogue-version 2.4
+catalogue-date 2006-12-11 14:57:52 +0100
+catalogue-ctan /macros/latex/contrib/g-brief
+catalogue-license lppl
+
+name galley
+category Package
+revision 616
+docfiles size=5568
+ texmf-dist/doc/latex3/galley/xhj-test.tex
+srcfiles size=180864
+ texmf-dist/source/latex3/galley/galley2.dtx
+ texmf-dist/source/latex3/galley/galley2.ins
+ texmf-dist/source/latex3/galley/xhj.dtx
+runfiles size=60221
+ texmf-dist/tex/latex3/galley/galley2.sty
+ texmf-dist/tex/latex3/galley/xhj.sty
+
+name galois
+category Package
+revision 1847
+shortdesc Typeset Galois connections.
+longdesc The package deals with connections in two-dimensional style,
+longdesc optionally in colour.
+docfiles size=110373
+ texmf-dist/doc/latex/galois/README
+ texmf-dist/doc/latex/galois/galois.pdf details="Package description"
+srcfiles size=24403
+ texmf-dist/source/latex/galois/Makefile
+ texmf-dist/source/latex/galois/galois.dtx
+ texmf-dist/source/latex/galois/galois.ins
+runfiles size=7599
+ texmf-dist/tex/latex/galois/galois.sty
+catalogue-version 1.5
+catalogue-date 2006-12-02 11:49:32 +0100
+catalogue-ctan /macros/latex/contrib/galois
+catalogue-license lppl
+
+name garamond
+category Package
+revision 90
+runfiles size=137736
+ texmf-dist/fonts/tfm/cg/garamond/cgmb.tfm
+ texmf-dist/fonts/tfm/cg/garamond/cgmb8t.tfm
+ texmf-dist/fonts/tfm/cg/garamond/cgmbi.tfm
+ texmf-dist/fonts/tfm/cg/garamond/cgmbi8t.tfm
+ texmf-dist/fonts/tfm/cg/garamond/cgmr.tfm
+ texmf-dist/fonts/tfm/cg/garamond/cgmr8t.tfm
+ texmf-dist/fonts/tfm/cg/garamond/cgmri.tfm
+ texmf-dist/fonts/tfm/cg/garamond/cgmri8t.tfm
+ texmf-dist/fonts/tfm/cg/garamond/gra10u.tfm
+ texmf-dist/fonts/tfm/cg/garamond/gra6j.tfm
+ texmf-dist/fonts/tfm/cg/garamond/gra7j.tfm
+ texmf-dist/fonts/tfm/cg/garamond/gra8u.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grh10u.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grh6j.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grh7j.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grh8u.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grk10u.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grk6j.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grk7j.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grk8u.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grl10u.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grl6j.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grl7j.tfm
+ texmf-dist/fonts/tfm/cg/garamond/grl8u.tfm
+ texmf-dist/fonts/vf/cg/garamond/cgmb.vf
+ texmf-dist/fonts/vf/cg/garamond/cgmb8t.vf
+ texmf-dist/fonts/vf/cg/garamond/cgmbi.vf
+ texmf-dist/fonts/vf/cg/garamond/cgmbi8t.vf
+ texmf-dist/fonts/vf/cg/garamond/cgmr.vf
+ texmf-dist/fonts/vf/cg/garamond/cgmr8t.vf
+ texmf-dist/fonts/vf/cg/garamond/cgmri.vf
+ texmf-dist/fonts/vf/cg/garamond/cgmri8t.vf
+
+name garuda
+category Package
+revision 98
+depend c90enc
+execute addMap garuda.map
+runfiles size=332680
+ texmf-dist/dvips/garuda/config.garuda
+ texmf-dist/fonts/afm/public/garuda/garudab.afm
+ texmf-dist/fonts/afm/public/garuda/garudabo.afm
+ texmf-dist/fonts/afm/public/garuda/garudan.afm
+ texmf-dist/fonts/afm/public/garuda/garudao.afm
+ texmf-dist/fonts/map/dvips/garuda/garuda.map
+ texmf-dist/fonts/tfm/public/garuda/fgdb8z.tfm
+ texmf-dist/fonts/tfm/public/garuda/fgdbo8z.tfm
+ texmf-dist/fonts/tfm/public/garuda/fgdo8z.tfm
+ texmf-dist/fonts/tfm/public/garuda/fgdr8z.tfm
+ texmf-dist/fonts/type1/public/garuda/garudab.pfb
+ texmf-dist/fonts/type1/public/garuda/garudabo.pfb
+ texmf-dist/fonts/type1/public/garuda/garudan.pfb
+ texmf-dist/fonts/type1/public/garuda/garudao.pfb
+
+name gastex
+category Package
+revision 3316
+docfiles size=21040
+ texmf-dist/doc/latex/gastex/README
+ texmf-dist/doc/latex/gastex/ex-beamer-gastex.tex
+ texmf-dist/doc/latex/gastex/ex-gastex.tex
+runfiles size=87984
+ texmf-dist/dvips/gastex/gastex.pro
+ texmf-dist/tex/latex/gastex/gastex.sty
+
+name gatech-thesis
+category Package
+revision 1595
+shortdesc Georgia Institute of Technology thesis class
+longdesc The output generated by using this class has been approved by
+longdesc the Georgia Tech Office of Graduate Studies. It satisfies their
+longdesc undocumented moving-target requirements in additional to the
+longdesc actual documented requirements of the June 2002 Georgia Tech
+longdesc Thesis Style Manual, as amended up to 2006.
+docfiles size=691728
+ texmf-dist/doc/latex/gatech-thesis/CHANGES
+ texmf-dist/doc/latex/gatech-thesis/COMPLIANCE
+ texmf-dist/doc/latex/gatech-thesis/COPYING
+ texmf-dist/doc/latex/gatech-thesis/ChangeLog
+ texmf-dist/doc/latex/gatech-thesis/INSTALL
+ texmf-dist/doc/latex/gatech-thesis/MANIFEST
+ texmf-dist/doc/latex/gatech-thesis/NEWS
+ texmf-dist/doc/latex/gatech-thesis/NOTES
+ texmf-dist/doc/latex/gatech-thesis/README
+ texmf-dist/doc/latex/gatech-thesis/TODO
+ texmf-dist/doc/latex/gatech-thesis/example-thesis.ps.gz
+ texmf-dist/doc/latex/gatech-thesis/example-thesis.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/README
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/CLEAN.bat
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/CLEAN.sh
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/DO_pdf.bat
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/DO_pdf.sh
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/DO_postscript.bat
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/DO_postscript.sh
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/MANIFEST
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/README
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-ack.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-bib.bib
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-chapter1.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-chapter2.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-chapter3.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-chapter4.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-chapter5.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-dedication.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-summary.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-test.eps
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-test.pdf
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne-vita.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne.pdf
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne.ps.gz
+ texmf-dist/doc/latex/gatech-thesis/julesverne/basic/jules-verne.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/CLEAN.bat
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/CLEAN.sh
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/DO_pdf.bat
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/DO_pdf.sh
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/DO_postscript.bat
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/DO_postscript.sh
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/MANIFEST
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/README
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/code/crc16.c
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/code/crc32-thehardway.java
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/code/crc32.c
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/code/crc32.cxx
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/code/crc32.java
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/code/crc8.m
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/fig/jules-verne-test.eps
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/fig/jules-verne-test.pdf
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/hack-applabel.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/hack-chaplabel.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/hack-part.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-ack.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-bib.bib
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-chapter1.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-chapter2.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-chapter3.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-chapter4.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-chapter5.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-dedication.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-gloss.bib
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-losa.bib
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-programs.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-summary.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne-vita.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne.sty
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/jules-verne.tex
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/textcompfix.sty
+ texmf-dist/doc/latex/gatech-thesis/julesverne/bellswhistles/textcompsym.sty
+runfiles size=148478
+ texmf-dist/bibtex/bib/gatech-thesis/example-thesis.bib
+ texmf-dist/bibtex/bst/gatech-thesis/gatech-thesis-losa.bst
+ texmf-dist/bibtex/bst/gatech-thesis/gatech-thesis.bst
+ texmf-dist/makeindex/gatech-thesis/gatech-thesis-index.ist
+ texmf-dist/tex/latex/gatech-thesis/gatech-thesis-gloss.sty
+ texmf-dist/tex/latex/gatech-thesis/gatech-thesis-index.sty
+ texmf-dist/tex/latex/gatech-thesis/gatech-thesis-losa.sty
+ texmf-dist/tex/latex/gatech-thesis/gatech-thesis-patch.sty
+ texmf-dist/tex/latex/gatech-thesis/gatech-thesis.cls
+catalogue-version 1.6e
+catalogue-date 2006-12-11 14:57:52 +0100
+catalogue-ctan /macros/latex/contrib/gatech-thesis
+catalogue-license gpl
+
+name gauss
+category Package
+revision 1487
+shortdesc A package for Gaussian operations.
+longdesc The gauss package provides configurable tools for producing row
+longdesc and column operations on matrices a.k.a. Gaussian operations.
+docfiles size=96209
+ texmf-dist/doc/latex/gauss/gauss-doc.dvi
+ texmf-dist/doc/latex/gauss/gauss-ex.dvi
+ texmf-dist/doc/latex/gauss/gauss-ex.tex
+ texmf-dist/doc/latex/gauss/readme.txt
+runfiles size=61496
+ texmf-dist/tex/latex/gauss/gauss.sty
+catalogue-version
+catalogue-date 2007-02-22 16:49:05 +0100
+catalogue-ctan /macros/latex/contrib/gauss
+catalogue-license lppl
+
+name gcard
+category Package
+revision 4794
+shortdesc Arrange text on a sheet to fold into a greeting card.
+longdesc The package provides a simple means of producing greeting
+longdesc cards. It arranges four panels onto a single sheet so that when
+longdesc the sheet is folded twice the four panels are arranged as front
+longdesc cover, inside left and right pages, and back cover. It uses the
+longdesc textpos package for placement on the sheet and the graphicx
+longdesc package for the necessary rotation. The four panels are set in
+longdesc minipages for formatting by the user.
+docfiles size=144476
+ texmf-dist/doc/latex/gcard/README details="Readme"
+ texmf-dist/doc/latex/gcard/gcard.pdf details="Package documentation"
+ texmf-dist/doc/latex/gcard/gcardex.tex
+ texmf-dist/doc/latex/gcard/gcardminexample.tex
+runfiles size=3067
+ texmf-dist/tex/latex/gcard/gcard.sty
+catalogue-version
+catalogue-date 2007-08-22 18:20:33 +0200
+catalogue-ctan /macros/latex/contrib/gcard
+catalogue-license lppl
+
+name gcite
+category Package
+revision 4901
+shortdesc Citations in a reader-friendly style.
+longdesc The package allows citations in the German style, which is
+longdesc considered by many to be particularly reader-friendly. The
+longdesc citation provides a small amount of bibliographic information
+longdesc in a footnote on the page where each citation is made. It
+longdesc combines a desire to eliminate unnecessary page-turning with
+longdesc the look-up efficiency afforded by numeric citations. The
+longdesc package makes use of the (still experimental) BibLaTeX package,
+longdesc and is itself also considered experimental; comment is invited.
+docfiles size=204377
+ texmf-dist/doc/latex/gcite/README details="Readme"
+ texmf-dist/doc/latex/gcite/gcite.bib
+ texmf-dist/doc/latex/gcite/gcite.pdf details="Package documentation"
+srcfiles size=20520
+ texmf-dist/source/latex/gcite/gcite.dtx
+ texmf-dist/source/latex/gcite/gcite.ins
+runfiles size=2880
+ texmf-dist/tex/latex/gcite/gcite.sty
+catalogue-version
+catalogue-date 2007-09-06 17:26:26 +0200
+catalogue-ctan /macros/latex/exptl/gcite
+catalogue-license lppl1.3
+
+name genealogy
+category Package
+revision 1487
+shortdesc A compilation genealogy font.
+longdesc A simple compilation of the genealogical symbols found in the
+longdesc wasy and gen fonts, essentially adding the male and female
+longdesc symbols to Knuth’s ‘gen’ font, and so avoiding loading
+longdesc two fonts when you need only genealogical symbols. The font is
+longdesc distributed as MetaFont source.
+docfiles size=2097
+ texmf-dist/doc/fonts/genealogy/README details="Readme"
+ texmf-dist/doc/fonts/genealogy/licence.txt
+ texmf-dist/doc/fonts/genealogy/testgen.dvi
+ texmf-dist/doc/fonts/genealogy/testgen.tex
+runfiles size=5818
+ texmf-dist/fonts/source/public/genealogy/drgen.mf
+ texmf-dist/fonts/source/public/genealogy/drgen10.mf
+ texmf-dist/fonts/tfm/public/genealogy/drgen10.tfm
+catalogue-version
+catalogue-date 2007-10-01 22:41:52 +0200
+catalogue-ctan /fonts/genealogy
+catalogue-license lppl
+
+name genmisc
+category Package
+revision 613
+runfiles size=217822
+ texmf-dist/tex/generic/genmisc/anti.tex
+ texmf-dist/tex/generic/genmisc/apldef.tex
+ texmf-dist/tex/generic/genmisc/arabic.tex
+ texmf-dist/tex/generic/genmisc/backgrnd.tex
+ texmf-dist/tex/generic/genmisc/balancedquotes.sty
+ texmf-dist/tex/generic/genmisc/chessmin.tex
+ texmf-dist/tex/generic/genmisc/compare.tex
+ texmf-dist/tex/generic/genmisc/cropmark.sty
+ texmf-dist/tex/generic/genmisc/cropmark.tex
+ texmf-dist/tex/generic/genmisc/croptest.tex
+ texmf-dist/tex/generic/genmisc/dayofweek.tex
+ texmf-dist/tex/generic/genmisc/daytime.sty
+ texmf-dist/tex/generic/genmisc/default.sty
+ texmf-dist/tex/generic/genmisc/dow.tex
+ texmf-dist/tex/generic/genmisc/emtrees.tex
+ texmf-dist/tex/generic/genmisc/endnote.tex
+ texmf-dist/tex/generic/genmisc/epigram.tex
+ texmf-dist/tex/generic/genmisc/fakebold.tex
+ texmf-dist/tex/generic/genmisc/hep.tex
+ texmf-dist/tex/generic/genmisc/hexdump.sty
+ texmf-dist/tex/generic/genmisc/inscrutable.tex
+ texmf-dist/tex/generic/genmisc/ipamacs.tex
+ texmf-dist/tex/generic/genmisc/laps.tex
+ texmf-dist/tex/generic/genmisc/letterspacing.tex
+ texmf-dist/tex/generic/genmisc/longdiv.tex
+ texmf-dist/tex/generic/genmisc/mandel.tex
+ texmf-dist/tex/generic/genmisc/mathlig.tex
+ texmf-dist/tex/generic/genmisc/nth.sty
+ texmf-dist/tex/generic/genmisc/outerhbox.sty
+ texmf-dist/tex/generic/genmisc/pagereference.tex
+ texmf-dist/tex/generic/genmisc/quotation.tex
+ texmf-dist/tex/generic/genmisc/ragged.sty
+ texmf-dist/tex/generic/genmisc/random.tex
+ texmf-dist/tex/generic/genmisc/ruler.tex
+ texmf-dist/tex/generic/genmisc/selectpage.tex
+ texmf-dist/tex/generic/genmisc/shade.sty
+ texmf-dist/tex/generic/genmisc/shadebox.tex
+ texmf-dist/tex/generic/genmisc/swrule.sty
+ texmf-dist/tex/generic/genmisc/tabto.tex
+ texmf-dist/tex/generic/genmisc/time.sty
+ texmf-dist/tex/generic/genmisc/underlin.tex
+ texmf-dist/tex/generic/genmisc/undertilde.tex
+ texmf-dist/tex/generic/genmisc/verbatim.tex
+ texmf-dist/tex/generic/genmisc/weekday.sty
+ texmf-dist/tex/generic/genmisc/wiggly.tex
+ texmf-dist/tex/generic/genmisc/zip.tex
+
+name genmpage
+category Package
+revision 2136
+shortdesc Generalization of LaTeX's minipages.
+longdesc The GenMPage package generalizes LaTeX's minipages. Keyval
+longdesc options and styles can be used to determine their appearance in
+longdesc an easy and consistent way. Includes options for paragraph
+longdesc indentation and vertical alignment with respect to the visual
+longdesc top and bottom margins.
+docfiles size=86640
+ texmf-dist/doc/latex/genmpage/README
+ texmf-dist/doc/latex/genmpage/genmpage.pdf details="Package documentation"
+srcfiles size=12302
+ texmf-dist/source/latex/genmpage/genmpage.dtx
+ texmf-dist/source/latex/genmpage/genmpage.ins
+runfiles size=4834
+ texmf-dist/tex/latex/genmpage/genmpage.sty
+catalogue-version 0.3.1
+catalogue-date 2007-03-07 00:33:49 +0100
+catalogue-ctan /macros/latex/contrib/genmpage
+catalogue-license lppl
+
+name gentle
+category Documentation
+revision 1487
+shortdesc A Gentle Introduction to TeX.
+longdesc The “Gentle Introduction” is the longest-established
+longdesc comprehensive free tutorial on the use of plain TeX.
+docfiles size=457859
+ texmf-doc/doc/english/gentle/gentle.dvi
+ texmf-doc/doc/english/gentle/gentle.tex
+catalogue-version
+catalogue-date 2007-11-14 21:18:11 +0100
+catalogue-ctan /info/gentle
+catalogue-license unknown
+
+name gentle-gr
+category Documentation
+revision 16
+docfiles size=641162
+ texmf-doc/doc/greek/gentle-gr/gentl-gr.ps.gz
+ texmf-doc/doc/greek/gentle-gr/gentl-gr.tex
+
+name geometry
+category Package
+revision 3584
+shortdesc Flexible and complete interface to document dimensions.
+longdesc The package provides an easy and flexible user interface to
+longdesc customize page layout, implementing auto-centering and auto-
+longdesc balancing mechanisms so that the users have only to give the
+longdesc least description for the page layout. For example, if you want
+longdesc to set each margin 2cm without header space, what you need is
+longdesc just \usepackage[margin=2cm,nohead]{geometry}. An important
+longdesc feature is the package's ability to communicate the paper size
+longdesc it's set up to the output (whether via DVI \specials or via
+longdesc direct interaction with PDF(La)TeX).
+docfiles size=194419
+ texmf-dist/doc/latex/geometry/ChangeLog
+ texmf-dist/doc/latex/geometry/README details="Package Readme"
+ texmf-dist/doc/latex/geometry/geometry.cfg
+ texmf-dist/doc/latex/geometry/manual.pdf details="Users' manual"
+ texmf-dist/doc/latex/geometry/sample.tex
+ texmf-dist/doc/latex/geometry/test/Makefile
+ texmf-dist/doc/latex/geometry/test/gcheck.sty
+ texmf-dist/doc/latex/geometry/test/gtest01.tex
+ texmf-dist/doc/latex/geometry/test/gtest02.tex
+ texmf-dist/doc/latex/geometry/test/gtest03.tex
+ texmf-dist/doc/latex/geometry/test/gtest04.tex
+ texmf-dist/doc/latex/geometry/test/gtest05.tex
+ texmf-dist/doc/latex/geometry/test/gtest06.tex
+ texmf-dist/doc/latex/geometry/test/gtest07.tex
+ texmf-dist/doc/latex/geometry/test/gtest08.tex
+ texmf-dist/doc/latex/geometry/test/gtest09.tex
+ texmf-dist/doc/latex/geometry/test/gtest10.tex
+ texmf-dist/doc/latex/geometry/test/gtest11.tex
+ texmf-dist/doc/latex/geometry/test/gtest12.tex
+ texmf-dist/doc/latex/geometry/test/gtest13.tex
+ texmf-dist/doc/latex/geometry/test/gtest14.tex
+ texmf-dist/doc/latex/geometry/test/gtest15.tex
+ texmf-dist/doc/latex/geometry/test/gtest16.tex
+srcfiles size=125756
+ texmf-dist/source/latex/geometry/Makefile
+ texmf-dist/source/latex/geometry/geometry.drv
+ texmf-dist/source/latex/geometry/geometry.dtx
+ texmf-dist/source/latex/geometry/geometry.ins
+ texmf-dist/source/latex/geometry/manual.drv
+runfiles size=32589
+ texmf-dist/tex/latex/geometry/geometry.sty
+catalogue-version 3.2
+catalogue-date 2006-12-05 17:23:05 +0100
+catalogue-ctan /macros/latex/contrib/geometry
+catalogue-license lppl
+
+name geomsty
+category Package
+revision 952
+shortdesc Macros used in typesetting a geometry book.
+longdesc Geomsty is a LaTeX 2.09 document style, loosely based on the
+longdesc standard book and article styles. It provides: inclusion of
+longdesc PostScript figures, and of TeX text within figures; automatic
+longdesc creation of index entries and cross-references where
+longdesc appropriate; no need to worry about fragile commands in almost
+longdesc all situations; greater versatility in defining theorem-like
+longdesc environments; proofing aids such as version numbers and a
+longdesc running index.
+docfiles size=314388
+ texmf-dist/doc/latex/geomsty/manual.pdf
+ texmf-dist/doc/latex/geomsty/manual.tex
+srcfiles size=12781
+ texmf-dist/source/latex/geomsty/Makefile
+ texmf-dist/source/latex/geomsty/PStorus.lab
+ texmf-dist/source/latex/geomsty/README
+ texmf-dist/source/latex/geomsty/driver.chg
+ texmf-dist/source/latex/geomsty/dvips.chg
+ texmf-dist/source/latex/geomsty/geomfix
+runfiles size=163819
+ texmf-dist/bibtex/bib/geomsty/manual.bib
+ texmf-dist/dvips/geomsty/illustrator.pro
+ texmf-dist/dvips/geomsty/math.pro
+ texmf-dist/tex/latex/geomsty/geom.sty
+ texmf-dist/tex/latex/geomsty/geomar10.sty
+ texmf-dist/tex/latex/geomsty/geomar11.sty
+ texmf-dist/tex/latex/geomsty/geomar12.sty
+ texmf-dist/tex/latex/geomsty/geomart.sty
+ texmf-dist/tex/latex/geomsty/geombk10.sty
+ texmf-dist/tex/latex/geomsty/geombk11.sty
+ texmf-dist/tex/latex/geomsty/geombk12.sty
+ texmf-dist/tex/latex/geomsty/geombook.sty
+ texmf-dist/tex/latex/geomsty/geomenv.sty
+ texmf-dist/tex/latex/geomsty/geomeqns.sty
+ texmf-dist/tex/latex/geomsty/geomfig.sty
+ texmf-dist/tex/latex/geomsty/geomfnt.sty
+ texmf-dist/tex/latex/geomsty/geomindx.sty
+ texmf-dist/tex/latex/geomsty/geompsfi.sty
+catalogue-version
+catalogue-date 2006-12-11 14:57:52 +0100
+catalogue-ctan /macros/latex209/contrib/geomsty
+catalogue-license unknown
+
+name german
+category Package
+revision 1487
+shortdesc Support for German typography.
+longdesc Supports the new German orthography (neue deutsche
+longdesc Rechtschreibung).
+docfiles size=154676
+ texmf-dist/doc/generic/german/00readme.1st details="Readme" language="de"
+ texmf-dist/doc/generic/german/gerdoc.dvi
+ texmf-dist/doc/generic/german/gerdoc.tex
+ texmf-dist/doc/generic/german/hyphxmpl.cfg
+srcfiles size=100793
+ texmf-dist/source/generic/german/betatest/00readme.1st
+ texmf-dist/source/generic/german/german.MISSING
+ texmf-dist/source/generic/german/german.dtx
+ texmf-dist/source/generic/german/german.ins
+runfiles size=51085
+ texmf-dist/tex/generic/german/german.sty
+ texmf-dist/tex/generic/german/ngerman.sty
+catalogue-version 2.5e
+catalogue-date 2007-01-04 14:33:27 +0100
+catalogue-ctan /language/german
+catalogue-license lppl
+
+name germbib
+category Package
+revision 2367
+shortdesc German variants of standard BibTeX styles.
+longdesc A development of the (old) german.sty, this bundle provides
+longdesc German packages, BibTeX styles and documentary examples, for
+longdesc writing documents with bibliographies. The author has since
+longdesc developed the babelbib bundle, which (he asserts) supersedes
+longdesc germbib.
+docfiles size=137445
+ texmf-dist/doc/bibtex/germbib/README.bibgerm
+ texmf-dist/doc/bibtex/germbib/apalike.doc
+ texmf-dist/doc/bibtex/germbib/apalike.germbib_sty
+ texmf-dist/doc/bibtex/germbib/apalike.tex
+ texmf-dist/doc/bibtex/germbib/btxdoc.tex
+ texmf-dist/doc/bibtex/germbib/btxhak.tex
+ texmf-dist/doc/bibtex/germbib/gerbibtx.bib
+ texmf-dist/doc/bibtex/germbib/gerbibtx.tex
+ texmf-dist/doc/bibtex/germbib/gerxampl.bib
+ texmf-dist/doc/bibtex/germbib/schaum.bib
+ texmf-dist/doc/bibtex/germbib/testbibgerm.tex
+ texmf-dist/doc/bibtex/germbib/testgerb.tex
+ texmf-dist/doc/bibtex/germbib/xampl.bib
+runfiles size=139693
+ texmf-dist/bibtex/bst/germbib/gerabbrv.bst
+ texmf-dist/bibtex/bst/germbib/geralpha.bst
+ texmf-dist/bibtex/bst/germbib/gerapali.bst
+ texmf-dist/bibtex/bst/germbib/gerplain.bst
+ texmf-dist/bibtex/bst/germbib/gerunsrt.bst
+ texmf-dist/tex/latex/germbib/bibgerm.sty
+ texmf-dist/tex/latex/germbib/mynormal.sty
+catalogue-version
+catalogue-date 2006-12-11 14:57:52 +0100
+catalogue-ctan /biblio/bibtex/contrib/germbib
+catalogue-license unknown
+
+name ginpenc
+category Package
+revision 4613
+shortdesc Modification of inputenc for German.
+longdesc If the inputenc is used and German umlauts are input directly,
+longdesc they are converted to the LICR representation \"a (etc.). This
+longdesc breaks the sort algorithm of makeindex, for instance. Ginpenc
+longdesc converts umlauts and the sharp-s to the short forms defined by
+longdesc babel, e.g., "a instead, if the text is typeset in German.
+docfiles size=96270
+ texmf-dist/doc/latex/ginpenc/README details="Readme"
+ texmf-dist/doc/latex/ginpenc/ginpenc.pdf details="Package documentation"
+ texmf-dist/doc/latex/ginpenc/news-message.txt
+ texmf-dist/doc/latex/ginpenc/testginpenc.tex
+srcfiles size=23291
+ texmf-dist/source/latex/ginpenc/Makefile
+ texmf-dist/source/latex/ginpenc/ginpenc.dtx
+ texmf-dist/source/latex/ginpenc/ginpenc.ins
+runfiles size=23115
+ texmf-dist/tex/latex/ginpenc/ansinew.gie
+ texmf-dist/tex/latex/ginpenc/applemac.gie
+ texmf-dist/tex/latex/ginpenc/ascii.gie
+ texmf-dist/tex/latex/ginpenc/cp1250.gie
+ texmf-dist/tex/latex/ginpenc/cp1252.gie
+ texmf-dist/tex/latex/ginpenc/cp437.gie
+ texmf-dist/tex/latex/ginpenc/cp437de.gie
+ texmf-dist/tex/latex/ginpenc/cp850.gie
+ texmf-dist/tex/latex/ginpenc/cp852.gie
+ texmf-dist/tex/latex/ginpenc/cp865.gie
+ texmf-dist/tex/latex/ginpenc/decmulti.gie
+ texmf-dist/tex/latex/ginpenc/ginpenc.sty
+ texmf-dist/tex/latex/ginpenc/latin1.gie
+ texmf-dist/tex/latex/ginpenc/latin2.gie
+ texmf-dist/tex/latex/ginpenc/latin3.gie
+ texmf-dist/tex/latex/ginpenc/latin5.gie
+ texmf-dist/tex/latex/ginpenc/latin9.gie
+ texmf-dist/tex/latex/ginpenc/next.gie
+catalogue-version 1.0
+catalogue-date 2007-07-08 11:00:26 +0200
+catalogue-ctan /macros/latex/contrib/ginpenc
+catalogue-license lppl
+
+name gloss
+category Package
+revision 1487
+shortdesc Create glossaries using BibTeX.
+longdesc A glossary package using BibTeX with \cite replaced by \gloss.
+docfiles size=54031
+ texmf-dist/doc/latex/gloss/gloss.dvi
+ texmf-dist/doc/latex/gloss/gloss.tex
+ texmf-dist/doc/latex/gloss/readme
+ texmf-dist/doc/latex/gloss/sample.dvi
+ texmf-dist/doc/latex/gloss/sample.tex
+runfiles size=22612
+ texmf-dist/bibtex/bib/gloss/glsbase.bib
+ texmf-dist/bibtex/bib/gloss/sample.bib
+ texmf-dist/bibtex/bst/gloss/glsplain.bst
+ texmf-dist/bibtex/bst/gloss/glsshort.bst
+ texmf-dist/tex/latex/gloss/gloss.sty
+catalogue-version 1.5.2
+catalogue-date 2006-12-11 14:57:52 +0100
+catalogue-ctan /macros/latex/contrib/gloss
+catalogue-license lppl
+
+name glossaries
+category Package
+revision 5177
+shortdesc Create glossaries and lists of acronyms.
+longdesc The glossaries package supports acronyms and multiple
+longdesc glossaries. New entries are defined to have a name and
+longdesc description (and optionally an associated symbol). Plural forms
+longdesc can also be specified. New glossary styles can be defined, and
+longdesc preambles and postambles can be specified. There is provision
+longdesc for loading a database of terms, only terms used in the text
+longdesc will be added to the relevant glossary. The package supersedes
+longdesc the author‘s glossary package.
+docfiles size=794373
+ texmf-dist/doc/latex/glossaries/README details="Readme"
+ texmf-dist/doc/latex/glossaries/doc/CHANGES
+ texmf-dist/doc/latex/glossaries/doc/database1.tex
+ texmf-dist/doc/latex/glossaries/doc/database2.tex
+ texmf-dist/doc/latex/glossaries/doc/glossaries.pdf details="Package documentation"
+ texmf-dist/doc/latex/glossaries/doc/glossary2glossaries.html
+ texmf-dist/doc/latex/glossaries/doc/glossary2glossaries.pdf details="How to upgrade from glossary.sty"
+ texmf-dist/doc/latex/glossaries/doc/sample.tex
+ texmf-dist/doc/latex/glossaries/doc/sample4col.tex
+ texmf-dist/doc/latex/glossaries/doc/sampleAcr.tex
+ texmf-dist/doc/latex/glossaries/doc/sampleAcrDesc.tex
+ texmf-dist/doc/latex/glossaries/doc/sampleDB.tex
+ texmf-dist/doc/latex/glossaries/doc/sampleEq.tex
+ texmf-dist/doc/latex/glossaries/doc/sampleEqPg.tex
+ texmf-dist/doc/latex/glossaries/doc/sampleNtn.tex
+ texmf-dist/doc/latex/glossaries/doc/sampleSec.tex
+ texmf-dist/doc/latex/glossaries/glossaries.perl
+ texmf-dist/doc/latex/glossaries/latex2html/glossaries.perl
+ texmf-dist/doc/latex/glossaries/scripts/makeglossaries
+ texmf-dist/doc/latex/glossaries/scripts/makeglossaries.bat
+srcfiles size=213634
+ texmf-dist/source/latex/glossaries/glossaries.dtx
+ texmf-dist/source/latex/glossaries/glossaries.ins
+runfiles size=54666
+ texmf-dist/tex/latex/glossaries/glossaries.sty
+ texmf-dist/tex/latex/glossaries/glossary-hypernav.sty
+ texmf-dist/tex/latex/glossaries/glossary-list.sty
+ texmf-dist/tex/latex/glossaries/glossary-long.sty
+ texmf-dist/tex/latex/glossaries/glossary-super.sty
+catalogue-version 1.08
+catalogue-date 2007-10-13 20:37:03 +0200
+catalogue-ctan /macros/latex/contrib/glossaries
+catalogue-license lppl
+
+name glyphlist
+category Package
+revision 4938
+runfiles size=81586
+ texmf-dist/fonts/map/glyphlist/glyphlist.txt
+ texmf-dist/fonts/map/glyphlist/texglyphlist.txt
+
+name gmdoc
+category Package
+revision 5194
+shortdesc Documentation of LaTeX packages.
+longdesc A LaTeX package and an example class for documenting (La)TeX
+longdesc packages, document classes, .dtx etc., providing hyperlinks.
+longdesc The package is believed to be compatible with doc and permits
+longdesc minimal markup of code (the macrocode environment is no longer
+longdesc necessary). The package provides automatic detection of
+longdesc definitions (detecting such things as \def, \newcommand,
+longdesc \DeclareOption etc.). The package needs hyperref and the
+longdesc author’s three ‘‘basic’ packages: gmutils, gmverb and
+longdesc gmiflink. As a bonus, the driver files are added that typeset
+longdesc the LaTeX (TeXLive2005) Base.
+docfiles size=2500862
+ texmf-dist/doc/latex/gmdoc/README details="README"
+ texmf-dist/doc/latex/gmdoc/basedrivers/doc_gmdoc.tex
+ texmf-dist/doc/latex/gmdoc/basedrivers/docstrip_gmdoc.tex
+ texmf-dist/doc/latex/gmdoc/basedrivers/gmeometric.sty
+ texmf-dist/doc/latex/gmdoc/basedrivers/gmsource2e.ist
+ texmf-dist/doc/latex/gmdoc/basedrivers/oldcomm.sty
+ texmf-dist/doc/latex/gmdoc/basedrivers/source2e_gmdoc.tex
+ texmf-dist/doc/latex/gmdoc/gmdocDoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/gmdoc/gmdocDoc.tex
+runfiles size=279621
+ texmf-dist/makeindex/gmdoc/gmglo.ist
+ texmf-dist/tex/latex/gmdoc/gmdoc.sty
+ texmf-dist/tex/latex/gmdoc/gmdocc.cls
+catalogue-version v0.99g
+catalogue-date 2007-11-17 22:00:17 +0100
+catalogue-ctan /macros/latex/contrib/gmdoc
+catalogue-license lppl
+
+name gmeometric
+category Package
+revision 5451
+shortdesc Change page size wherever it's safe
+longdesc Changing the size of the typeset area is well-known to be a
+longdesc dangerous operation in TeX documents. This package identifies
+longdesc the circumstances where the \geometry command of the geometry
+longdesc package may safely be used, (other, of course, than in the
+longdesc preamble of a document) and provides a mechanism for using it.
+longdesc The package makes use of the author’s gmutils package.
+docfiles size=248566
+ texmf-dist/doc/latex/gmeometric/README details="Readme"
+ texmf-dist/doc/latex/gmeometric/gmeometricDoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/gmeometric/gmeometricDoc.tex
+runfiles size=5552
+ texmf-dist/tex/latex/gmeometric/gmeometric.sty
+catalogue-version 0.71
+catalogue-date 2007-11-17 20:38:46 +0100
+catalogue-ctan /macros/latex/contrib/gmeometric
+catalogue-license lppl
+
+name gmiflink
+category Package
+revision 2802
+shortdesc Simplify usage of \hypertarget and \hyperlink.
+longdesc Three hyperref-based macros that simplify usage of \hypertarget
+longdesc and \hyperlink: one argument instead of the same one twice.
+longdesc Also \gmiflink and \gmifref which typeset plain text instead of
+longdesc generating an error or printing ‘??’ if there is no
+longdesc respective hypertarget or label.
+docfiles size=227396
+ texmf-dist/doc/latex/gmiflink/README details="README"
+ texmf-dist/doc/latex/gmiflink/gmiflinkDoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/gmiflink/gmiflinkDoc.tex
+runfiles size=6373
+ texmf-dist/tex/latex/gmiflink/gmiflink.sty
+catalogue-version v0.97
+catalogue-date 2007-03-07 00:33:49 +0100
+catalogue-ctan /macros/latex/contrib/gmiflink
+catalogue-license lppl
+
+name gmutils
+category Package
+revision 5452
+shortdesc Support macros for other packages.
+longdesc Miscellaneous macros used by others of the author’s packages.
+longdesc Contents of the package: \newgif and other globals; \@ifnextcat
+longdesc and \@ifXeTeX; \(Re)storeMacro(s) to override redefinitions;
+longdesc \afterfi and friends; commands from relsize, etc.; “almost an
+longdesc environment” or redefinition of \begin (\begin* doesn't check
+longdesc if the argument environment is defined).
+docfiles size=755594
+ texmf-dist/doc/latex/gmutils/README details="README"
+ texmf-dist/doc/latex/gmutils/gmutilsDoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/gmutils/gmutilsDoc.tex
+runfiles size=60759
+ texmf-dist/tex/latex/gmutils/gmutils.sty
+catalogue-version v0.85
+catalogue-date 2007-11-17 21:57:01 +0100
+catalogue-ctan /macros/latex/contrib/gmutils
+catalogue-license lppl
+
+name gmverb
+category Package
+revision 4205
+shortdesc A variant of LaTeX \verb, verbatim and shortvrb.
+longdesc A redefinition of \verb and verbatim so that long lines are
+longdesc breakable before \ and after { with % as ‘hyphen’. Allows
+longdesc you to define your own verbatim-like environments (not too
+longdesc long!) and allows you to declare any single character as a
+longdesc shorthand as in the \verb command of the shortvrb package of
+longdesc the LaTeX distribution. The package depends on the gmutils
+longdesc package.
+docfiles size=463878
+ texmf-dist/doc/latex/gmverb/README details="README"
+ texmf-dist/doc/latex/gmverb/gmverbDoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/gmverb/gmverbDoc.tex
+runfiles size=24312
+ texmf-dist/tex/latex/gmverb/gmverb.sty
+catalogue-version v0.84
+catalogue-date 2007-11-17 21:57:01 +0100
+catalogue-ctan /macros/latex/contrib/gmverb
+catalogue-license lppl
+
+name gnuplottex
+category Package
+revision 5198
+shortdesc Embed Gnuplot commands in LaTeX documents.
+longdesc Gnuplot code is extracted from the document and written to
+longdesc .gnuplot files. Then, if shell escape is enabled, the graph
+longdesc files are automatically processed and converted to PostScript
+longdesc or PDF files, which will then be included. If shell escape is
+longdesc disabled, the user will have to manually run the files through
+longdesc gnuplot and re-run the LaTeX job.
+docfiles size=111618
+ texmf-dist/doc/latex/gnuplottex/README
+ texmf-dist/doc/latex/gnuplottex/example-pdf.tex
+ texmf-dist/doc/latex/gnuplottex/example.tex
+ texmf-dist/doc/latex/gnuplottex/gnuplottex.pdf details="Package documentation"
+ texmf-dist/doc/latex/gnuplottex/gpl.txt
+srcfiles size=14818
+ texmf-dist/source/latex/gnuplottex/gnuplottex.dtx
+ texmf-dist/source/latex/gnuplottex/gnuplottex.ins
+runfiles size=5262
+ texmf-dist/tex/latex/gnuplottex/gnuplottex.sty
+catalogue-version 0.4.2
+catalogue-date 2007-10-13 14:36:21 +0200
+catalogue-ctan /macros/latex/contrib/gnuplottex
+catalogue-license gpl
+
+name go
+category Package
+revision 957
+shortdesc Fonts and macros for typesetting go games.
+longdesc The macros provide for nothing more complicated than the
+longdesc standard 19x19 board; the fonts are written in MetaFont.
+srcfiles size=11053
+ texmf-dist/source/latex/go/gomaps.ltx
+runfiles size=189452
+ texmf-dist/fonts/source/public/go/go.mf
+ texmf-dist/fonts/source/public/go/go10.mf
+ texmf-dist/fonts/source/public/go/go15.mf
+ texmf-dist/fonts/source/public/go/go1bla10.mf
+ texmf-dist/fonts/source/public/go/go1bla15.mf
+ texmf-dist/fonts/source/public/go/go1bla20.mf
+ texmf-dist/fonts/source/public/go/go1black.mf
+ texmf-dist/fonts/source/public/go/go1whi10.mf
+ texmf-dist/fonts/source/public/go/go1whi15.mf
+ texmf-dist/fonts/source/public/go/go1whi20.mf
+ texmf-dist/fonts/source/public/go/go1white.mf
+ texmf-dist/fonts/source/public/go/go20.mf
+ texmf-dist/fonts/source/public/go/go2bla10.mf
+ texmf-dist/fonts/source/public/go/go2bla15.mf
+ texmf-dist/fonts/source/public/go/go2bla20.mf
+ texmf-dist/fonts/source/public/go/go2black.mf
+ texmf-dist/fonts/source/public/go/go2whi10.mf
+ texmf-dist/fonts/source/public/go/go2whi15.mf
+ texmf-dist/fonts/source/public/go/go2whi20.mf
+ texmf-dist/fonts/source/public/go/go2white.mf
+ texmf-dist/fonts/source/public/go/gosign50.mf
+ texmf-dist/fonts/tfm/public/go/go10.tfm
+ texmf-dist/fonts/tfm/public/go/go15.tfm
+ texmf-dist/fonts/tfm/public/go/go1bla10.tfm
+ texmf-dist/fonts/tfm/public/go/go1bla15.tfm
+ texmf-dist/fonts/tfm/public/go/go1bla20.tfm
+ texmf-dist/fonts/tfm/public/go/go1whi10.tfm
+ texmf-dist/fonts/tfm/public/go/go1whi15.tfm
+ texmf-dist/fonts/tfm/public/go/go1whi20.tfm
+ texmf-dist/fonts/tfm/public/go/go20.tfm
+ texmf-dist/fonts/tfm/public/go/go2bla10.tfm
+ texmf-dist/fonts/tfm/public/go/go2bla15.tfm
+ texmf-dist/fonts/tfm/public/go/go2bla20.tfm
+ texmf-dist/fonts/tfm/public/go/go2whi10.tfm
+ texmf-dist/fonts/tfm/public/go/go2whi15.tfm
+ texmf-dist/fonts/tfm/public/go/go2whi20.tfm
+ texmf-dist/fonts/tfm/public/go/gosign50.tfm
+ texmf-dist/tex/latex/go/go.sty
+catalogue-version
+catalogue-date 2006-12-11 14:57:52 +0100
+catalogue-ctan /fonts/go
+catalogue-license pd
+
+name gost
+category Package
+revision 106
+shortdesc BibTeX styles to format according to GOST.
+longdesc BibTeX styles to format bibliography in English, Russian and
+longdesc Ukrainian according to GOST 7.1-84 and GOST 7.80-00.
+docfiles size=454289
+ texmf-dist/doc/bibtex/gost/README details="Readme"
+ texmf-dist/doc/bibtex/gost/gost71.pdf details="Preparing biblio in GOST 7.1-1984:"
+ texmf-dist/doc/bibtex/gost/gost780.pdf details="Preparing biblio in GOST 7.80-2000:"
+srcfiles size=33493
+ texmf-dist/source/bibtex/gost/gost.dtx
+ texmf-dist/source/bibtex/gost/gost.ins
+runfiles size=137096
+ texmf-dist/bibtex/bst/gost/gost71s.bst
+ texmf-dist/bibtex/bst/gost/gost71u.bst
+ texmf-dist/bibtex/bst/gost/gost780s.bst
+ texmf-dist/bibtex/bst/gost/gost780u.bst
+ texmf-dist/bibtex/csf/gost/cp1251.csf
+ texmf-dist/bibtex/csf/gost/koi8u.csf
+ texmf-dist/bibtex/csf/gost/ruscii.csf
+catalogue-version 2005.08.12
+catalogue-date 2007-01-04 14:33:27 +0100
+catalogue-ctan /biblio/bibtex/contrib/gost
+catalogue-license lppl
+
+name gothic
+category Package
+revision 101
+shortdesc A collection of old German-style fonts.
+longdesc A collection of fonts that reproduce those used in "old German"
+longdesc printing. The set comprises Gothic, Schwabacher and Fraktur
+longdesc fonts, a pair of handwriting fonts, Süetterlin and Schwell,
+longdesc and a font containing decorative initials. In addition, there
+longdesc are two re-encoding packages for Haralambous's fonts, providing
+longdesc T1, using virtual fonts, and OT1 and T1, using Metafont.
+execute addMap yfrak.map
+docfiles size=1109
+ texmf-dist/doc/fonts/gothic/README
+runfiles size=1084611
+ texmf-dist/dvips/gothic/config.yfrak
+ texmf-dist/fonts/afm/public/gothic/yfrak.afm
+ texmf-dist/fonts/afm/public/gothic/ygoth.afm
+ texmf-dist/fonts/afm/public/gothic/yswab.afm
+ texmf-dist/fonts/map/dvips/gothic/yfrak.map
+ texmf-dist/fonts/source/public/gothic/cmfrabase.mf
+ texmf-dist/fonts/source/public/gothic/cmfrak.mf
+ texmf-dist/fonts/source/public/gothic/cmfraklow.mf
+ texmf-dist/fonts/source/public/gothic/cmfrakmis.mf
+ texmf-dist/fonts/source/public/gothic/cmfraknum.mf
+ texmf-dist/fonts/source/public/gothic/cmfrakoth.mf
+ texmf-dist/fonts/source/public/gothic/cmfrakupp.mf
+ texmf-dist/fonts/source/public/gothic/schwell.mf
+ texmf-dist/fonts/source/public/gothic/su-lig.mf
+ texmf-dist/fonts/source/public/gothic/su-low.mf
+ texmf-dist/fonts/source/public/gothic/su-spec.mf
+ texmf-dist/fonts/source/public/gothic/su-upp.mf
+ texmf-dist/fonts/source/public/gothic/suet14.mf
+ texmf-dist/fonts/source/public/gothic/xxfrak.mf
+ texmf-dist/fonts/source/public/gothic/yfrabase.mf
+ texmf-dist/fonts/source/public/gothic/yfrak.mf
+ texmf-dist/fonts/source/public/gothic/yfraklow.mf
+ texmf-dist/fonts/source/public/gothic/yfrakmis.mf
+ texmf-dist/fonts/source/public/gothic/yfraknum.mf
+ texmf-dist/fonts/source/public/gothic/yfrakoth.mf
+ texmf-dist/fonts/source/public/gothic/yfrakupp.mf
+ texmf-dist/fonts/source/public/gothic/ygotbase.mf
+ texmf-dist/fonts/source/public/gothic/ygoth.mf
+ texmf-dist/fonts/source/public/gothic/ygothgen.mf
+ texmf-dist/fonts/source/public/gothic/ygothlig.mf
+ texmf-dist/fonts/source/public/gothic/ygothlow.mf
+ texmf-dist/fonts/source/public/gothic/ygothmis.mf
+ texmf-dist/fonts/source/public/gothic/ygothnum.mf
+ texmf-dist/fonts/source/public/gothic/ygothupp.mf
+ texmf-dist/fonts/source/public/gothic/yinit.mf
+ texmf-dist/fonts/source/public/gothic/yinitA.mf
+ texmf-dist/fonts/source/public/gothic/yinitB.mf
+ texmf-dist/fonts/source/public/gothic/yinitC.mf
+ texmf-dist/fonts/source/public/gothic/yinitD.mf
+ texmf-dist/fonts/source/public/gothic/yinitE.mf
+ texmf-dist/fonts/source/public/gothic/yinitF.mf
+ texmf-dist/fonts/source/public/gothic/yinitG.mf
+ texmf-dist/fonts/source/public/gothic/yinitH.mf
+ texmf-dist/fonts/source/public/gothic/yinitJ.mf
+ texmf-dist/fonts/source/public/gothic/yinitK.mf
+ texmf-dist/fonts/source/public/gothic/yinitL.mf
+ texmf-dist/fonts/source/public/gothic/yinitM.mf
+ texmf-dist/fonts/source/public/gothic/yinitN.mf
+ texmf-dist/fonts/source/public/gothic/yinitO.mf
+ texmf-dist/fonts/source/public/gothic/yinitP.mf
+ texmf-dist/fonts/source/public/gothic/yinitQ.mf
+ texmf-dist/fonts/source/public/gothic/yinitR.mf
+ texmf-dist/fonts/source/public/gothic/yinitS.mf
+ texmf-dist/fonts/source/public/gothic/yinitT.mf
+ texmf-dist/fonts/source/public/gothic/yinitU.mf
+ texmf-dist/fonts/source/public/gothic/yinitV.mf
+ texmf-dist/fonts/source/public/gothic/yinitW.mf
+ texmf-dist/fonts/source/public/gothic/yinitX.mf
+ texmf-dist/fonts/source/public/gothic/yinitY.mf
+ texmf-dist/fonts/source/public/gothic/yinitZ.mf
+ texmf-dist/fonts/source/public/gothic/yinitas.mf
+ texmf-dist/fonts/source/public/gothic/yinitdd.mf
+ texmf-dist/fonts/source/public/gothic/yintbase.mf
+ texmf-dist/fonts/source/public/gothic/ysmfrak.mf
+ texmf-dist/fonts/source/public/gothic/yswab.mf
+ texmf-dist/fonts/source/public/gothic/yswabase.mf
+ texmf-dist/fonts/source/public/gothic/yswablow.mf
+ texmf-dist/fonts/source/public/gothic/yswabmis.mf
+ texmf-dist/fonts/source/public/gothic/yswabnum.mf
+ texmf-dist/fonts/source/public/gothic/yswabupp.mf
+ texmf-dist/fonts/tfm/public/gothic/cmfrak.tfm
+ texmf-dist/fonts/tfm/public/gothic/schwell.tfm
+ texmf-dist/fonts/tfm/public/gothic/suet14.tfm
+ texmf-dist/fonts/tfm/public/gothic/tfrak.tfm
+ texmf-dist/fonts/tfm/public/gothic/tfrakls.tfm
+ texmf-dist/fonts/tfm/public/gothic/tgoth.tfm
+ texmf-dist/fonts/tfm/public/gothic/tswab.tfm
+ texmf-dist/fonts/tfm/public/gothic/yfrak.tfm
+ texmf-dist/fonts/tfm/public/gothic/ygoth.tfm
+ texmf-dist/fonts/tfm/public/gothic/yinit.tfm
+ texmf-dist/fonts/tfm/public/gothic/yinitas.tfm
+ texmf-dist/fonts/tfm/public/gothic/yinitdd.tfm
+ texmf-dist/fonts/tfm/public/gothic/yswab.tfm
+ texmf-dist/fonts/type1/public/gothic/yfrak.pfb
+ texmf-dist/fonts/type1/public/gothic/ygoth.pfb
+ texmf-dist/fonts/type1/public/gothic/yswab.pfb
+ texmf-dist/fonts/vf/public/gothic/tfrak.vf
+ texmf-dist/fonts/vf/public/gothic/tfrakls.vf
+ texmf-dist/fonts/vf/public/gothic/tgoth.vf
+ texmf-dist/fonts/vf/public/gothic/tswab.vf
+catalogue-version
+catalogue-date 2007-02-17 23:02:11 +0100
+catalogue-ctan /fonts/gothic
+catalogue-license unknown
+
+name graphics
+category Package
+revision 2132
+shortdesc Standard LaTeX graphics.
+longdesc The primary LaTeX package for the support of the inclusion of
+longdesc graphics generally produced with other tools. This package aims
+longdesc to give a consistent interface to including the file types that
+longdesc are understood by your printer driver. For extended
+longdesc documentation see epslatex.
+docfiles size=1117412
+ texmf-dist/doc/latex/graphics/00readme.txt
+ texmf-dist/doc/latex/graphics/changes.txt
+ texmf-dist/doc/latex/graphics/color.pdf
+ texmf-dist/doc/latex/graphics/drivers.pdf
+ texmf-dist/doc/latex/graphics/epsfig.pdf
+ texmf-dist/doc/latex/graphics/graphics.pdf
+ texmf-dist/doc/latex/graphics/graphicx.pdf
+ texmf-dist/doc/latex/graphics/grfguide.pdf
+ texmf-dist/doc/latex/graphics/keyval.pdf
+ texmf-dist/doc/latex/graphics/lscape.pdf
+ texmf-dist/doc/latex/graphics/trig.pdf
+srcfiles size=238718
+ texmf-dist/source/latex/graphics/color.dtx
+ texmf-dist/source/latex/graphics/drivers.dtx
+ texmf-dist/source/latex/graphics/epsfig.dtx
+ texmf-dist/source/latex/graphics/graphics-drivers.ins
+ texmf-dist/source/latex/graphics/graphics.dtx
+ texmf-dist/source/latex/graphics/graphics.ins
+ texmf-dist/source/latex/graphics/graphicx.dtx
+ texmf-dist/source/latex/graphics/grfguide.tex
+ texmf-dist/source/latex/graphics/keyval.dtx
+ texmf-dist/source/latex/graphics/lscape.dtx
+ texmf-dist/source/latex/graphics/trig.dtx
+runfiles size=92110
+ texmf-dist/tex/latex/graphics/color.sty
+ texmf-dist/tex/latex/graphics/dvipdf.def
+ texmf-dist/tex/latex/graphics/dvips.def
+ texmf-dist/tex/latex/graphics/dvipsnam.def
+ texmf-dist/tex/latex/graphics/dvipsone.def
+ texmf-dist/tex/latex/graphics/dviwin.def
+ texmf-dist/tex/latex/graphics/emtex.def
+ texmf-dist/tex/latex/graphics/epsfig.sty
+ texmf-dist/tex/latex/graphics/graphics.sty
+ texmf-dist/tex/latex/graphics/graphicx.sty
+ texmf-dist/tex/latex/graphics/keyval.sty
+ texmf-dist/tex/latex/graphics/lscape.sty
+ texmf-dist/tex/latex/graphics/pctex32.def
+ texmf-dist/tex/latex/graphics/pctexhp.def
+ texmf-dist/tex/latex/graphics/pctexps.def
+ texmf-dist/tex/latex/graphics/pctexwin.def
+ texmf-dist/tex/latex/graphics/tcidvi.def
+ texmf-dist/tex/latex/graphics/trig.sty
+ texmf-dist/tex/latex/graphics/truetex.def
+ texmf-dist/tex/xelatex/graphics/xetex.def
+catalogue-version
+catalogue-date $Author: robin $
+catalogue-ctan /macros/latex/required/graphics
+catalogue-license lppl
+
+name graphicx-psmin
+category Package
+revision 959
+shortdesc Reduce size of PostScript files by not repeating images.
+longdesc This package is an extension of the standard graphics bundle
+longdesc and provides a way to include repeated PostScript graphics (ps,
+longdesc eps) only once in a PostScript document. This provides a way to
+longdesc get smaller PostScript documents when having, for instance, a
+longdesc logo on every page. This package only works when post-processed
+longdesc with dvips, which should at least have version 5.95b. The
+longdesc difference for a resulting distilled PDF file is minimal (as
+longdesc Ghostscript and Adobe Distiller only include a single copy of
+longdesc each graphics file, anyway).
+docfiles size=102801
+ texmf-dist/doc/latex/graphicx-psmin/README details="Package README"
+ texmf-dist/doc/latex/graphicx-psmin/graphicx-psmin.pdf details="Package documentation"
+srcfiles size=23198
+ texmf-dist/source/latex/graphicx-psmin/graphicx-psmin.dtx
+runfiles size=5805
+ texmf-dist/tex/latex/graphicx-psmin/graphicx-psmin.sty
+catalogue-version 1.1
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/graphicx-psmin
+catalogue-license lppl
+
+name greek
+category Package
+revision 960
+runfiles size=4419
+ texmf-dist/tex/latex/greek/iso-8859-7.def
+
+name greektex
+category Package
+revision 961
+shortdesc Fonts for typesetting Greek/English documents.
+longdesc The fonts are based on Silvio Levy’s classical Greek fonts;
+longdesc macros and Greek hyphenation patterns for the fonts’ encoding
+longdesc are also provided.
+docfiles size=730009
+ texmf-dist/doc/latex/greektex/README details="Readme"
+ texmf-dist/doc/latex/greektex/gehyphw.gr
+ texmf-dist/doc/latex/greektex/greektexdoc.pdf details="Package documentation" language="el"
+ texmf-dist/doc/latex/greektex/greektexdoc.tex
+ texmf-dist/doc/latex/greektex/ywcl.zip
+runfiles size=27490
+ texmf-dist/tex/latex/greektex/greektex.sty
+catalogue-version
+catalogue-date 2007-11-12 23:53:08 +0100
+catalogue-ctan /fonts/greek/greektex
+catalogue-license pd
+
+name greenpoint
+category Package
+revision 5006
+shortdesc The Green Point logo.
+longdesc A MetaFont-implementation of the logo commonly known as ‘Der
+longdesc Grüne Punkt’ (‘The Green Point’). In Austria, it can be
+longdesc found on nearly every bottle. It should not be confused with
+longdesc the ‘Recycle’-logo, implemented by Ian Green.
+docfiles size=993
+ texmf-dist/doc/fonts/greenpoint/ChangeLog
+ texmf-dist/doc/fonts/greenpoint/README
+runfiles size=2360
+ texmf-dist/fonts/source/public/greenpoint/greenpoint.mf
+ texmf-dist/fonts/tfm/public/greenpoint/greenpoint.tfm
+catalogue-version
+catalogue-date 2006-12-09 16:48:33 +0100
+catalogue-ctan /fonts/greenpoint
+catalogue-license gpl
+
+name grfpaste
+category Package
+revision 1487
+shortdesc Include fragments of a dvi file.
+longdesc Provides a mechanism to include fragments of dvi files with the
+longdesc graphicx package, so that you can use \includegraphics to
+longdesc include dvi files. The package requires the dvipaste program.
+docfiles size=15236
+ texmf-dist/doc/latex/grfpaste/dvipaste.txt
+ texmf-dist/doc/latex/grfpaste/grfp1.dat
+ texmf-dist/doc/latex/grfpaste/grfp1.dvi
+ texmf-dist/doc/latex/grfpaste/grfp1.tex
+ texmf-dist/doc/latex/grfpaste/grfp2.dat
+ texmf-dist/doc/latex/grfpaste/grfp2.dvi
+ texmf-dist/doc/latex/grfpaste/grfp2.tex
+ texmf-dist/doc/latex/grfpaste/grfp3.dvi
+ texmf-dist/doc/latex/grfpaste/grfp3.tex
+runfiles size=7088
+ texmf-dist/tex/latex/grfpaste/grfpaste.sty
+catalogue-version 0.2
+catalogue-date 2007-01-07 11:47:19 +0100
+catalogue-ctan /macros/latex/contrib/grfpaste
+catalogue-license lppl
+
+name grnumalt
+category Package
+revision 2151
+shortdesc Ancient Greek (Athenian) numbers.
+longdesc The package implements a numbering system that was used in
+longdesc ancient Athens, producing the ‘Athenian’ numeral for any
+longdesc positive number. The package’s \athnum command can (in
+longdesc principle) be used to provide alternative typeset display of
+longdesc the value of counters.
+docfiles size=173094
+ texmf-dist/doc/latex/grnumalt/grnumalt.pdf details="Package documentation"
+srcfiles size=10502
+ texmf-dist/source/latex/grnumalt/grnumalt.dtx
+ texmf-dist/source/latex/grnumalt/grnumalt.ins
+runfiles size=3629
+ texmf-dist/tex/latex/grnumalt/grnumalt.sty
+catalogue-version
+catalogue-date 2007-01-04 14:33:27 +0100
+catalogue-ctan /macros/latex/contrib/grnumalt
+catalogue-license unknown
+
+name groff
+category Package
+revision 5362
+execute addMap groff-updmap.map
+runfiles size=54802
+ texmf-dist/fonts/afm/groff/freeeuro.afm
+ texmf-dist/fonts/afm/groff/psyrgo.afm
+ texmf-dist/fonts/afm/groff/zpzdr-reversed.afm
+ texmf-dist/fonts/enc/dvips/groff/groff.enc
+ texmf-dist/fonts/map/dvips/groff/groff-mp.map
+ texmf-dist/fonts/map/dvips/groff/groff-updmap.map
+ texmf-dist/fonts/tfm/groff/freeeuro.tfm
+ texmf-dist/fonts/tfm/groff/psyrgo.tfm
+ texmf-dist/fonts/tfm/groff/zpzdr-reversed.tfm
+ texmf-dist/fonts/type1/groff/freeeuro.pfa
+
+name grotesq
+category Package
+revision 964
+execute addMap ugq.map
+docfiles size=5293
+ texmf-dist/doc/fonts/grotesq/README.base35
+ texmf-dist/doc/fonts/grotesq/grotesq.txt
+runfiles size=155427
+ texmf-dist/dvips/grotesq/config.ugq
+ texmf-dist/fonts/afm/urw/grotesq/ugqb8a.afm
+ texmf-dist/fonts/map/dvips/grotesq/ugq.map
+ texmf-dist/fonts/tfm/urw/grotesq/ugqb.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqb7t.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqb8a.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqb8c.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqb8r.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqb8t.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqbc7t.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqbc8t.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqbo7t.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqbo8c.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqbo8r.tfm
+ texmf-dist/fonts/tfm/urw/grotesq/ugqbo8t.tfm
+ texmf-dist/fonts/type1/urw/grotesq/ugqb8a.pfb
+ texmf-dist/fonts/vf/urw/grotesq/ugqb.vf
+ texmf-dist/fonts/vf/urw/grotesq/ugqb7t.vf
+ texmf-dist/fonts/vf/urw/grotesq/ugqb8c.vf
+ texmf-dist/fonts/vf/urw/grotesq/ugqb8t.vf
+ texmf-dist/fonts/vf/urw/grotesq/ugqbc7t.vf
+ texmf-dist/fonts/vf/urw/grotesq/ugqbc8t.vf
+ texmf-dist/fonts/vf/urw/grotesq/ugqbo7t.vf
+ texmf-dist/fonts/vf/urw/grotesq/ugqbo8c.vf
+ texmf-dist/fonts/vf/urw/grotesq/ugqbo8t.vf
+ texmf-dist/tex/latex/grotesq/ot1ugq.fd
+ texmf-dist/tex/latex/grotesq/t1ugq.fd
+ texmf-dist/tex/latex/grotesq/ts1ugq.fd
+
+name grtimes
+category Package
+revision 965
+shortdesc Typeset Greek text with the Times New Roman Greek.
+longdesc The bundle assumes you have run ttf2mf to produce MetaFont
+longdesc source from the (Monotype) Times New Roman Truetype font that
+longdesc you (otherwise, legally) own. (The translation is to be steered
+longdesc by a file within the this package.) The package grtimes, in the
+longdesc bundle, allows the user to typeset monotonic Greek text using
+longdesc these MetaFont-specified fonts.
+docfiles size=2879
+ texmf-dist/doc/latex/grtimes/README details="Readme"
+srcfiles size=17854
+ texmf-dist/source/latex/grtimes/font-names
+ texmf-dist/source/latex/grtimes/grtimes.dtx
+ texmf-dist/source/latex/grtimes/grtimes.ins
+ texmf-dist/source/latex/grtimes/inlig
+runfiles size=15407
+ texmf-dist/fonts/enc/dvips/grtimes/lgr-tex.enc
+ texmf-dist/fonts/source/public/grtimes/lgrligs.mf
+ texmf-dist/tex/latex/grtimes/grtimes.sty
+ texmf-dist/tex/latex/grtimes/lgrpcr.fd
+ texmf-dist/tex/latex/grtimes/lgrphv.fd
+ texmf-dist/tex/latex/grtimes/lgrptm.fd
+catalogue-version
+catalogue-date 2007-11-14 23:25:22 +0100
+catalogue-ctan /fonts/greek/package-babel/grtimes
+catalogue-license unknown
+
+name grverb
+category Package
+revision 1487
+shortdesc Typesetting Greek verbatim.
+longdesc The package provides verbatim typsetting, in the context of the
+longdesc Greek option in babel. The package uses the public domain
+longdesc Greek-CourierPlain font, and metrics and a font map entry for
+longdesc its use are provided.
+execute addMap grverb.map
+docfiles size=1684
+ texmf-dist/doc/latex/grverb/README
+ texmf-dist/doc/latex/grverb/grv.dvi
+ texmf-dist/doc/latex/grverb/grv.tex
+srcfiles size=26182
+ texmf-dist/source/latex/grverb/grcour7t.vpl
+ texmf-dist/source/latex/grverb/grverb.dtx
+ texmf-dist/source/latex/grverb/grverb.ins
+runfiles size=76189
+ texmf-dist/fonts/afm/public/grverb/grkcurp.afm
+ texmf-dist/fonts/map/dvips/grverb/grverb.map
+ texmf-dist/fonts/tfm/public/grverb/grcour7t.tfm
+ texmf-dist/fonts/tfm/public/grverb/grcour8a.tfm
+ texmf-dist/fonts/type1/public/grverb/grkcurp.pfb
+ texmf-dist/fonts/vf/public/grverb/grcour7t.vf
+ texmf-dist/tex/latex/grverb/grverb.sty
+catalogue-version 1.0
+catalogue-date 2007-11-11 20:55:49 +0100
+catalogue-ctan /language/greek/package-babel/grverb
+catalogue-license lppl
+
+name gu
+category Package
+revision 5293
+shortdesc Typeset crystallographic group-subgroup-schemes.
+longdesc The package simplifies typesetting of simple crystallographic
+longdesc group-subgroup-schemes in the Bärnighausen formalism. It
+longdesc defines a new environment stammbaum, wherein all elements of
+longdesc the scheme are defined. Afterwards all necessary dimensions are
+longdesc calculated and the scheme is drawn. Currently two steps of
+longdesc symmetry reduction are supported.
+docfiles size=816839
+ texmf-dist/doc/latex/gu/README details="Package README"
+ texmf-dist/doc/latex/gu/gudemo.tex
+ texmf-dist/doc/latex/gu/gudoc.pdf details="Package documentation" language="de"
+ texmf-dist/doc/latex/gu/gudoc.tex
+runfiles size=31510
+ texmf-dist/tex/latex/gu/gu.sty
+catalogue-version
+catalogue-date 2007-01-20 09:15:15 +0100
+catalogue-ctan /macros/latex/contrib/gu
+catalogue-license lppl
+
+name guide-to-latex
+category Documentation
+revision 1487
+docfiles size=502039
+ texmf-doc/doc/english/guide-to-latex/README.txt
+ texmf-doc/doc/english/guide-to-latex/demo.eps
+ texmf-doc/doc/english/guide-to-latex/demo.pdf
+ texmf-doc/doc/english/guide-to-latex/demodoc.pdf
+ texmf-doc/doc/english/guide-to-latex/demodoc.ps
+ texmf-doc/doc/english/guide-to-latex/demodoc.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-10.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-3.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-4.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-5.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-6.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-7.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-8.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap10/exer10-9.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap11/exer1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap11/exer11-1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap11/exer11-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap11/exer11-3.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap11/exer11-4.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap11/exer11-5.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap11/exer2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap11/exer3.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap15/exer15-1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap15/exer15-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap15/exer15-3.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap15/exer15-4.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap15/exer15-5.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap15/exer15-6.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap15/exer15-7.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap2/exer2-1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap2/exer2-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap2/exer2-3a.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap2/exer2-3b.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap2/exer2-3c.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-10.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-11.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-12.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-12.toc
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-1a.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-1b.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-3.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-4a.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-4b.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-5a.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-5b.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-6.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-7a.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-7b.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-8a.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-8b.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap3/exer3-9.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-10.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-3.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-4.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-5.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-6.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-7.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-8.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-9.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap5/exer5-1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap5/exer5-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap5/exer5-3.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap5/exer5-4.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap6/exer6-1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap6/exer6-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap6/exer6-3.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap6/exer6-4.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap6/exer6-5.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-10.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-11.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-12.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-13.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-14.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-15.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-16.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-17.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-18.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-19.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-20.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-21a.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-21b.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-3.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-4.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-5.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-6.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-7.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-8.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap7/exer7-9.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap8/exer8-1.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap8/exer8-2.tex
+ texmf-doc/doc/english/guide-to-latex/exercises/chap8/exer8-3.tex
+ texmf-doc/doc/english/guide-to-latex/mpletter.cls
+ texmf-doc/doc/english/guide-to-latex/palette.pdf
+ texmf-doc/doc/english/guide-to-latex/palette.ps
+ texmf-doc/doc/english/guide-to-latex/palette.tex
+ texmf-doc/doc/english/guide-to-latex/seminar.con
+ texmf-doc/doc/english/guide-to-latex/sempdftx.sty
+
+name guides-pl
+category Documentation
+revision 16
+docfiles size=2701123
+ texmf-doc/doc/polish/guides-pl/00readme
+ texmf-doc/doc/polish/guides-pl/gentl-pl.pdf
+ texmf-doc/doc/polish/guides-pl/grafika.pdf
+ texmf-doc/doc/polish/guides-pl/index.html
+ texmf-doc/doc/polish/guides-pl/mpint-pl.pdf
+ texmf-doc/doc/polish/guides-pl/pedeefy.pdf
+
+name guitar
+category Package
+revision 1487
+shortdesc Guitar chords and song texts.
+longdesc (La)TeX macros for typesetting guitar chords over song texts.
+longdesc The toolbox package is required. Note that this package only
+longdesc places arbitrary TeX code over the lyrics. To typeset the
+longdesc chords graphically (and not only by name), the author
+longdesc recommends use of an additional package such as gchords by K.
+longdesc Peeters.
+docfiles size=33012
+ texmf-dist/doc/latex/guitar/guitar.dvi
+ texmf-dist/doc/latex/guitar/guitar.tex
+ texmf-dist/doc/latex/guitar/guitar.txt
+srcfiles size=48559
+ texmf-dist/source/latex/guitar/guitar.dtx
+ texmf-dist/source/latex/guitar/guitar.ins
+runfiles size=6151
+ texmf-dist/tex/latex/guitar/guitar.sty
+catalogue-version
+catalogue-date 2007-02-22 16:49:05 +0100
+catalogue-ctan /macros/latex/contrib/guitar
+catalogue-license unknown
+
+name guitbeamer
+category Package
+revision 5506
+docfiles size=5127766
+ texmf-dist/doc/latex/guitbeamer/README
+ texmf-dist/doc/latex/guitbeamer/README.it
+ texmf-dist/doc/latex/guitbeamer/guitbeamer.pdf
+ texmf-dist/doc/latex/guitbeamer/guitbeamer.tex
+ texmf-dist/doc/latex/guitbeamer/img/clsexpl.pdf
+ texmf-dist/doc/latex/guitbeamer/img/cmdexpl.pdf
+ texmf-dist/doc/latex/guitbeamer/img/docexem.pdf
+ texmf-dist/doc/latex/guitbeamer/img/latexsymb.pdf
+ texmf-dist/doc/latex/guitbeamer/img/pkgexem.pdf
+runfiles size=5247
+ texmf-dist/tex/latex/guitbeamer/guitbeamer.cls
+
+name gustlib
+category Package
+revision 1570
+shortdesc Polish oriented macros.
+longdesc Various small utility packages for typesetting in plain TeX,
+longdesc with a Polish perspective. Neither the package, nor any of its
+longdesc contents, appears on CTAN.
+docfiles size=10961
+ texmf-dist/doc/plain/gustlib/README
+ texmf-dist/doc/plain/gustlib/readme.biblotex
+ texmf-dist/doc/plain/gustlib/readme.plbtx993
+ texmf-dist/doc/plain/gustlib/readme.plmac218
+runfiles size=229656
+ texmf-dist/bibtex/bib/gustlib/plbib.bib
+ texmf-dist/bibtex/bst/gustlib/plabbrv.bst
+ texmf-dist/bibtex/bst/gustlib/plalpha.bst
+ texmf-dist/bibtex/bst/gustlib/plplain.bst
+ texmf-dist/bibtex/bst/gustlib/plunsrt.bst
+ texmf-dist/tex/plain/gustlib/biblotex/biblotex.tex
+ texmf-dist/tex/plain/gustlib/infr-ex.tex
+ texmf-dist/tex/plain/gustlib/infram.tex
+ texmf-dist/tex/plain/gustlib/licz/licz-tst.mex
+ texmf-dist/tex/plain/gustlib/licz/licz.mex
+ texmf-dist/tex/plain/gustlib/map/map.tex
+ texmf-dist/tex/plain/gustlib/map/split.tex
+ texmf-dist/tex/plain/gustlib/map/tsp-tst.mex
+ texmf-dist/tex/plain/gustlib/map/tsp.tex
+ texmf-dist/tex/plain/gustlib/map/tun-test.mex
+ texmf-dist/tex/plain/gustlib/map/tun.tex
+ texmf-dist/tex/plain/gustlib/mcol-ex.tex
+ texmf-dist/tex/plain/gustlib/meashor.tex
+ texmf-dist/tex/plain/gustlib/mimulcol.tex
+ texmf-dist/tex/plain/gustlib/plbtx993/plbtxbst.doc
+ texmf-dist/tex/plain/gustlib/plbtx993/test.mex
+ texmf-dist/tex/plain/gustlib/plmac218/plidxmac.tex
+ texmf-dist/tex/plain/gustlib/plmac218/plind.bat
+ texmf-dist/tex/plain/gustlib/plmac218/przyklad.tex
+ texmf-dist/tex/plain/gustlib/rbox-ex.tex
+ texmf-dist/tex/plain/gustlib/roundbox.tex
+ texmf-dist/tex/plain/gustlib/tp-crf.tex
+ texmf-dist/tex/plain/gustlib/verbatim.tex
+catalogue-version
+catalogue-date 2007-01-21 11:04:51 +0100
+catalogue-ctan
+catalogue-license pd
+
+name hands
+category Package
+revision 101
+shortdesc Pointing hand font.
+longdesc Provides right- and left-pointing hands in both black-on-white
+longdesc and white-on-black realisation. The font is distributed as
+longdesc MetaFont source.
+runfiles size=6520
+ texmf-dist/fonts/source/public/hands/hands.mf
+ texmf-dist/fonts/source/public/hands/handsdef.mf
+ texmf-dist/fonts/source/public/hands/mirror.mf
+ texmf-dist/fonts/source/public/hands/reverse.mf
+ texmf-dist/fonts/source/public/hands/rvmirror.mf
+ texmf-dist/fonts/tfm/public/hands/hands.tfm
+catalogue-version
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /fonts/hands
+catalogue-license unknown
+
+name hanging
+category Package
+revision 968
+shortdesc Hanging paragraphs.
+longdesc The hanging package facilitates the typesetting of hanging
+longdesc paragraphs. The package also enables typesetting with hanging
+longdesc punctuation, by making punctuation characters active. This
+longdesc facility is best suppressed (it can interfere with other
+longdesc packages) — there are package options for suppressing each
+longdesc individual punctuation character. ‘Real’ attempts at
+longdesc hanging punction should nowadays use the microtype package,
+longdesc which takes advantage of the support offered in recent versions
+longdesc of pdfTeX.
+docfiles size=933
+ texmf-dist/doc/latex/hanging/README
+srcfiles size=23504
+ texmf-dist/source/latex/hanging/hanging.dtx
+ texmf-dist/source/latex/hanging/hanging.ins
+runfiles size=4011
+ texmf-dist/tex/latex/hanging/hanging.sty
+catalogue-version 1.2
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /macros/latex/contrib/hanging
+catalogue-license lppl
+
+name harmony
+category Package
+revision 4266
+shortdesc Typeset harmony symbols, etc., for musicology.
+longdesc The package harmony.sty uses the packages ifthen and amssymb,
+longdesc together with the LaTeX font lcirclew10 and the font musix13
+longdesc from musixtex.
+docfiles size=158532
+ texmf-dist/doc/latex/harmony/README details="Readme"
+ texmf-dist/doc/latex/harmony/harmony.pdf details="Package documentation"
+ texmf-dist/doc/latex/harmony/harmony.tex
+runfiles size=9968
+ texmf-dist/tex/latex/harmony/harmony.sty
+catalogue-version
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/harmony
+catalogue-license lppl
+
+name harpoon
+category Package
+revision 1487
+shortdesc Extra harpoons, using the graphics package.
+longdesc Provides over- and under-harpoon symbol commands; the harpoons
+longdesc may point in either direction, with the hook pointing up or
+longdesc down. The covered object is provided as an argument to the
+longdesc commands, so that they have the look of accent commands.
+docfiles size=5322
+ texmf-dist/doc/latex/harpoon/harpoon.dvi
+ texmf-dist/doc/latex/harpoon/harpoon.tex
+runfiles size=1668
+ texmf-dist/tex/latex/harpoon/harpoon.sty
+catalogue-version
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /macros/latex/contrib/harpoon
+catalogue-license unknown
+
+name harvard
+category Package
+revision 1487
+shortdesc The Harvard bibliography style family.
+longdesc There are two primary forms of citation in the Harvard style,
+longdesc dependent upon whether the reference is used as a noun or
+longdesc parenthetically. The citations themselves are in author-date
+longdesc style, with authors after the first suppressed in repeat
+longdesc citations. The three original bibliography styles are agsm.bst
+longdesc (for Australian Government publications), dcu.bst (from the
+longdesc Design Computing Unit of the University of Sydney) and
+longdesc kluwer.bst (aiming at the format preferred in Kluwer
+longdesc publications). This package is no longer recommended for use:
+longdesc the harvard package for LaTeX 2e should be used instead.
+docfiles size=34129
+ texmf-dist/doc/latex/harvard/harvard.dvi
+ texmf-dist/doc/latex/harvard/harvard.tex
+srcfiles size=25275
+ texmf-dist/source/latex/harvard/INSTALL
+ texmf-dist/source/latex/harvard/Makefile
+ texmf-dist/source/latex/harvard/README
+ texmf-dist/source/latex/harvard/doc_Makefile
+ texmf-dist/source/latex/harvard/harvard.perl
+runfiles size=174451
+ texmf-dist/bibtex/bib/harvard/harvard.bib
+ texmf-dist/bibtex/bst/harvard/agsm.bst
+ texmf-dist/bibtex/bst/harvard/apsr.bst
+ texmf-dist/bibtex/bst/harvard/jmr.bst
+ texmf-dist/bibtex/bst/harvard/jphysicsB.bst
+ texmf-dist/bibtex/bst/harvard/kluwer.bst
+ texmf-dist/bibtex/bst/harvard/nederlands.bst
+ texmf-dist/tex/latex/harvard/harvard.sty
+catalogue-version
+catalogue-date 2007-02-23 00:16:39 +0100
+catalogue-ctan /obsolete/biblio/bibtex/contrib/harvard
+catalogue-license unknown
+
+name harvmac
+category Package
+revision 1487
+shortdesc Macros for scientific articles.
+longdesc Known as ‘Harvard macros’, since written at that
+longdesc University.
+docfiles size=27162
+ texmf-dist/doc/plain/harvmac/harvsamp.dvi
+ texmf-dist/doc/plain/harvmac/harvsamp.tex
+runfiles size=15267
+ texmf-dist/tex/plain/harvmac/harvmac.tex
+catalogue-version
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /macros/plain/contrib/harvmac
+catalogue-license unknown
+
+name hatching
+category Package
+revision 104
+shortdesc MetaPost macros for hatching interior of closed paths.
+longdesc The file hatching.mp contains a set of MetaPost macros for
+longdesc hatching interior of closed paths. Examples of usage are
+longdesc included.
+docfiles size=4876
+ texmf-dist/doc/metapost/hatching/htchuse.mp
+ texmf-dist/doc/metapost/hatching/htchuse_.tex
+ texmf-dist/doc/metapost/hatching/readme
+runfiles size=2255
+ texmf-dist/metapost/hatching/hatching.mp
+catalogue-version 0.11
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/hatching
+catalogue-license pd
+
+name hc
+category Package
+revision 971
+docfiles size=2868
+ texmf-dist/doc/latex/hc/README
+srcfiles size=79317
+ texmf-dist/source/latex/hc/COPYING
+ texmf-dist/source/latex/hc/FILES
+ texmf-dist/source/latex/hc/german.hld
+ texmf-dist/source/latex/hc/hc.dtx
+ texmf-dist/source/latex/hc/hc.ins
+runfiles size=123567
+ texmf-dist/bibtex/bst/hc/hc-de.bst
+ texmf-dist/bibtex/bst/hc/hc-en.bst
+ texmf-dist/tex/latex/hc/hcart.cls
+ texmf-dist/tex/latex/hc/hcletter.cls
+ texmf-dist/tex/latex/hc/hcreport.cls
+ texmf-dist/tex/latex/hc/hcslides.cls
+
+name help
+category Documentation
+revision 1513
+docfiles size=545903
+ texmf-doc/doc/english/help/CTAN.sites
+ texmf-doc/doc/english/help/NTS-FAQ
+ texmf-doc/doc/english/help/README-Books
+ texmf-doc/doc/english/help/TeX-index
+ texmf-doc/doc/english/help/ascii.tex
+ texmf-doc/doc/english/help/companion.ctan
+ texmf-doc/doc/english/help/csname.txt
+ texmf-doc/doc/english/help/patgen2.tutorial
+ texmf-doc/doc/english/help/unixtex.ftp
+ texmf-doc/doc/english/help/usergrps.html
+ texmf-doc/doc/english/help/virtual-fonts.knuth
+
+name helvetic
+category Package
+revision 2488
+runfiles size=2227598
+ texmf-dist/dvips/helvetic/config.uhv
+ texmf-dist/fonts/afm/adobe/helvetic/phvb8a.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvb8an.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvbo8a.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvbo8an.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvl8a.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvl8ac.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvlo8a.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvlo8ac.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvlr8ac.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvr8a.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvr8an.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvro8a.afm
+ texmf-dist/fonts/afm/adobe/helvetic/phvro8an.afm
+ texmf-dist/fonts/afm/urw/helvetic/uhvb8a.afm
+ texmf-dist/fonts/afm/urw/helvetic/uhvb8ac.afm
+ texmf-dist/fonts/afm/urw/helvetic/uhvbo8a.afm
+ texmf-dist/fonts/afm/urw/helvetic/uhvbo8ac.afm
+ texmf-dist/fonts/afm/urw/helvetic/uhvr8a.afm
+ texmf-dist/fonts/afm/urw/helvetic/uhvr8ac.afm
+ texmf-dist/fonts/afm/urw/helvetic/uhvro8a.afm
+ texmf-dist/fonts/afm/urw/helvetic/uhvro8ac.afm
+ texmf-dist/fonts/map/dvips/helvetic/uhv.map
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb7t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb7tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb8c.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb8cn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb8r.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb8rn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb8t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb8tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb8y.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvb8yn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbc.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbc7t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbc7tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbc8t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbc8tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo7t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo7tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo8c.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo8cn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo8r.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo8rn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo8t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo8tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo8y.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbo8yn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbon.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvbrn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvl7t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvl8c.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvl8r.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvl8t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvlc7t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvlc8t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvlo7t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvlo8c.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvlo8r.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvlo8t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr7t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr7tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr8c.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr8cn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr8r.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr8rn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr8t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr8tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr8y.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvr8yn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvrc.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvrc7t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvrc7tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvrc8t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvrc8tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro7t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro7tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro8c.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro8cn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro8r.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro8rn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro8t.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro8tn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro8y.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvro8yn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvron.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/phvrrn.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/rphvro.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/rphvron.tfm
+ texmf-dist/fonts/tfm/adobe/helvetic/rphvrrn.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvb8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvbc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvbn8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvbnc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvbo8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvbon8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvr8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvrc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvrn8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvrnc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvro8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/phvron8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/rphvb.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/rphvbo.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/rphvbon.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/rphvbrn.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/helvetic/rphvr.tfm
+ texmf-dist/fonts/tfm/groff/helvetic/phvb8g.tfm
+ texmf-dist/fonts/tfm/groff/helvetic/phvb8gn.tfm
+ texmf-dist/fonts/tfm/groff/helvetic/phvbo8g.tfm
+ texmf-dist/fonts/tfm/groff/helvetic/phvbo8gn.tfm
+ texmf-dist/fonts/tfm/groff/helvetic/phvr8g.tfm
+ texmf-dist/fonts/tfm/groff/helvetic/phvr8gn.tfm
+ texmf-dist/fonts/tfm/groff/helvetic/phvro8g.tfm
+ texmf-dist/fonts/tfm/groff/helvetic/phvro8gn.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arb10u.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arb2n.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arb7j.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arb8u.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arb9t.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/ari10u.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/ari2n.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/ari7j.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/ari8u.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/ari9t.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arj10u.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arj2n.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arj7j.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arj8u.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arj9t.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arr10u.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arr2n.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arr7j.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arr8u.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/arr9t.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/mhvb.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/mhvb8t.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/mhvbi.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/mhvbi8t.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/mhvr.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/mhvr8t.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/mhvri.tfm
+ texmf-dist/fonts/tfm/monotype/helvetic/mhvri8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvb7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvb7tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvb8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvb8cn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvb8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvb8rn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvb8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvb8tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbc7tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbc8tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbi7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbi8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbi8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbi8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbo7tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbo8cn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbo8rn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvbo8tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvr7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvr7tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvr8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvr8cn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvr8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvr8rn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvr8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvr8tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvrc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvrc7tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvrc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvrc8tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvri7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvri7tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvri8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvri8cn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvri8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvri8rn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvri8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvri8tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvro7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvro7tn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvro8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvro8cn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvro8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvro8rn.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvro8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/helvetic/uhvro8tn.tfm
+ texmf-dist/fonts/type1/urw/helvetic/uhvb8a.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvb8a.pfm
+ texmf-dist/fonts/type1/urw/helvetic/uhvb8ac.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvb8ac.pfm
+ texmf-dist/fonts/type1/urw/helvetic/uhvbo8a.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvbo8a.pfm
+ texmf-dist/fonts/type1/urw/helvetic/uhvbo8ac.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvbo8ac.pfm
+ texmf-dist/fonts/type1/urw/helvetic/uhvboc8a.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvbrc8a.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvr8a-105.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfm
+ texmf-dist/fonts/type1/urw/helvetic/uhvr8ac.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvr8ac.pfm
+ texmf-dist/fonts/type1/urw/helvetic/uhvro8a-105.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfm
+ texmf-dist/fonts/type1/urw/helvetic/uhvro8ac.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvro8ac.pfm
+ texmf-dist/fonts/type1/urw/helvetic/uhvroc8a.pfb
+ texmf-dist/fonts/type1/urw/helvetic/uhvrrc8a.pfb
+ texmf-dist/fonts/vf/adobe/helvetic/phvb.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvb7t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvb7tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvb8c.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvb8cn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvb8t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvb8tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbc.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbc7t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbc7tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbc8t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbc8tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbo.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbo7t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbo7tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbo8c.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbo8cn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbo8t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbo8tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbon.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvbrn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvl7t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvl8c.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvl8t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvlc7t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvlc8t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvlo7t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvlo8c.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvlo8t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvr.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvr7t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvr7tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvr8c.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvr8cn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvr8t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvr8tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvrc.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvrc7t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvrc7tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvrc8t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvrc8tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvro.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvro7t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvro7tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvro8c.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvro8cn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvro8t.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvro8tn.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvron.vf
+ texmf-dist/fonts/vf/adobe/helvetic/phvrrn.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvb8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvbc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvbn8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvbnc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvbo8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvbon8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvr8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvrc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvrn8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvrnc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvro8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/helvetic/phvron8z.vf
+ texmf-dist/fonts/vf/monotype/helvetic/mhvb.vf
+ texmf-dist/fonts/vf/monotype/helvetic/mhvb8t.vf
+ texmf-dist/fonts/vf/monotype/helvetic/mhvbi.vf
+ texmf-dist/fonts/vf/monotype/helvetic/mhvbi8t.vf
+ texmf-dist/fonts/vf/monotype/helvetic/mhvr.vf
+ texmf-dist/fonts/vf/monotype/helvetic/mhvr8t.vf
+ texmf-dist/fonts/vf/monotype/helvetic/mhvri.vf
+ texmf-dist/fonts/vf/monotype/helvetic/mhvri8t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvb7t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvb7tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvb8c.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvb8cn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvb8t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvb8tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbc7t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbc7tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbc8t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbc8tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbi7t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbi8c.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbi8t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbo7t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbo7tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbo8c.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbo8cn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbo8t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvbo8tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvr7t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvr7tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvr8c.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvr8cn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvr8t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvr8tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvrc7t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvrc7tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvrc8t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvrc8tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvri7t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvri7tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvri8c.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvri8cn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvri8t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvri8tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvro7t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvro7tn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvro8c.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvro8cn.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvro8t.vf
+ texmf-dist/fonts/vf/urw35vf/helvetic/uhvro8tn.vf
+ texmf-dist/tex/latex/helvetic/8ruhv.fd
+ texmf-dist/tex/latex/helvetic/omluhv.fd
+ texmf-dist/tex/latex/helvetic/omsuhv.fd
+ texmf-dist/tex/latex/helvetic/ot1uhv.fd
+ texmf-dist/tex/latex/helvetic/t1uhv.fd
+ texmf-dist/tex/latex/helvetic/ts1uhv.fd
+
+name hepparticles
+category Package
+revision 973
+docfiles size=255290
+ texmf-dist/doc/latex/hepparticles/README
+ texmf-dist/doc/latex/hepparticles/hepparticles.pdf
+ texmf-dist/doc/latex/hepparticles/hepparticles.ps
+ texmf-dist/doc/latex/hepparticles/hepparticles.tex
+ texmf-dist/doc/latex/hepparticles/testhepparticles.pdf
+ texmf-dist/doc/latex/hepparticles/testhepparticles.tex
+runfiles size=15039
+ texmf-dist/tex/latex/hepparticles/hepparticles.sty
+
+name hepthesis
+category Package
+revision 4948
+shortdesc A class for academic reports, especially PhD theses.
+longdesc Hepthesis is a LaTeX class for typesetting large academic
+longdesc reports, in particular PhD theses. It was originally developed
+longdesc for typesetting the author’s high-energy physics PhD thesis
+longdesc and includes some features specifically tailored to such an
+longdesc application. In particular, hepthesis offers: – Attractive
+longdesc semantic environments for various rubric sections; –
+longdesc Extensive options for draft production, screen viewing and
+longdesc binding-ready output; – Helpful extensions of existing
+longdesc environments, including equation and tabular; and – Support
+longdesc for quotations at the start of the thesis and each chapter.
+docfiles size=975806
+ texmf-dist/doc/latex/hepthesis/ChangeLog
+ texmf-dist/doc/latex/hepthesis/README details="Package README"
+ texmf-dist/doc/latex/hepthesis/TODO
+ texmf-dist/doc/latex/hepthesis/example/abhep.sty
+ texmf-dist/doc/latex/hepthesis/example/abhepexpt.sty
+ texmf-dist/doc/latex/hepthesis/example/abmath.sty
+ texmf-dist/doc/latex/hepthesis/example/appendices.tex
+ texmf-dist/doc/latex/hepthesis/example/backmatter.tex
+ texmf-dist/doc/latex/hepthesis/example/chap1.tex
+ texmf-dist/doc/latex/hepthesis/example/chap2.tex
+ texmf-dist/doc/latex/hepthesis/example/ckmfitter-alpha-combined.pdf
+ texmf-dist/doc/latex/hepthesis/example/csquotes.sty
+ texmf-dist/doc/latex/hepthesis/example/example.pdf details="Part of a thesis, seen as for printing:"
+ texmf-dist/doc/latex/hepthesis/example/example.tex
+ texmf-dist/doc/latex/hepthesis/example/frontmatter.tex
+ texmf-dist/doc/latex/hepthesis/example/lhcb-detector-cross-section.pdf
+ texmf-dist/doc/latex/hepthesis/example/thesis.cls
+ texmf-dist/doc/latex/hepthesis/example/thesis.sty
+ texmf-dist/doc/latex/hepthesis/example/thesismath.sty
+ texmf-dist/doc/latex/hepthesis/example/varwidth.sty
+ texmf-dist/doc/latex/hepthesis/hepthesis.pdf details="Package documentation"
+ texmf-dist/doc/latex/hepthesis/hepthesis.tex
+srcfiles size=973
+ texmf-dist/source/latex/hepthesis/Makefile
+runfiles size=26298
+ texmf-dist/tex/latex/hepthesis/hepthesis.cls
+catalogue-version 1.4
+catalogue-date 2007-09-14 11:29:42 +0200
+catalogue-ctan /macros/latex/contrib/hepthesis
+catalogue-license lppl
+
+name hepunits
+category Package
+revision 5061
+docfiles size=96015
+ texmf-dist/doc/latex/hepunits/ChangeLog
+ texmf-dist/doc/latex/hepunits/README
+ texmf-dist/doc/latex/hepunits/hepunits.pdf
+ texmf-dist/doc/latex/hepunits/hepunits.tex
+runfiles size=6331
+ texmf-dist/tex/latex/hepunits/hepunits.sty
+
+name hexgame
+category Package
+revision 4994
+shortdesc Provide an environment to draw a hexgame-board.
+longdesc Hex is a mathematical game invented by the Danish mathematician
+longdesc Piet Hein and independently by the mathematician John Nash.
+longdesc This package defines an environment that enables the user to
+longdesc draw such a game in a trivial way.
+docfiles size=36376
+ texmf-dist/doc/latex/hexgame/README details="Readme"
+ texmf-dist/doc/latex/hexgame/hexgame.pdf details="Package documentation"
+ texmf-dist/doc/latex/hexgame/hexgame.tex
+runfiles size=4662
+ texmf-dist/tex/latex/hexgame/hexgame.sty
+catalogue-version 1.0
+catalogue-date 2007-10-03 10:32:43 +0200
+catalogue-ctan /macros/latex/contrib/hexgame
+catalogue-license lppl
+
+name hfbright
+category Package
+revision 111
+shortdesc The hfbright fonts.
+longdesc These are Adobe Type 1 versions of the OT1-encoded and maths
+longdesc parts of the Computer Modern Bright fonts.
+execute addMixedMap hfbright.map
+docfiles size=2920
+ texmf-dist/doc/fonts/hfbright/README
+srcfiles size=12330
+ texmf-dist/source/fonts/hfbright/generate.sh
+ texmf-dist/source/fonts/hfbright/install.sh
+ texmf-dist/source/fonts/hfbright/simplify-rename.pe
+runfiles size=1150149
+ texmf-dist/dvips/hfbright/config.hfbright
+ texmf-dist/fonts/afm/public/hfbright/hfbr10.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbr17.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbr8.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbr9.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbras10.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbras8.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbras9.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrbs10.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrbs8.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrbs9.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrbx10.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrmb10.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrmi10.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrmi8.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrmi9.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrsl10.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrsl17.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrsl8.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrsl9.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrsy10.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrsy8.afm
+ texmf-dist/fonts/afm/public/hfbright/hfbrsy9.afm
+ texmf-dist/fonts/afm/public/hfbright/hfsltl10.afm
+ texmf-dist/fonts/afm/public/hfbright/hftl10.afm
+ texmf-dist/fonts/enc/dvips/hfbright/hfmital.enc
+ texmf-dist/fonts/enc/dvips/hfbright/hfmsa.enc
+ texmf-dist/fonts/enc/dvips/hfbright/hfmsb.enc
+ texmf-dist/fonts/enc/dvips/hfbright/hfmsym.enc
+ texmf-dist/fonts/enc/dvips/hfbright/hfot1.enc
+ texmf-dist/fonts/map/dvips/hfbright/hfbright.map
+ texmf-dist/fonts/type1/public/hfbright/hfbr10.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbr17.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbr8.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbr9.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbras10.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbras8.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbras9.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrbs10.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrbs8.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrbs9.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrbx10.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrmb10.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrmi10.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrmi8.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrmi9.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrsl10.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrsl17.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrsl8.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrsl9.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrsy10.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrsy8.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfbrsy9.pfb
+ texmf-dist/fonts/type1/public/hfbright/hfsltl10.pfb
+ texmf-dist/fonts/type1/public/hfbright/hftl10.pfb
+catalogue-version
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /fonts/ps-type1/hfbright
+catalogue-license lppl
+
+name hfoldsty
+category Package
+revision 975
+shortdesc Old style numerals with EC fonts.
+longdesc The hfoldsty package provides virtual fonts for using oldstyle
+longdesc (0123456789) figures with the European Computer Modern fonts.
+longdesc It does a similar job as the eco package by Sebastian Kirsch
+longdesc but includes a couple of improvements, i.e., better kerning
+longdesc with guillemets, and support for character protruding using the
+longdesc pdfcprot package.
+docfiles size=517899
+ texmf-dist/doc/fonts/hfoldsty/ChangeLog
+ texmf-dist/doc/fonts/hfoldsty/README
+ texmf-dist/doc/fonts/hfoldsty/TODO
+ texmf-dist/doc/fonts/hfoldsty/TS1.etx
+ texmf-dist/doc/fonts/hfoldsty/dostretch.mtx
+ texmf-dist/doc/fonts/hfoldsty/generate.sh
+ texmf-dist/doc/fonts/hfoldsty/gpl.txt
+ texmf-dist/doc/fonts/hfoldsty/hfoldsty.pdf
+ texmf-dist/doc/fonts/hfoldsty/hfoldsty.xml
+ texmf-dist/doc/fonts/hfoldsty/t19.etx
+ texmf-dist/doc/fonts/hfoldsty/test-eco-hfo.tex
+ texmf-dist/doc/fonts/hfoldsty/test-eco.tex
+ texmf-dist/doc/fonts/hfoldsty/test-hfo.tex
+srcfiles size=26455
+ texmf-dist/source/fonts/hfoldsty/Makefile
+ texmf-dist/source/fonts/hfoldsty/hfoldsty.dtx
+ texmf-dist/source/fonts/hfoldsty/hfoldsty.ins
+runfiles size=3410804
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobi3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobl3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfobx3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfocc3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfodh3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoit3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfooc3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hforb3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hform3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosc3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosi3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosl3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoso3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoss3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfost3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfosx3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfotc3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoti3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfott3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoui3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovi3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfovt3583.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc0500.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc0600.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc0700.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc0800.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc0900.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc1000.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc1095.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc1200.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc1440.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc1728.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc2074.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc2488.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc2986.tfm
+ texmf-dist/fonts/tfm/public/hfoldsty/hfoxc3583.tfm
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobi3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobl3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfobx3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfocc3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfodh3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoit3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfooc3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hforb3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hform3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosc3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosi3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosl3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoso3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoss3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfost3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfosx3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfotc3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoti3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfott3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoui3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovi3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfovt3583.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc0500.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc0600.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc0700.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc0800.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc0900.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc1000.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc1095.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc1200.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc1440.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc1728.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc2074.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc2488.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc2986.vf
+ texmf-dist/fonts/vf/public/hfoldsty/hfoxc3583.vf
+ texmf-dist/tex/latex/hfoldsty/hfoldsty.sty
+ texmf-dist/tex/latex/hfoldsty/hforbxitT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hforbxitTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hforbxnT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hforbxnTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hforbxslT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hforbxslTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hformitT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hformitTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hformnT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hformnTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hformslT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hformslTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossbxitT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossbxitTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossbxnT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossbxnTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossbxslT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossbxslTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossmitT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossmitTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossmnT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossmnTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossmslT1.cpa
+ texmf-dist/tex/latex/hfoldsty/hfossmslTS1.cpa
+ texmf-dist/tex/latex/hfoldsty/omlhfor.fd
+ texmf-dist/tex/latex/hfoldsty/omshfor.fd
+ texmf-dist/tex/latex/hfoldsty/t1hfodh.fd
+ texmf-dist/tex/latex/hfoldsty/t1hfor.fd
+ texmf-dist/tex/latex/hfoldsty/t1hfoss.fd
+ texmf-dist/tex/latex/hfoldsty/t1hfott.fd
+ texmf-dist/tex/latex/hfoldsty/t1hfovt.fd
+ texmf-dist/tex/latex/hfoldsty/ts1hfor.fd
+ texmf-dist/tex/latex/hfoldsty/ts1hfoss.fd
+ texmf-dist/tex/latex/hfoldsty/ts1hfott.fd
+ texmf-dist/tex/latex/hfoldsty/ts1hfovtt.fd
+catalogue-version 1.13
+catalogue-date 2007-10-03 12:18:35 +0200
+catalogue-ctan /fonts/hfoldsty
+catalogue-license gpl
+
+name hhtensor
+category Package
+revision 2150
+shortdesc Print vectors, matrices, and tensors.
+longdesc This package provides commands for vectors, matrices, and
+longdesc tensors with different styles — arrows (as the LaTeX
+longdesc default), underlined, and bold).
+docfiles size=180299
+ texmf-dist/doc/latex/hhtensor/README details="Package Readme"
+ texmf-dist/doc/latex/hhtensor/hhtensor.pdf details="Package documentation"
+srcfiles size=10749
+ texmf-dist/source/latex/hhtensor/Makefile
+ texmf-dist/source/latex/hhtensor/hhtensor.dtx
+ texmf-dist/source/latex/hhtensor/hhtensor.ins
+runfiles size=2218
+ texmf-dist/tex/latex/hhtensor/hhtensor.sty
+catalogue-version 0.6
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /macros/latex/contrib/hhtensor
+catalogue-license lppl
+
+name hieroglf
+category Package
+revision 977
+shortdesc The "poor man's" Egyptian Hieroglyphic font.
+longdesc The hieroglf bundle provides a Type 1 renidition of some of the
+longdesc ancient Egyptian hieroglyphs. Hieroglyphic writing was used
+longdesc between about 3000 BC and 400 AD. The bundle is based on Serge
+longdesc Rosmorduc's comprehensive hieroglyph package, but only provides
+longdesc about one tenth of his 650-odd hieroglyphs. Sufficient glyphs
+longdesc are provided for writing a few names like Cleopatra or
+longdesc Ptolomeny (together with cartouches) and some numbers, but the
+longdesc package is not for serious Egyptologists. The bundle is part of
+longdesc a set of archaic fonts, and requires use of the oands fonts
+longdesc from that set.
+docfiles size=210416
+ texmf-dist/doc/fonts/hieroglf/README
+ texmf-dist/doc/fonts/hieroglf/tryfont.pdf
+ texmf-dist/doc/fonts/hieroglf/tryfont.tex
+srcfiles size=220367
+ texmf-dist/source/latex/hieroglf/hieroglf.dtx
+ texmf-dist/source/latex/hieroglf/hieroglf.ins
+runfiles size=165880
+ texmf-dist/fonts/source/public/hieroglf/pmhg.mf
+ texmf-dist/tex/latex/hieroglf/hieroglf.sty
+ texmf-dist/tex/latex/hieroglf/ot1pmhg.fd
+ texmf-dist/tex/latex/hieroglf/t1pmhg.fd
+catalogue-version 1.3
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /fonts/archaic/hieroglf
+catalogue-license lppl
+
+name hilowres
+category Package
+revision 978
+shortdesc Support high and low resolution versions of same picture.
+longdesc A package to simplify the inclusion of low resolution versions
+longdesc of high resolution images, if each pair of files have the same
+longdesc basename (e.g., bird_low.eps and bird.eps). The package is a
+longdesc simple wrapper around the \includegraphics command of the
+longdesc graphicx package.
+srcfiles size=10250
+ texmf-dist/source/latex/hilowres/hilowres.dtx
+ texmf-dist/source/latex/hilowres/hilowres.ins
+ texmf-dist/source/latex/hilowres/readme.txt
+runfiles size=1077
+ texmf-dist/tex/latex/hilowres/hilowres.sty
+catalogue-version
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /macros/latex/contrib/hilowres
+catalogue-license unknown
+
+name histogr
+category Package
+revision 2415
+shortdesc Draw histograms with the LaTeX picture environment.
+longdesc This is a macro collection to draw histogram bars inside a
+longdesc LaTeX picture-environment.
+docfiles size=109387
+ texmf-dist/doc/latex/histogr/histogr.pdf
+srcfiles size=9313
+ texmf-dist/source/latex/histogr/histogr.dtx
+ texmf-dist/source/latex/histogr/histogr.ins
+runfiles size=1859
+ texmf-dist/tex/latex/histogr/histogr.sty
+catalogue-version 1.01
+catalogue-date 2006-11-09 15:16:55 +0100
+catalogue-ctan /macros/latex/contrib/histogr
+catalogue-license lppl1.3
+
+name hitec
+category Package
+revision 980
+shortdesc Class for documentation.
+longdesc An article-based class designed for use for documentation in
+longdesc high-technology companies.
+docfiles size=22872
+ texmf-dist/doc/latex/hitec/README details="Package Readme"
+ texmf-dist/doc/latex/hitec/hitec_doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/hitec/hitec_doc.tex
+runfiles size=21625
+ texmf-dist/tex/latex/hitec/hitec.cls
+catalogue-version 0.0(beta)
+catalogue-date 2006-12-17 23:49:42 +0100
+catalogue-ctan /macros/latex/contrib/hitec
+catalogue-license unknown
+
+name hpsdiss
+category Package
+revision 981
+shortdesc A dissertation class.
+longdesc The class was developed to typeset a dissertation at ETH
+longdesc Zürich. The requirements were to use A5 paper and 10pt type. A
+longdesc sample of the output is shown in the PDF documentation link.
+docfiles size=217818
+ texmf-dist/doc/latex/hpsdiss/hpsdiss.pdf details="Example of package use"
+srcfiles size=41281
+ texmf-dist/source/latex/hpsdiss/hpsdiss.dtx
+ texmf-dist/source/latex/hpsdiss/hpsdiss.ins
+runfiles size=21822
+ texmf-dist/tex/latex/hpsdiss/hpsdiss.cls
+catalogue-version 1.0
+catalogue-date 2007-01-07 11:47:19 +0100
+catalogue-ctan /macros/latex/contrib/hpsdiss
+catalogue-license gpl
+
+name hrlatex
+category Package
+revision 2263
+shortdesc LaTeX support for Croatian documents.
+longdesc This package simplifies creation of new documents for the
+longdesc (average) Croatian user. As an example, a class file hrdipl.cls
+longdesc (designed for the graduation thesis at the University of
+longdesc Zagreb) and sample thesis documents are included.
+docfiles size=139852
+ texmf-dist/doc/latex/hrlatex/README
+ texmf-dist/doc/latex/hrlatex/hrlatex.pdf details="Package documentation:" language="hr"
+ texmf-dist/doc/latex/hrlatex/novi.diplomski-rad.tex
+ texmf-dist/doc/latex/hrlatex/novi.ispit.tex
+ texmf-dist/doc/latex/hrlatex/sample.diplomski-rad.tex
+ texmf-dist/doc/latex/hrlatex/sample.minimal.cp1250.tex
+ texmf-dist/doc/latex/hrlatex/sample.minimal.latin2.tex
+ texmf-dist/doc/latex/hrlatex/sample.minimal.utf8.tex
+ texmf-dist/doc/latex/hrlatex/sample.prezentacija.tex
+srcfiles size=8336
+ texmf-dist/source/latex/hrlatex/hrlatex.dtx
+ texmf-dist/source/latex/hrlatex/hrlatex.ins
+runfiles size=1077
+ texmf-dist/tex/latex/hrlatex/hrlatex.sty
+catalogue-version 0.22
+catalogue-date 2007-03-07 20:05:57 +0100
+catalogue-ctan /language/croatian/hrlatex
+catalogue-license lppl
+
+name hvfloat
+category Package
+revision 982
+shortdesc Rotating caption and object of floats independently.
+longdesc This package defines a macro to place objects (tables and
+longdesc figures) and their captions in different positions with
+longdesc different rotating angles within a float. All objects and
+longdesc captions can be framed. The main command is \hvFloat{float
+longdesc type}{floating object}{caption}{label}; a simple example is
+longdesc \hvFloat{figure}{\includegraphics{rose}}{Caption}{fig:0}.
+longdesc Options are included to place captions to the right or left,
+longdesc and rotated. Setting nonFloat=true results in placing the float
+longdesc here.
+docfiles size=354866
+ texmf-dist/doc/latex/hvfloat/VERSION-1.1
+ texmf-dist/doc/latex/hvfloat/bateaux.jpg
+ texmf-dist/doc/latex/hvfloat/hvfloat.pdf
+ texmf-dist/doc/latex/hvfloat/hvfloat.tex
+ texmf-dist/doc/latex/hvfloat/rose.eps
+ texmf-dist/doc/latex/hvfloat/rose.png
+runfiles size=11410
+ texmf-dist/tex/latex/hvfloat/hvfloat.sty
+catalogue-version
+catalogue-date 2007-01-04 14:33:27 +0100
+catalogue-ctan /macros/latex/contrib/hvfloat
+catalogue-license lppl
+
+name hvmath
+category Package
+revision 983
+shortdesc Support for using the Micropress HV-Math fonts (Helvetica Maths).
+longdesc Typeset math in a style that suits the Adobe Helvetica text
+longdesc fonts. Commercial (Adobe type 1) versions of the HV-Math fonts
+longdesc are available from Micropress; free bitmap versions of the
+longdesc fonts from the Micropress fonts directories.
+docfiles size=3024
+ texmf-dist/doc/latex/hvmath/hvmaths.txt
+srcfiles size=17339
+ texmf-dist/source/latex/hvmath/hvmaths.dtx
+ texmf-dist/source/latex/hvmath/hvmaths.ins
+runfiles size=8754
+ texmf-dist/tex/latex/hvmath/hvmaths.sty
+catalogue-version 1.5
+catalogue-date 2007-01-07 12:40:14 +0100
+catalogue-ctan /macros/latex/contrib/psnfssx/hvmath
+catalogue-license lppl
+
+name hyper
+category Package
+revision 984
+shortdesc Hypertext cross referencing.
+longdesc Redefines LaTeX cross-referencing commands to insert \special
+longdesc commands for HyperTeX dvi viewers, such as recent versions of
+longdesc xdvi. The package is now largely superseded by hyperref.
+srcfiles size=167812
+ texmf-dist/source/latex/hyper/Makefile-MSDos
+ texmf-dist/source/latex/hyper/Makefile-Unix
+ texmf-dist/source/latex/hyper/README
+ texmf-dist/source/latex/hyper/TODO
+ texmf-dist/source/latex/hyper/backcite.dtx
+ texmf-dist/source/latex/hyper/contrib/README
+ texmf-dist/source/latex/hyper/contrib/harvard-to.hyp
+ texmf-dist/source/latex/hyper/dvi2pdf.pl
+ texmf-dist/source/latex/hyper/hyper.dtx
+ texmf-dist/source/latex/hyper/hyper.ins
+ texmf-dist/source/latex/hyper/scontrib/README
+ texmf-dist/source/latex/hyper/scontrib/harvard.hyp
+runfiles size=143898
+ texmf-dist/tex/latex/hyper/amsart.hyp
+ texmf-dist/tex/latex/hyper/amsbook.hyp
+ texmf-dist/tex/latex/hyper/amsdtx.hyp
+ texmf-dist/tex/latex/hyper/amsldoc.hyp
+ texmf-dist/tex/latex/hyper/amsmath.hyp
+ texmf-dist/tex/latex/hyper/amsproc.hyp
+ texmf-dist/tex/latex/hyper/amstex.hyp
+ texmf-dist/tex/latex/hyper/amsthm.hyp
+ texmf-dist/tex/latex/hyper/article.hyp
+ texmf-dist/tex/latex/hyper/book.hyp
+ texmf-dist/tex/latex/hyper/cweb.hyp
+ texmf-dist/tex/latex/hyper/doc.hyp
+ texmf-dist/tex/latex/hyper/fancyheadings.hyp
+ texmf-dist/tex/latex/hyper/ftnright.hyp
+ texmf-dist/tex/latex/hyper/hxt-bc.sty
+ texmf-dist/tex/latex/hyper/hyper.sty
+ texmf-dist/tex/latex/hyper/leqno.hyp
+ texmf-dist/tex/latex/hyper/letter.hyp
+ texmf-dist/tex/latex/hyper/longtable.hyp
+ texmf-dist/tex/latex/hyper/ltnews.hyp
+ texmf-dist/tex/latex/hyper/ltxdoc.hyp
+ texmf-dist/tex/latex/hyper/ltxguide.hyp
+ texmf-dist/tex/latex/hyper/natbib.hyp
+ texmf-dist/tex/latex/hyper/proc.hyp
+ texmf-dist/tex/latex/hyper/report.hyp
+ texmf-dist/tex/latex/hyper/slides.hyp
+ texmf-dist/tex/latex/hyper/subeqnarray.hyp
+ texmf-dist/tex/latex/hyper/theorem.hyp
+ texmf-dist/tex/latex/hyper/upref.hyp
+ texmf-dist/tex/latex/hyper/xr.hyp
+catalogue-version 4.2d
+catalogue-date 2006-12-13 17:56:54 +0100
+catalogue-ctan /macros/latex/contrib/hyper
+catalogue-license lppl
+
+name hyperref
+category Package
+revision 5453
+shortdesc Extensive support for hypertext in LaTeX.
+longdesc The hyperref package is used to handle cross-referencing
+longdesc commands in LaTeX to produce hypertext links in the document.
+longdesc The package provides backends for the \special set defined for
+longdesc HyperTeX DVI processors; for embedded pdfmark commands for
+longdesc processing by Acrobat Distiller (dvips and Y&Y's dvipsone); for
+longdesc Y&Y's dviwindo; for PDF control within pdfTeX and dvipdfm; for
+longdesc TeX4ht; and for VTeX's pdf and HTML backends. The package is
+longdesc distributed with the backref and nameref packages, which make
+longdesc use of the facilities of hyperref. The package depends on the
+longdesc author's kvoptions and refcount packages.
+docfiles size=5146317
+ texmf-dist/doc/latex/hyperref/ChangeLog
+ texmf-dist/doc/latex/hyperref/ChangeLog.pdf
+ texmf-dist/doc/latex/hyperref/README details="Package README"
+ texmf-dist/doc/latex/hyperref/README.pdf details="Package README, hyper-crossreferenced"
+ texmf-dist/doc/latex/hyperref/cmmi10-22.gif
+ texmf-dist/doc/latex/hyperref/cmsy10-21.gif
+ texmf-dist/doc/latex/hyperref/hyperref.pdf
+ texmf-dist/doc/latex/hyperref/manual.css
+ texmf-dist/doc/latex/hyperref/manual.html
+ texmf-dist/doc/latex/hyperref/manual.pdf
+ texmf-dist/doc/latex/hyperref/manual2.html
+ texmf-dist/doc/latex/hyperref/manual3.html
+ texmf-dist/doc/latex/hyperref/options.pdf
+ texmf-dist/doc/latex/hyperref/paper.pdf
+ texmf-dist/doc/latex/hyperref/slides.pdf
+srcfiles size=862419
+ texmf-dist/source/latex/hyperref/backref.dtx
+ texmf-dist/source/latex/hyperref/bmhydoc.sty
+ texmf-dist/source/latex/hyperref/doc/fdl.tex
+ texmf-dist/source/latex/hyperref/doc/manual.tex
+ texmf-dist/source/latex/hyperref/doc/options.tex
+ texmf-dist/source/latex/hyperref/hyperref.dtx
+ texmf-dist/source/latex/hyperref/hyperref.ins
+ texmf-dist/source/latex/hyperref/nameref.dtx
+ texmf-dist/source/latex/hyperref/test/Makefile
+ texmf-dist/source/latex/hyperref/test/bit.tex
+ texmf-dist/source/latex/hyperref/test/bml.png
+ texmf-dist/source/latex/hyperref/test/bmoe.png
+ texmf-dist/source/latex/hyperref/test/bmsc.png
+ texmf-dist/source/latex/hyperref/test/bmyi.png
+ texmf-dist/source/latex/hyperref/test/bmzc.png
+ texmf-dist/source/latex/hyperref/test/hog.eps
+ texmf-dist/source/latex/hyperref/test/hog.pdf
+ texmf-dist/source/latex/hyperref/test/phys1.jpg
+ texmf-dist/source/latex/hyperref/test/phys2.jpg
+ texmf-dist/source/latex/hyperref/test/picture.eps
+ texmf-dist/source/latex/hyperref/test/picture.pdf
+ texmf-dist/source/latex/hyperref/test/picture.png
+ texmf-dist/source/latex/hyperref/test/test0.tex
+ texmf-dist/source/latex/hyperref/test/test1.tex
+ texmf-dist/source/latex/hyperref/test/test2.tex
+ texmf-dist/source/latex/hyperref/test/test3.tex
+ texmf-dist/source/latex/hyperref/test/test4.tex
+ texmf-dist/source/latex/hyperref/test/test6.tex
+ texmf-dist/source/latex/hyperref/test/test7.pdf
+ texmf-dist/source/latex/hyperref/test/test7.tex
+ texmf-dist/source/latex/hyperref/test/test8.tex
+ texmf-dist/source/latex/hyperref/test/testams.tex
+ texmf-dist/source/latex/hyperref/test/testbib.bbl
+ texmf-dist/source/latex/hyperref/test/testbib.bib
+ texmf-dist/source/latex/hyperref/test/testbib.tex
+ texmf-dist/source/latex/hyperref/test/testbma.tex
+ texmf-dist/source/latex/hyperref/test/testbmgl.tex
+ texmf-dist/source/latex/hyperref/test/testbmu.tex
+ texmf-dist/source/latex/hyperref/test/testbookmark.tex
+ texmf-dist/source/latex/hyperref/test/testfor2.tex
+ texmf-dist/source/latex/hyperref/test/testform.tex
+ texmf-dist/source/latex/hyperref/test/testnb.tex
+ texmf-dist/source/latex/hyperref/test/testoz.tex
+ texmf-dist/source/latex/hyperref/test/testslide.tex
+ texmf-dist/source/latex/hyperref/test/testurl.bbl
+ texmf-dist/source/latex/hyperref/test/testurl.bib
+ texmf-dist/source/latex/hyperref/test/testurl.tex
+runfiles size=543099
+ texmf-dist/tex/latex/hyperref/backref.sty
+ texmf-dist/tex/latex/hyperref/hdvipdfm.def
+ texmf-dist/tex/latex/hyperref/hdvips.def
+ texmf-dist/tex/latex/hyperref/hdvipson.def
+ texmf-dist/tex/latex/hyperref/hdviwind.def
+ texmf-dist/tex/latex/hyperref/hpdftex.def
+ texmf-dist/tex/latex/hyperref/htex4ht.cfg
+ texmf-dist/tex/latex/hyperref/htex4ht.def
+ texmf-dist/tex/latex/hyperref/htexture.def
+ texmf-dist/tex/latex/hyperref/hvtex.def
+ texmf-dist/tex/latex/hyperref/hvtexhtm.def
+ texmf-dist/tex/latex/hyperref/hvtexmrk.def
+ texmf-dist/tex/latex/hyperref/hylatex.ltx
+ texmf-dist/tex/latex/hyperref/hyperref.sty
+ texmf-dist/tex/latex/hyperref/hypertex.def
+ texmf-dist/tex/latex/hyperref/minitoc-hyper.sty
+ texmf-dist/tex/latex/hyperref/nameref.sty
+ texmf-dist/tex/latex/hyperref/nohyperref.sty
+ texmf-dist/tex/latex/hyperref/ntheorem-hyper.sty
+ texmf-dist/tex/latex/hyperref/pd1enc.def
+ texmf-dist/tex/latex/hyperref/pdfmark.def
+ texmf-dist/tex/latex/hyperref/puarenc.def
+ texmf-dist/tex/latex/hyperref/puenc.def
+ texmf-dist/tex/latex/hyperref/puvnenc.def
+ texmf-dist/tex/latex/hyperref/xr-hyper.sty
+catalogue-version 6.77e
+catalogue-date 2007-11-12 21:26:03 +0100
+catalogue-ctan /macros/latex/contrib/hyperref
+catalogue-license lppl
+
+name hyperref-docsrc
+category Package
+revision 5379
+docfiles size=247147
+ texmf-dist/doc/latex/hyperref-docsrc/README
+ texmf-dist/doc/latex/hyperref-docsrc/paperslides99.zip
+
+name hyperxmp
+category Package
+revision 1587
+shortdesc Embed XMP metadata within a LaTeX document.
+longdesc XMP (eXtensible Metadata Platform) is a mechanism proposed by
+longdesc Adobe for embedding document metadata within the document
+longdesc itself. The metadata is designed to be easy to extract, even by
+longdesc programs that are oblivious to the document's file format. Most
+longdesc of Adobe's applications store XMP metadata when saving files.
+longdesc Now, with the hyperxmp package, it is trivial for LaTeX
+longdesc document authors to store XMP metadata in their documents as
+longdesc well. Hyperxmp integrates seamlessly with hyperref and requires
+longdesc virtually no modifications to documents that already exploit
+longdesc hyperref's mechanisms for specifying PDF metadata. The current
+longdesc version of hyperxmp can embed the following metadata as XMP:
+longdesc author, title, subject, keywords, copyright, and license URL.
+longdesc hyperxmp currently embeds XMP only within PDF documents but is
+longdesc compatible with pdflatex, latex+dvipdfm, and
+longdesc latex+dvips+ps2pdf.
+docfiles size=295044
+ texmf-dist/doc/latex/hyperxmp/README details="Readme"
+ texmf-dist/doc/latex/hyperxmp/hyperxmp.pdf details="Package documentation"
+srcfiles size=56771
+ texmf-dist/source/latex/hyperxmp/hyperxmp.dtx
+ texmf-dist/source/latex/hyperxmp/hyperxmp.ins
+runfiles size=13935
+ texmf-dist/tex/latex/hyperxmp/hyperxmp.sty
+catalogue-version 1.1
+catalogue-date 2007-03-07 20:05:57 +0100
+catalogue-ctan /macros/latex/contrib/hyperxmp
+catalogue-license lppl
+
+name hyphen-arabic
+category TLCore
+revision 3574
+execute BuildLanguageDat ar
+execute BuildLanguageDat fa
+runfiles size=50
+ texmf/tex/generic/config/language.ar.dat
+ texmf/tex/generic/config/language.fa.dat
+
+name hyphen-base
+category TLCore
+revision 3933
+runfiles size=80060
+ texmf/tex/generic/config/language.dat
+ texmf/tex/generic/config/language.us
+ texmf/tex/generic/hyphen/cathyph.tex
+ texmf/tex/generic/hyphen/dumyhyph.tex
+ texmf/tex/generic/hyphen/hyphen.tex
+ texmf/tex/generic/hyphen/hypht1.tex
+ texmf/tex/generic/hyphen/ushyphmax.tex
+ texmf/tex/generic/hyphen/zerohyph.tex
+
+name hyphen-basque
+category TLCore
+revision 2090
+execute BuildLanguageDat ba
+runfiles size=11315
+ texmf/tex/generic/config/language.ba.dat
+ texmf/tex/generic/hyphen/bahyph.sh
+ texmf/tex/generic/hyphen/bahyph.tex
+
+name hyphen-bulgarian
+category TLCore
+revision 2090
+execute BuildLanguageDat bg
+runfiles size=26
+ texmf/tex/generic/config/language.bg.dat
+
+name hyphen-coptic
+category TLCore
+revision 3573
+execute BuildLanguageDat cop
+runfiles size=7195
+ texmf/tex/generic/config/language.cop.dat
+ texmf/tex/generic/hyphen/copthyph.tex
+
+name hyphen-croatian
+category TLCore
+revision 3573
+execute BuildLanguageDat hr
+runfiles size=9778
+ texmf/tex/generic/config/language.hr.dat
+ texmf/tex/generic/hyphen/hrhyph.tex
+
+name hyphen-czechslovak
+category TLCore
+revision 3573
+execute BuildLanguageDat cz
+runfiles size=2468
+ texmf/tex/generic/config/language.cz.dat
+ texmf/tex/generic/hyphen/czhyph.tex
+ texmf/tex/generic/hyphen/czhyphen.ex
+ texmf/tex/generic/hyphen/skhyph.tex
+ texmf/tex/generic/hyphen/skhyphen.ex
+
+name hyphen-danish
+category TLCore
+revision 3573
+execute BuildLanguageDat dk
+runfiles size=8500
+ texmf/tex/generic/config/language.dk.dat
+ texmf/tex/generic/hyphen/dkcommon.tex
+ texmf/tex/generic/hyphen/dkhyph.tex
+ texmf/tex/generic/hyphen/dkspecial.tex
+
+name hyphen-dutch
+category TLCore
+revision 3573
+execute BuildLanguageDat ne
+runfiles size=88665
+ texmf/tex/generic/config/language.ne.dat
+ texmf/tex/generic/hyphen/nehyph96.tex
+
+name hyphen-esperanto
+category TLCore
+revision 3573
+execute BuildLanguageDat eo
+runfiles size=17824
+ texmf/tex/generic/config/language.eo.dat
+ texmf/tex/generic/hyphen/eohyph.tex
+
+name hyphen-estonian
+category TLCore
+revision 3573
+execute BuildLanguageDat et
+runfiles size=8706
+ texmf/tex/generic/config/language.et.dat
+ texmf/tex/generic/hyphen/ethyph.tex
+
+name hyphen-finnish
+category TLCore
+revision 3573
+execute BuildLanguageDat fi
+runfiles size=4598
+ texmf/tex/generic/config/language.fi.dat
+ texmf/tex/generic/hyphen/fihyph.tex
+
+name hyphen-french
+category TLCore
+revision 3573
+execute BuildLanguageDat fr
+runfiles size=34861
+ texmf/tex/generic/config/language.fr.dat
+ texmf/tex/generic/hyphen/frhyph.tex
+
+name hyphen-german
+category TLCore
+revision 3573
+execute BuildLanguageDat de
+runfiles size=226791
+ texmf/tex/generic/config/language.de.dat
+ texmf/tex/generic/hyphen/dehyphn.tex
+ texmf/tex/generic/hyphen/dehypht.tex
+ texmf/tex/generic/hyphen/dehyphtex.tex
+ texmf/tex/generic/hyphen/ghyphen.README
+
+name hyphen-greek
+category TLCore
+revision 3573
+execute BuildLanguageDat gr
+runfiles size=1935732
+ texmf/doc/generic/elhyphen/README
+ texmf/doc/generic/elhyphen/anc-test.ltx
+ texmf/doc/generic/elhyphen/anc-test.pdf
+ texmf/doc/generic/elhyphen/ancient.pdf
+ texmf/doc/generic/elhyphen/compound.ltx
+ texmf/doc/generic/elhyphen/compound.pdf
+ texmf/doc/generic/elhyphen/copyrite.txt
+ texmf/doc/generic/elhyphen/modern.pdf
+ texmf/tex/generic/config/language.gr.dat
+ texmf/tex/generic/hyphen/grahyph4.tex
+ texmf/tex/generic/hyphen/grmhyph4.tex
+ texmf/tex/generic/hyphen/grphyph4.tex
+
+name hyphen-hungarian
+category TLCore
+revision 3573
+execute BuildLanguageDat hu
+docfiles size=190050
+ texmf/doc/generic/huhyphen/huhyphn.pdf
+ texmf/doc/generic/huhyphen/hyph_hu.dic
+ texmf/doc/generic/huhyphen/searchforerrors.rb
+ texmf/doc/generic/huhyphen/testhyphenation.rb
+runfiles size=94306
+ texmf/tex/generic/config/language.hu.dat
+ texmf/tex/generic/hyphen/huhyphn.tex
+
+name hyphen-ibycus
+category TLCore
+revision 3573
+execute BuildLanguageDat iby
+runfiles size=20690
+ texmf/tex/generic/config/language.iby.dat
+ texmf/tex/generic/hyphen/ibyhyph.tex
+
+name hyphen-icelandic
+category TLCore
+revision 3573
+execute BuildLanguageDat is
+runfiles size=32173
+ texmf/tex/generic/config/language.is.dat
+ texmf/tex/generic/hyphen/icehyph.tex
+
+name hyphen-indonesian
+category TLCore
+revision 3573
+execute BuildLanguageDat in
+runfiles size=3346
+ texmf/tex/generic/config/language.in.dat
+ texmf/tex/generic/hyphen/inhyph.tex
+
+name hyphen-interlingua
+category TLCore
+revision 2119
+execute BuildLanguageDat ia
+runfiles size=4498
+ texmf/tex/generic/config/language.ia.dat
+ texmf/tex/generic/hyphen/iahyphen.tex
+
+name hyphen-italian
+category TLCore
+revision 3606
+execute BuildLanguageDat it
+runfiles size=6307
+ texmf/tex/generic/config/language.it.dat
+ texmf/tex/generic/hyphen/ithyph.tex
+
+name hyphen-latin
+category TLCore
+revision 4878
+execute BuildLanguageDat la
+runfiles size=9711
+ texmf/tex/generic/config/language.la.dat
+ texmf/tex/generic/hyphen/lahyph.tex
+
+name hyphen-mongolian
+category TLCore
+revision 5096
+execute BuildLanguageDat mn
+execute BuildLanguageDat mn2a
+runfiles size=17691
+ texmf/tex/generic/config/language.mn.dat
+ texmf/tex/generic/hyphen/mnhyph.tex
+ texmf/tex/generic/hyphen/mnhyphn.tex
+
+name hyphen-norwegian
+category TLCore
+revision 5375
+execute BuildLanguageDat no
+execute BuildLanguageDat nn
+execute BuildLanguageDat nb
+runfiles size=203587
+ texmf/tex/generic/config/language.no.dat
+ texmf/tex/generic/hyphen/nbhyph.tex
+ texmf/tex/generic/hyphen/nnhyph.tex
+ texmf/tex/generic/hyphen/nohyphbx.tex
+
+name hyphen-pinyin
+category TLCore
+revision 3573
+execute BuildLanguageDat py
+runfiles size=2176
+ texmf/tex/generic/config/language.py.dat
+ texmf/tex/generic/hyphen/pyhyph.tex
+
+name hyphen-polish
+category TLCore
+revision 3573
+execute BuildLanguageDat pl
+runfiles size=33878
+ texmf/tex/generic/config/language.pl.dat
+ texmf/tex/generic/hyphen/plhyph.tex
+
+name hyphen-portuguese
+category TLCore
+revision 3573
+execute BuildLanguageDat pt
+runfiles size=3586
+ texmf/tex/generic/config/language.pt.dat
+ texmf/tex/generic/hyphen/pthyph.tex
+
+name hyphen-romanian
+category TLCore
+revision 3573
+execute BuildLanguageDat ro
+runfiles size=8953
+ texmf/tex/generic/config/language.ro.dat
+ texmf/tex/generic/hyphen/rohyphen.tex
+
+name hyphen-russian
+category TLCore
+revision 3573
+depend ruhyphen
+execute BuildLanguageDat ru
+runfiles size=25
+ texmf/tex/generic/config/language.ru.dat
+
+name hyphen-serbian
+category TLCore
+revision 3573
+execute BuildLanguageDat sr
+runfiles size=22738
+ texmf/tex/generic/config/language.sr.dat
+ texmf/tex/generic/hyphen/srhyphc.tex
+
+name hyphen-slovene
+category TLCore
+revision 3635
+execute BuildLanguageDat sl
+runfiles size=11331
+ texmf/tex/generic/config/language.sl.dat
+ texmf/tex/generic/hyphen/sihyph.tex
+
+name hyphen-spanish
+category TLCore
+revision 4136
+execute BuildLanguageDat es
+runfiles size=62246
+ texmf/tex/generic/config/language.es.dat
+ texmf/tex/generic/hyphen/cahyph.tex
+ texmf/tex/generic/hyphen/eshyph.tex
+ texmf/tex/generic/hyphen/glhyph.tex
+
+name hyphen-swedish
+category TLCore
+revision 3573
+execute BuildLanguageDat sw
+runfiles size=34596
+ texmf/tex/generic/config/language.sw.dat
+ texmf/tex/generic/hyphen/svhyph.tex
+
+name hyphen-turkish
+category TLCore
+revision 3573
+execute BuildLanguageDat tk
+runfiles size=5177
+ texmf/tex/generic/config/language.tk.dat
+ texmf/tex/generic/hyphen/tkhyph.tex
+
+name hyphen-ukenglish
+category TLCore
+revision 3573
+execute BuildLanguageDat uk
+runfiles size=57179
+ texmf/tex/generic/config/language.uk.dat
+ texmf/tex/generic/hyphen/ukhyphen.tex
+
+name hyphen-ukrainian
+category TLCore
+revision 3573
+execute BuildLanguageDat ur
+runfiles size=25
+ texmf/tex/generic/config/language.ur.dat
+
+name hyphen-usorbian
+category TLCore
+revision 3573
+execute BuildLanguageDat sor
+runfiles size=13790
+ texmf/tex/generic/config/language.sor.dat
+ texmf/tex/generic/hyphen/sorhyph.tex
+
+name hyphen-welsh
+category TLCore
+revision 3573
+execute BuildLanguageDat cy
+runfiles size=43282
+ texmf/tex/generic/config/language.cy.dat
+ texmf/tex/generic/hyphen/cyhyph.tex
+
+name hyphenat
+category Package
+revision 986
+shortdesc Disable/enable hypenation.
+longdesc This package can disable all hyphenation or enable hyphenation
+longdesc of non-alphabetics or monospaced fonts. Enables hyphenation
+longdesc within ‘words’ that contain non-alphabetic characters
+longdesc (e.g., that include underscores), and hyphenation of text
+longdesc typeset in monospaced (e.g., cmtt) fonts.
+docfiles size=1046
+ texmf-dist/doc/latex/hyphenat/README details="Readme"
+srcfiles size=37405
+ texmf-dist/source/latex/hyphenat/hyphenat.dtx
+ texmf-dist/source/latex/hyphenat/hyphenat.ins
+runfiles size=5341
+ texmf-dist/tex/latex/hyphenat/hyphenat.sty
+catalogue-version 2.3b
+catalogue-date 2007-01-07 15:47:33 +0100
+catalogue-ctan /macros/latex/contrib/hyphenat
+catalogue-license lppl
+
+name hyplain
+category Package
+revision 2356
+docfiles size=59228
+ texmf-dist/doc/plain/hyplain/README
+ texmf-dist/doc/plain/hyplain/hydoc.pdf
+ texmf-dist/doc/plain/hyplain/hydoc.tex
+runfiles size=7712
+ texmf-dist/tex/plain/hyplain/hylang.tex
+ texmf-dist/tex/plain/hyplain/hypdfplain.ini
+ texmf-dist/tex/plain/hyplain/hyplain.tex
+ texmf-dist/tex/plain/hyplain/hyrules.tex
+
+name ibycus-babel
+category Package
+revision 987
+shortdesc Use the Ibycus 4 Greek font with Babel
+longdesc This package allows you to use the Ibycus 4 font for ancient
+longdesc Greek with Babel. It uses a Perl script to generate hyphenation
+longdesc patterns for Ibycus from those for the ordinary Babel encoding,
+longdesc cbgreek. It sets up "ibycus" as a pseudo-language you can
+longdesc specify in the normal Babel manner. For proper hyphenation of
+longdesc Greek quoted in mid-paragraph, you should use it with elatex.
+longdesc See the README for details.
+docfiles size=97611
+ texmf-dist/doc/latex/ibycus-babel/README details="Readme"
+ texmf-dist/doc/latex/ibycus-babel/ibycus-babel-test.tex
+ texmf-dist/doc/latex/ibycus-babel/ibycus-babel.pdf details="Package documentation"
+ texmf-dist/doc/latex/ibycus-babel/ibyhyph.pl
+ texmf-dist/doc/latex/ibycus-babel/install.txt
+srcfiles size=16834
+ texmf-dist/source/latex/ibycus-babel/ibycus-babel.dtx
+ texmf-dist/source/latex/ibycus-babel/ibycus-babel.ins
+runfiles size=4156
+ texmf-dist/tex/latex/ibycus-babel/ibycus.ldf
+ texmf-dist/tex/latex/ibycus-babel/ufib.fd
+catalogue-version 3.0
+catalogue-date 2007-01-07 15:47:33 +0100
+catalogue-ctan /language/greek/package-babel/ibycus-babel
+catalogue-license lppl
+
+name ibygrk
+category Package
+revision 988
+shortdesc Fonts and macros to typeset ancient Greek.
+longdesc Ibycus is a Greek typeface, based on Silvio Levy’s
+longdesc realisation of a classic Didot cut of Greek type from around
+longdesc 1800. The fonts are available both as MetaFont source and in
+longdesc Adobe Type 1 format. This distribution of ibycus is accompanied
+longdesc by a set of macro packages to use it with Plain TeX or LaTeX,
+longdesc but for use with Babel, see the ibycus-babel package.
+execute addMixedMap iby.map
+docfiles size=116928
+ texmf-dist/doc/latex/ibygrk/COPYING
+ texmf-dist/doc/latex/ibygrk/NEWS
+ texmf-dist/doc/latex/ibygrk/README details="General and installation Readme"
+ texmf-dist/doc/latex/ibygrk/doc/generic/ibycus4/README details="General and installation Readme"
+ texmf-dist/doc/latex/ibygrk/iby4extr.tex
+ texmf-dist/doc/latex/ibygrk/iby4text.tex
+ texmf-dist/doc/latex/ibygrk/ibycus3.RME
+ texmf-dist/doc/latex/ibygrk/ibycus4.ltx
+ texmf-dist/doc/latex/ibygrk/ibycus4.pdf
+ texmf-dist/doc/latex/ibygrk/ibycus4.tex
+ texmf-dist/doc/latex/ibygrk/ibycusps.tex
+ texmf-dist/doc/latex/ibygrk/psibycus.ltx
+ texmf-dist/doc/latex/ibygrk/psibycus.pdf
+ texmf-dist/doc/latex/ibygrk/psibycus.tex
+ texmf-dist/doc/latex/ibygrk/pssetiby.tex
+ texmf-dist/doc/latex/ibygrk/setiby4.tex
+ texmf-dist/doc/latex/ibygrk/tlgsqq.tex
+ texmf-dist/doc/latex/ibygrk/version4.tex
+runfiles size=292805
+ texmf-dist/fonts/afm/public/ibygrk/fibb84.afm
+ texmf-dist/fonts/afm/public/ibygrk/fibr84.afm
+ texmf-dist/fonts/enc/dvips/ibygrk/IbycusHTG.enc
+ texmf-dist/fonts/map/dvips/ibygrk/iby.map
+ texmf-dist/fonts/map/dvips/ibygrk/ibycus4.map
+ texmf-dist/fonts/source/public/ibygrk/abary4.mf
+ texmf-dist/fonts/source/public/ibygrk/cigma4.mf
+ texmf-dist/fonts/source/public/ibygrk/digamma4.mf
+ texmf-dist/fonts/source/public/ibygrk/ebary4.mf
+ texmf-dist/fonts/source/public/ibygrk/fibb84.mf
+ texmf-dist/fonts/source/public/ibygrk/fibb848.mf
+ texmf-dist/fonts/source/public/ibygrk/fibb849.mf
+ texmf-dist/fonts/source/public/ibygrk/fibo84.mf
+ texmf-dist/fonts/source/public/ibygrk/fibo848.mf
+ texmf-dist/fonts/source/public/ibygrk/fibo849.mf
+ texmf-dist/fonts/source/public/ibygrk/fibr84.mf
+ texmf-dist/fonts/source/public/ibygrk/fibr848.mf
+ texmf-dist/fonts/source/public/ibygrk/fibr849.mf
+ texmf-dist/fonts/source/public/ibygrk/hbary4.mf
+ texmf-dist/fonts/source/public/ibygrk/ibary4.mf
+ texmf-dist/fonts/source/public/ibygrk/ibyacc4.mf
+ texmf-dist/fonts/source/public/ibygrk/ibycus4.mf
+ texmf-dist/fonts/source/public/ibygrk/ibylig4.mf
+ texmf-dist/fonts/source/public/ibygrk/ibylwr4.mf
+ texmf-dist/fonts/source/public/ibygrk/ibypnct4.mf
+ texmf-dist/fonts/source/public/ibygrk/ibyupr4.mf
+ texmf-dist/fonts/source/public/ibygrk/koppa4.mf
+ texmf-dist/fonts/source/public/ibygrk/obary4.mf
+ texmf-dist/fonts/source/public/ibygrk/sampi4.mf
+ texmf-dist/fonts/source/public/ibygrk/ubary4.mf
+ texmf-dist/fonts/source/public/ibygrk/version4.mf
+ texmf-dist/fonts/source/public/ibygrk/wbary4.mf
+ texmf-dist/fonts/tfm/public/ibygrk/fibb84.tfm
+ texmf-dist/fonts/tfm/public/ibygrk/fibb848.tfm
+ texmf-dist/fonts/tfm/public/ibygrk/fibb849.tfm
+ texmf-dist/fonts/tfm/public/ibygrk/fibo84.tfm
+ texmf-dist/fonts/tfm/public/ibygrk/fibo848.tfm
+ texmf-dist/fonts/tfm/public/ibygrk/fibo849.tfm
+ texmf-dist/fonts/tfm/public/ibygrk/fibr84.tfm
+ texmf-dist/fonts/tfm/public/ibygrk/fibr848.tfm
+ texmf-dist/fonts/tfm/public/ibygrk/fibr849.tfm
+ texmf-dist/fonts/type1/public/ibygrk/fibb84.pfb
+ texmf-dist/fonts/type1/public/ibygrk/fibr84.pfb
+ texmf-dist/tex/latex/ibygrk/Uibycus.fd
+ texmf-dist/tex/latex/ibygrk/Uibycus4.fd
+ texmf-dist/tex/latex/ibygrk/ibycus4.sty
+ texmf-dist/tex/latex/ibygrk/psibycus.sty
+catalogue-version 4.5
+catalogue-date 2007-07-29 11:26:52 +0200
+catalogue-ctan /fonts/greek/ibygrk
+catalogue-license gpl
+
+name icsv
+category Package
+revision 1926
+shortdesc Class for typesetting articles for the ICSV conference.
+longdesc This is an ad-hoc class for typesetting articles for the ICSV
+longdesc conference, based on the earler active-conf by the same author.
+docfiles size=224817
+ texmf-dist/doc/latex/icsv/README
+ texmf-dist/doc/latex/icsv/icsv-example.tex
+ texmf-dist/doc/latex/icsv/icsv.pdf
+srcfiles size=34902
+ texmf-dist/source/latex/icsv/icsv.dtx
+ texmf-dist/source/latex/icsv/icsv.ins
+runfiles size=15571
+ texmf-dist/tex/latex/icsv/icsv-dtx.sty
+ texmf-dist/tex/latex/icsv/icsv.cls
+catalogue-version 0.2
+catalogue-date 2007-03-08 01:12:20 +0100
+catalogue-ctan /macros/latex/contrib/conferences/icsv
+catalogue-license lppl
+
+name ieeepes
+category Package
+revision 1487
+shortdesc IEEE Power Engineering Society Transactions.
+longdesc Supports typesetting of transactions, as well as discussions
+longdesc and closures, for the IEEE Power Engineering Society
+longdesc Transactions journals.
+docfiles size=162871
+ texmf-dist/doc/latex/ieeepes/README details="Readme"
+ texmf-dist/doc/latex/ieeepes/ieeepes_check.dvi
+ texmf-dist/doc/latex/ieeepes/ieeepes_check.tex
+ texmf-dist/doc/latex/ieeepes/ieeepes_doc.dvi
+ texmf-dist/doc/latex/ieeepes/ieeepes_doc.tex
+ texmf-dist/doc/latex/ieeepes/ieeepes_skel.dvi
+ texmf-dist/doc/latex/ieeepes/ieeepes_skel.tex
+ texmf-dist/doc/latex/ieeepes/vk.eps
+runfiles size=35418
+ texmf-dist/bibtex/bib/ieeepes/ieeepes_check.bib
+ texmf-dist/bibtex/bst/ieeepes/ieeepes.bst
+ texmf-dist/tex/latex/ieeepes/ieeepes.sty
+catalogue-version 4.0
+catalogue-date 2007-01-07 15:47:33 +0100
+catalogue-ctan /macros/latex/contrib/ieeepes
+catalogue-license lppl
+
+name ifacmtg
+category Package
+revision 1487
+shortdesc Elsevier Science preprint style for IFAC meetings.
+docfiles size=353897
+ texmf-dist/doc/latex/ifacmtg/README.1st
+ texmf-dist/doc/latex/ifacmtg/ifacsam-letter.dvi
+ texmf-dist/doc/latex/ifacmtg/ifacsam-letter.tex
+ texmf-dist/doc/latex/ifacmtg/ifacsam.dvi
+ texmf-dist/doc/latex/ifacmtg/ifacsam.tex
+ texmf-dist/doc/latex/ifacmtg/instraut.pdf
+runfiles size=87996
+ texmf-dist/bibtex/bib/ifacmtg/ifacsam.bib
+ texmf-dist/bibtex/bst/ifacmtg/ifac.bst
+ texmf-dist/tex/latex/ifacmtg/ifacmtg.cls
+catalogue-version
+catalogue-date 2006-10-01 16:39:15 +0200
+catalogue-ctan /nonfree/macros/latex/contrib/ifacmtg
+catalogue-license other
+
+name ifmslide
+category Package
+revision 991
+shortdesc Presentation slides for screen and printouts.
+longdesc This package is used to produce printed slides with latex and
+longdesc online presentations with pdflatex. It is provided by the
+longdesc ‘Institute of Mechanics’ (ifm) Univ. of Technology
+longdesc Darmstadt, Germany. It is based on ideas of pdfslide, but
+longdesc completely rewritten for compatibility with texpower and
+longdesc seminar. The manual describes all functions and provides a
+longdesc sample.
+docfiles size=408416
+ texmf-dist/doc/latex/ifmslide/README details="Readme"
+ texmf-dist/doc/latex/ifmslide/ifmman.dep
+ texmf-dist/doc/latex/ifmslide/ifmman.pdf
+ texmf-dist/doc/latex/ifmslide/ifmman.tex
+srcfiles size=2198
+ texmf-dist/source/latex/ifmslide/genbutton
+runfiles size=880474
+ texmf-dist/tex/latex/ifmslide/aqua_ravines.eps
+ texmf-dist/tex/latex/ifmslide/aqua_ravines.jpg
+ texmf-dist/tex/latex/ifmslide/athenep1.eps
+ texmf-dist/tex/latex/ifmslide/athenep1.pdf
+ texmf-dist/tex/latex/ifmslide/button1c.eps
+ texmf-dist/tex/latex/ifmslide/button1c.pdf
+ texmf-dist/tex/latex/ifmslide/button1e.eps
+ texmf-dist/tex/latex/ifmslide/button1e.pdf
+ texmf-dist/tex/latex/ifmslide/buttonec.eps
+ texmf-dist/tex/latex/ifmslide/buttonec.pdf
+ texmf-dist/tex/latex/ifmslide/buttonee.eps
+ texmf-dist/tex/latex/ifmslide/buttonee.pdf
+ texmf-dist/tex/latex/ifmslide/buttongc.eps
+ texmf-dist/tex/latex/ifmslide/buttongc.pdf
+ texmf-dist/tex/latex/ifmslide/buttonge.eps
+ texmf-dist/tex/latex/ifmslide/buttonge.pdf
+ texmf-dist/tex/latex/ifmslide/ifmlogoc.eps
+ texmf-dist/tex/latex/ifmslide/ifmlogoc.pdf
+ texmf-dist/tex/latex/ifmslide/ifmlogog.eps
+ texmf-dist/tex/latex/ifmslide/ifmlogog.pdf
+ texmf-dist/tex/latex/ifmslide/ifmslide.cfg
+ texmf-dist/tex/latex/ifmslide/ifmslide.sty
+ texmf-dist/tex/latex/ifmslide/liquid_helium.eps
+ texmf-dist/tex/latex/ifmslide/liquid_helium.jpg
+catalogue-version 0.43
+catalogue-date 2007-01-07 15:47:33 +0100
+catalogue-ctan /macros/latex/contrib/ifmslide
+catalogue-license dfsg
+
+name ifsym
+category Package
+revision 992
+shortdesc A collection of symbols.
+longdesc A set of symbol fonts, written in MetaFont, offering
+longdesc (respectively) clock-face symbols, geometrical symbols, weather
+longdesc symbols, mountaineering symbols, electronic circuit symbols and
+longdesc a set of miscellaneous symbols. A LaTeX package is provided,
+longdesc that allows the user to load only those symbols needed in a
+longdesc document.
+docfiles size=150682
+ texmf-dist/doc/fonts/ifsym/ifsym.ps.gz
+runfiles size=67175
+ texmf-dist/fonts/source/public/ifsym/ifclk.gen
+ texmf-dist/fonts/source/public/ifsym/ifclk10.mf
+ texmf-dist/fonts/source/public/ifsym/ifclkb10.mf
+ texmf-dist/fonts/source/public/ifsym/ifgeo.gen
+ texmf-dist/fonts/source/public/ifsym/ifgeo10.mf
+ texmf-dist/fonts/source/public/ifsym/ifgeob10.mf
+ texmf-dist/fonts/source/public/ifsym/ifgeobn10.mf
+ texmf-dist/fonts/source/public/ifsym/ifgeobw10.mf
+ texmf-dist/fonts/source/public/ifsym/ifgeon10.mf
+ texmf-dist/fonts/source/public/ifsym/ifgeow10.mf
+ texmf-dist/fonts/source/public/ifsym/ifsym.gen
+ texmf-dist/fonts/source/public/ifsym/ifsym10.mf
+ texmf-dist/fonts/source/public/ifsym/ifsymb10.mf
+ texmf-dist/fonts/source/public/ifsym/ifsymbi10.mf
+ texmf-dist/fonts/source/public/ifsym/ifsymi10.mf
+ texmf-dist/fonts/source/public/ifsym/ifwea.gen
+ texmf-dist/fonts/source/public/ifsym/ifwea10.mf
+ texmf-dist/fonts/source/public/ifsym/ifweab10.mf
+ texmf-dist/fonts/tfm/public/ifsym/ifclk10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifclkb10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifgeo10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifgeob10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifgeobn10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifgeobw10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifgeon10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifgeow10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifsym10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifsymb10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifsymbi10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifsymi10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifwea10.tfm
+ texmf-dist/fonts/tfm/public/ifsym/ifweab10.tfm
+ texmf-dist/tex/latex/ifsym/ifsym.sty
+ texmf-dist/tex/latex/ifsym/uifblk.fd
+ texmf-dist/tex/latex/ifsym/uifclk.fd
+ texmf-dist/tex/latex/ifsym/uifgeo.fd
+ texmf-dist/tex/latex/ifsym/uifsym.fd
+ texmf-dist/tex/latex/ifsym/uifwea.fd
+catalogue-version
+catalogue-date 2007-10-05 17:38:16 +0200
+catalogue-ctan /fonts/ifsym
+catalogue-license dfsg
+
+name ifxetex
+category Package
+revision 2512
+shortdesc Am I running under XeTeX?
+longdesc A simple package which provides an \ifxetex conditional, so
+longdesc that other code can determine that it is running under XeTeX.
+longdesc The package requires the e-TeX extensions to the TeX primitive
+longdesc set.
+docfiles size=338
+ texmf-dist/doc/generic/ifxetex/README
+runfiles size=1616
+ texmf-dist/tex/generic/ifxetex/ifxetex.sty
+catalogue-version 0.3
+catalogue-date 2007-03-25 15:02:22 +0200
+catalogue-ctan /macros/xetex/latex/ifxetex/ifxetex.sty
+catalogue-license lppl
+
+name ijmart
+category Package
+revision 5195
+shortdesc LaTeX Class for the Israel Journal of Mathematics.
+longdesc The Israel Journal of Mathematics is published by The Hebrew
+longdesc University Magnes Press. This class provides LaTeX support for
+longdesc its authors and editors. It strives to achieve the distinct
+longdesc “look and feel” of the journal, while having the interface
+longdesc similar to that of the amsart document class. This will help
+longdesc authors already familiar with amsart to easily submit
+longdesc manuscripts for The Israel Journal of Mathematics or to put the
+longdesc preprints in http://www.arxiv.org with minimal changes in the
+longdesc LaTeX source.
+docfiles size=762658
+ texmf-dist/doc/latex/ijmart/README details="Readme"
+ texmf-dist/doc/latex/ijmart/ijmart.pdf details="Package documentation"
+ texmf-dist/doc/latex/ijmart/ijmsample.pdf details="Sample paper"
+ texmf-dist/doc/latex/ijmart/ijmsample.tex
+srcfiles size=54662
+ texmf-dist/source/latex/ijmart/Makefile
+ texmf-dist/source/latex/ijmart/ijmart.dtx
+ texmf-dist/source/latex/ijmart/ijmart.ins
+runfiles size=45893
+ texmf-dist/bibtex/bib/ijmart/ijmart.bib
+ texmf-dist/bibtex/bib/ijmart/ijmsample.bib
+ texmf-dist/bibtex/bst/ijmart/ijmart.bst
+ texmf-dist/tex/latex/ijmart/ijmart.cls
+catalogue-version 1.1a
+catalogue-date 2007-10-15 00:20:05 +0200
+catalogue-ctan /macros/latex/contrib/ijmart
+catalogue-license lppl
+
+name ijqc
+category Package
+revision 2621
+shortdesc BibTeX style file for the Intl. J. Quantum Chem.
+longdesc ijqc.bst is a BibTeX style file to support publication in
+longdesc Wiley's International Journal of Quantum Chemistry. It is not
+longdesc in any way officially endorsed by the publisher or editors, and
+longdesc is provided without any warranty one could ever think of.
+docfiles size=147015
+ texmf-dist/doc/bibtex/ijqc/README details="Package Readme"
+ texmf-dist/doc/bibtex/ijqc/makefile
+ texmf-dist/doc/bibtex/ijqc/mybib.bib
+ texmf-dist/doc/bibtex/ijqc/xampl.pdf details="Example output"
+ texmf-dist/doc/bibtex/ijqc/xampl.tex
+runfiles size=25702
+ texmf-dist/bibtex/bst/ijqc/ijqc.bst
+catalogue-version 1.2
+catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-ctan /biblio/bibtex/contrib/ijqc
+catalogue-license lppl
+
+name imac
+category Package
+revision 1487
+shortdesc International Modal Analysis Conference format.
+longdesc A set of files for producing correctly formatted documents for
+longdesc the International Modal Analysis Conference. The bundle
+longdesc provides a LaTeX package and a BibTeX style file.
+docfiles size=21281
+ texmf-dist/doc/latex/imac/imac.dvi
+ texmf-dist/doc/latex/imac/imac.tex
+ texmf-dist/doc/latex/imac/readme.txt
+runfiles size=28575
+ texmf-dist/bibtex/bib/imac/imac.bib
+ texmf-dist/bibtex/bst/imac/imac.bst
+ texmf-dist/tex/latex/imac/imac.sty
+catalogue-version
+catalogue-date 2006-12-12 00:29:31 +0100
+catalogue-ctan /macros/latex/contrib/imac
+catalogue-license gpl
+
+name image-gallery
+category Package
+revision 5454
+shortdesc Create an overview of pictures from a digital camera or from other sources.
+longdesc The LaTeX class `image-gallery' can be used to create an
+longdesc overview of pictures from a digital camera or from other
+longdesc sources. It is possible to adjust the size of the pictures and
+longdesc all the margins. The example file shows the usage.
+docfiles size=1581266
+ texmf-dist/doc/latex/image-gallery/README details="Readme"
+ texmf-dist/doc/latex/image-gallery/gallery-example.pdf details="Example output"
+ texmf-dist/doc/latex/image-gallery/gallery-example.tex
+ texmf-dist/doc/latex/image-gallery/mypics.txt
+ texmf-dist/doc/latex/image-gallery/pic001.jpg
+ texmf-dist/doc/latex/image-gallery/pic002.jpg
+ texmf-dist/doc/latex/image-gallery/pic003.jpg
+ texmf-dist/doc/latex/image-gallery/pic004.jpg
+ texmf-dist/doc/latex/image-gallery/pic005.jpg
+ texmf-dist/doc/latex/image-gallery/pic006.jpg
+ texmf-dist/doc/latex/image-gallery/pic007.jpg
+ texmf-dist/doc/latex/image-gallery/pic008.jpg
+ texmf-dist/doc/latex/image-gallery/pic009.jpg
+ texmf-dist/doc/latex/image-gallery/pic010.jpg
+ texmf-dist/doc/latex/image-gallery/pic011.jpg
+ texmf-dist/doc/latex/image-gallery/pic012.jpg
+ texmf-dist/doc/latex/image-gallery/pic013.jpg
+ texmf-dist/doc/latex/image-gallery/pic014.jpg
+ texmf-dist/doc/latex/image-gallery/pic015.jpg
+ texmf-dist/doc/latex/image-gallery/pic016.jpg
+ texmf-dist/doc/latex/image-gallery/pic017.jpg
+ texmf-dist/doc/latex/image-gallery/pic018.jpg
+ texmf-dist/doc/latex/image-gallery/pic019.jpg
+ texmf-dist/doc/latex/image-gallery/pic020.jpg
+ texmf-dist/doc/latex/image-gallery/pic021.jpg
+ texmf-dist/doc/latex/image-gallery/pic022.jpg
+runfiles size=4513
+ texmf-dist/tex/latex/image-gallery/image-gallery.cls
+catalogue-version v1.0j
+catalogue-date 2007-10-04 14:59:48 +0200
+catalogue-ctan /macros/latex/contrib/image-gallery
+catalogue-license lppl
+
+name impatient
+category Documentation
+revision 1487
+shortdesc Free edition of the book "TeX for the Impatient"
+longdesc This directory mirrors the canonical source of the project
+longdesc which is maintaining the book “TeX for the Impatient”,
+longdesc which is now out of print. A version translated to French is
+longdesc also available.
+docfiles size=2478010
+ texmf-doc/doc/english/impatient/Makefile
+ texmf-doc/doc/english/impatient/README details="Basic project information:"
+ texmf-doc/doc/english/impatient/backm.tex
+ texmf-doc/doc/english/impatient/book.aux
+ texmf-doc/doc/english/impatient/book.ccs
+ texmf-doc/doc/english/impatient/book.idx
+ texmf-doc/doc/english/impatient/book.pdf details="A copy of the book:"
+ texmf-doc/doc/english/impatient/book.sdx
+ texmf-doc/doc/english/impatient/book.tex
+ texmf-doc/doc/english/impatient/book.toc
+ texmf-doc/doc/english/impatient/capsule.tex
+ texmf-doc/doc/english/impatient/concepts.tex
+ texmf-doc/doc/english/impatient/config.tex
+ texmf-doc/doc/english/impatient/copyrght.tex
+ texmf-doc/doc/english/impatient/eplain.tex
+ texmf-doc/doc/english/impatient/errata.future
+ texmf-doc/doc/english/impatient/errors.tex
+ texmf-doc/doc/english/impatient/examples.tex
+ texmf-doc/doc/english/impatient/fdl.tex
+ texmf-doc/doc/english/impatient/fonts.tex
+ texmf-doc/doc/english/impatient/frontm.tex
+ texmf-doc/doc/english/impatient/genops.tex
+ texmf-doc/doc/english/impatient/index.tex
+ texmf-doc/doc/english/impatient/index1.icn
+ texmf-doc/doc/english/impatient/index2.icn
+ texmf-doc/doc/english/impatient/macros.tex
+ texmf-doc/doc/english/impatient/math.tex
+ texmf-doc/doc/english/impatient/modes.tex
+ texmf-doc/doc/english/impatient/pages.tex
+ texmf-doc/doc/english/impatient/paras.tex
+ texmf-doc/doc/english/impatient/preface.tex
+ texmf-doc/doc/english/impatient/read1st.tex
+ texmf-doc/doc/english/impatient/tips.tex
+ texmf-doc/doc/english/impatient/usebook.tex
+ texmf-doc/doc/english/impatient/usermacs.tex
+ texmf-doc/doc/english/impatient/usingtex.tex
+ texmf-doc/doc/english/impatient/xmptext.tex
+catalogue-version
+catalogue-date 2007-04-05 18:07:19 +0200
+catalogue-ctan /info/impatient
+catalogue-license fdl
+
+name impatient-fr
+category Documentation
+revision 16
+docfiles size=2585586
+ texmf-doc/doc/french/impatient-fr/README
+ texmf-doc/doc/french/impatient-fr/config.tex
+ texmf-doc/doc/french/impatient-fr/eplain.tex
+ texmf-doc/doc/french/impatient-fr/fbackm.tex
+ texmf-doc/doc/french/impatient-fr/fbook.pdf
+ texmf-doc/doc/french/impatient-fr/fbook.sdx
+ texmf-doc/doc/french/impatient-fr/fbook.tex
+ texmf-doc/doc/french/impatient-fr/fcapsule.tex
+ texmf-doc/doc/french/impatient-fr/fconcept.tex
+ texmf-doc/doc/french/impatient-fr/fcopyrgh.tex
+ texmf-doc/doc/french/impatient-fr/fdl.tex
+ texmf-doc/doc/french/impatient-fr/ferrors.tex
+ texmf-doc/doc/french/impatient-fr/fexamples.tex
+ texmf-doc/doc/french/impatient-fr/ffrontm.tex
+ texmf-doc/doc/french/impatient-fr/fgenops.tex
+ texmf-doc/doc/french/impatient-fr/findex.tex
+ texmf-doc/doc/french/impatient-fr/fmacros.tex
+ texmf-doc/doc/french/impatient-fr/fmath.tex
+ texmf-doc/doc/french/impatient-fr/fmodes.tex
+ texmf-doc/doc/french/impatient-fr/fonts.tex
+ texmf-doc/doc/french/impatient-fr/fpages.tex
+ texmf-doc/doc/french/impatient-fr/fparas.tex
+ texmf-doc/doc/french/impatient-fr/fpreface.tex
+ texmf-doc/doc/french/impatient-fr/fread1st.tex
+ texmf-doc/doc/french/impatient-fr/ftips.tex
+ texmf-doc/doc/french/impatient-fr/fusebook.tex
+ texmf-doc/doc/french/impatient-fr/fusermacs.tex
+ texmf-doc/doc/french/impatient-fr/fusingtex.tex
+ texmf-doc/doc/french/impatient-fr/fxmptext.tex
+
+name index
+category Package
+revision 994
+shortdesc Extended index for LaTeX including multiple indexes.
+longdesc This is a reimplementation of LaTeX's indexing macros to
+longdesc provide better support for indexing. For example, it supports
+longdesc multiple indexes in a single document and provides a more
+longdesc robust \index command. It supplies short hand notations for the
+longdesc \index command (^{word}) and a * variation of \index
+longdesc (abbreviated _{word}) that prints the word being indexed, as
+longdesc well as creating an index entry for it.
+docfiles size=236429
+ texmf-dist/doc/latex/index/README details="Package Readme"
+ texmf-dist/doc/latex/index/TODO
+ texmf-dist/doc/latex/index/agsmtst.adx
+ texmf-dist/doc/latex/index/agsmtst.tex
+ texmf-dist/doc/latex/index/autind.tex
+ texmf-dist/doc/latex/index/index.pdf details="Package documentation"
+ texmf-dist/doc/latex/index/plaintst.adx
+ texmf-dist/doc/latex/index/plaintst.bdx
+ texmf-dist/doc/latex/index/plaintst.tex
+ texmf-dist/doc/latex/index/sample.adx
+ texmf-dist/doc/latex/index/sample.ldx
+ texmf-dist/doc/latex/index/sample.ndx
+ texmf-dist/doc/latex/index/sample.tex
+srcfiles size=50941
+ texmf-dist/source/latex/index/index.dtx
+ texmf-dist/source/latex/index/index.ins
+runfiles size=64848
+ texmf-dist/bibtex/bib/index/test.bib
+ texmf-dist/bibtex/bst/index/xagsm.bst
+ texmf-dist/bibtex/bst/index/xplain.bst
+ texmf-dist/makeindex/index/bibref.ist
+ texmf-dist/tex/latex/index/autind.sty
+ texmf-dist/tex/latex/index/bibref.sty
+ texmf-dist/tex/latex/index/index.sty
+catalogue-version 4.1beta
+catalogue-date 2006-12-12 00:29:31 +0100
+catalogue-ctan /macros/latex/contrib/index
+catalogue-license dfsg
+
+name initials
+category Package
+revision 5111
+shortdesc Adobe Type 1 decorative initial fonts.
+longdesc For each font, at least an .pfb and .tfm file is provided, with
+longdesc a .fd file for use with LaTeX.
+execute addMap Acorn.map
+execute addMap AnnSton.map
+execute addMap ArtNouv.map
+execute addMap ArtNouvc.map
+execute addMap Carrickc.map
+execute addMap Eichenla.map
+execute addMap Eileen.map
+execute addMap EileenBl.map
+execute addMap Elzevier.map
+execute addMap GotIn.map
+execute addMap GoudyIn.map
+execute addMap Kinigcap.map
+execute addMap Konanur.map
+execute addMap Kramer.map
+execute addMap MorrisIn.map
+execute addMap Nouveaud.map
+execute addMap Romantik.map
+execute addMap Rothdn.map
+execute addMap RoyalIn.map
+execute addMap Sanremo.map
+execute addMap Starburst.map
+execute addMap Typocaps.map
+execute addMap Zallman.map
+docfiles size=11068
+ texmf-dist/doc/fonts/initials/Acorn.tex
+ texmf-dist/doc/fonts/initials/AnnSton.tex
+ texmf-dist/doc/fonts/initials/ArtNouv.tex
+ texmf-dist/doc/fonts/initials/ArtNouvc.tex
+ texmf-dist/doc/fonts/initials/Carrickc.tex
+ texmf-dist/doc/fonts/initials/Eichenla.tex
+ texmf-dist/doc/fonts/initials/Eileen.tex
+ texmf-dist/doc/fonts/initials/EileenBl.tex
+ texmf-dist/doc/fonts/initials/Elzevier.tex
+ texmf-dist/doc/fonts/initials/GotIn.tex
+ texmf-dist/doc/fonts/initials/GoudyIn.tex
+ texmf-dist/doc/fonts/initials/Kinigcap.tex
+ texmf-dist/doc/fonts/initials/Konanur.tex
+ texmf-dist/doc/fonts/initials/Kramer.tex
+ texmf-dist/doc/fonts/initials/MorrisIn.tex
+ texmf-dist/doc/fonts/initials/Nouveaud.tex
+ texmf-dist/doc/fonts/initials/README
+ texmf-dist/doc/fonts/initials/Romantik.tex
+ texmf-dist/doc/fonts/initials/Rothdn.tex
+ texmf-dist/doc/fonts/initials/RoyalIn.tex
+ texmf-dist/doc/fonts/initials/Sanremo.tex
+ texmf-dist/doc/fonts/initials/Starburst.tex
+ texmf-dist/doc/fonts/initials/Typocaps.tex
+ texmf-dist/doc/fonts/initials/Zallman.tex
+runfiles size=3243730
+ texmf-dist/dvips/initials/config.Acorn
+ texmf-dist/dvips/initials/config.AnnSton
+ texmf-dist/dvips/initials/config.ArtNouv
+ texmf-dist/dvips/initials/config.ArtNouvc
+ texmf-dist/dvips/initials/config.Carrickc
+ texmf-dist/dvips/initials/config.Eichenla
+ texmf-dist/dvips/initials/config.Eileen
+ texmf-dist/dvips/initials/config.EileenBl
+ texmf-dist/dvips/initials/config.Elzevier
+ texmf-dist/dvips/initials/config.GotIn
+ texmf-dist/dvips/initials/config.GoudyIn
+ texmf-dist/dvips/initials/config.Kinigcap
+ texmf-dist/dvips/initials/config.Konanur
+ texmf-dist/dvips/initials/config.Kramer
+ texmf-dist/dvips/initials/config.MorrisIn
+ texmf-dist/dvips/initials/config.Nouveaud
+ texmf-dist/dvips/initials/config.Romantik
+ texmf-dist/dvips/initials/config.Rothdn
+ texmf-dist/dvips/initials/config.RoyalIn
+ texmf-dist/dvips/initials/config.Sanremo
+ texmf-dist/dvips/initials/config.Starburst
+ texmf-dist/dvips/initials/config.Typocaps
+ texmf-dist/dvips/initials/config.Zallman
+ texmf-dist/fonts/afm/public/initials/Acorn.afm
+ texmf-dist/fonts/afm/public/initials/AnnSton.afm
+ texmf-dist/fonts/afm/public/initials/ArtNouv.afm
+ texmf-dist/fonts/afm/public/initials/ArtNouvc.afm
+ texmf-dist/fonts/afm/public/initials/Carrickc.afm
+ texmf-dist/fonts/afm/public/initials/Eichenla.afm
+ texmf-dist/fonts/afm/public/initials/Eileen.afm
+ texmf-dist/fonts/afm/public/initials/EileenBl.afm
+ texmf-dist/fonts/afm/public/initials/Elzevier.afm
+ texmf-dist/fonts/afm/public/initials/GotIn.afm
+ texmf-dist/fonts/afm/public/initials/GoudyIn.afm
+ texmf-dist/fonts/afm/public/initials/Kinigcap.afm
+ texmf-dist/fonts/afm/public/initials/Konanur.afm
+ texmf-dist/fonts/afm/public/initials/Kramer.afm
+ texmf-dist/fonts/afm/public/initials/MorrisIn.afm
+ texmf-dist/fonts/afm/public/initials/Nouveaud.afm
+ texmf-dist/fonts/afm/public/initials/Romantik.afm
+ texmf-dist/fonts/afm/public/initials/Rothdn.afm
+ texmf-dist/fonts/afm/public/initials/RoyalIn.afm
+ texmf-dist/fonts/afm/public/initials/Sanremo.afm
+ texmf-dist/fonts/afm/public/initials/Starburst.afm
+ texmf-dist/fonts/afm/public/initials/Typocaps.afm
+ texmf-dist/fonts/afm/public/initials/Zallman.afm
+ texmf-dist/fonts/map/dvips/initials/Acorn.map
+ texmf-dist/fonts/map/dvips/initials/AnnSton.map
+ texmf-dist/fonts/map/dvips/initials/ArtNouv.map
+ texmf-dist/fonts/map/dvips/initials/ArtNouvc.map
+ texmf-dist/fonts/map/dvips/initials/Carrickc.map
+ texmf-dist/fonts/map/dvips/initials/Eichenla.map
+ texmf-dist/fonts/map/dvips/initials/Eileen.map
+ texmf-dist/fonts/map/dvips/initials/EileenBl.map
+ texmf-dist/fonts/map/dvips/initials/Elzevier.map
+ texmf-dist/fonts/map/dvips/initials/GotIn.map
+ texmf-dist/fonts/map/dvips/initials/GoudyIn.map
+ texmf-dist/fonts/map/dvips/initials/Kinigcap.map
+ texmf-dist/fonts/map/dvips/initials/Konanur.map
+ texmf-dist/fonts/map/dvips/initials/Kramer.map
+ texmf-dist/fonts/map/dvips/initials/MorrisIn.map
+ texmf-dist/fonts/map/dvips/initials/Nouveaud.map
+ texmf-dist/fonts/map/dvips/initials/Romantik.map
+ texmf-dist/fonts/map/dvips/initials/Rothdn.map
+ texmf-dist/fonts/map/dvips/initials/RoyalIn.map
+ texmf-dist/fonts/map/dvips/initials/Sanremo.map
+ texmf-dist/fonts/map/dvips/initials/Starburst.map
+ texmf-dist/fonts/map/dvips/initials/Typocaps.map
+ texmf-dist/fonts/map/dvips/initials/Zallman.map
+ texmf-dist/fonts/tfm/public/initials/Acorn.tfm
+ texmf-dist/fonts/tfm/public/initials/AnnSton.tfm
+ texmf-dist/fonts/tfm/public/initials/ArtNouv.tfm
+ texmf-dist/fonts/tfm/public/initials/ArtNouvc.tfm
+ texmf-dist/fonts/tfm/public/initials/Carrickc.tfm
+ texmf-dist/fonts/tfm/public/initials/Eichenla.tfm
+ texmf-dist/fonts/tfm/public/initials/Eileen.tfm
+ texmf-dist/fonts/tfm/public/initials/EileenBl.tfm
+ texmf-dist/fonts/tfm/public/initials/Elzevier.tfm
+ texmf-dist/fonts/tfm/public/initials/GotIn.tfm
+ texmf-dist/fonts/tfm/public/initials/GoudyIn.tfm
+ texmf-dist/fonts/tfm/public/initials/Kinigcap.tfm
+ texmf-dist/fonts/tfm/public/initials/Konanur.tfm
+ texmf-dist/fonts/tfm/public/initials/Kramer.tfm
+ texmf-dist/fonts/tfm/public/initials/MorrisIn.tfm
+ texmf-dist/fonts/tfm/public/initials/Nouveaud.tfm
+ texmf-dist/fonts/tfm/public/initials/Romantik.tfm
+ texmf-dist/fonts/tfm/public/initials/Rothdn.tfm
+ texmf-dist/fonts/tfm/public/initials/RoyalIn.tfm
+ texmf-dist/fonts/tfm/public/initials/Sanremo.tfm
+ texmf-dist/fonts/tfm/public/initials/Starburst.tfm
+ texmf-dist/fonts/tfm/public/initials/Typocaps.tfm
+ texmf-dist/fonts/tfm/public/initials/Zallman.tfm
+ texmf-dist/fonts/type1/public/initials/Acorn.pfb
+ texmf-dist/fonts/type1/public/initials/AnnSton.pfb
+ texmf-dist/fonts/type1/public/initials/ArtNouv.pfb
+ texmf-dist/fonts/type1/public/initials/ArtNouvc.pfb
+ texmf-dist/fonts/type1/public/initials/Carrickc.pfb
+ texmf-dist/fonts/type1/public/initials/Eichenla.pfb
+ texmf-dist/fonts/type1/public/initials/Eileen.pfb
+ texmf-dist/fonts/type1/public/initials/EileenBl.pfb
+ texmf-dist/fonts/type1/public/initials/Elzevier.pfb
+ texmf-dist/fonts/type1/public/initials/GotIn.pfb
+ texmf-dist/fonts/type1/public/initials/GoudyIn.pfb
+ texmf-dist/fonts/type1/public/initials/Kinigcap.pfb
+ texmf-dist/fonts/type1/public/initials/Konanur.pfb
+ texmf-dist/fonts/type1/public/initials/Kramer.pfb
+ texmf-dist/fonts/type1/public/initials/MorrisIn.pfb
+ texmf-dist/fonts/type1/public/initials/Nouveaud.pfb
+ texmf-dist/fonts/type1/public/initials/Romantik.pfb
+ texmf-dist/fonts/type1/public/initials/Rothdn.pfb
+ texmf-dist/fonts/type1/public/initials/RoyalIn.pfb
+ texmf-dist/fonts/type1/public/initials/Sanremo.pfb
+ texmf-dist/fonts/type1/public/initials/Starburst.pfb
+ texmf-dist/fonts/type1/public/initials/Typocaps.pfb
+ texmf-dist/fonts/type1/public/initials/Zallman.pfb
+ texmf-dist/tex/latex/initials/Acorn.fd
+ texmf-dist/tex/latex/initials/AnnSton.fd
+ texmf-dist/tex/latex/initials/ArtNouv.fd
+ texmf-dist/tex/latex/initials/ArtNouvc.fd
+ texmf-dist/tex/latex/initials/Carrickc.fd
+ texmf-dist/tex/latex/initials/Eichenla.fd
+ texmf-dist/tex/latex/initials/Eileen.fd
+ texmf-dist/tex/latex/initials/EileenBl.fd
+ texmf-dist/tex/latex/initials/Elzevier.fd
+ texmf-dist/tex/latex/initials/GotIn.fd
+ texmf-dist/tex/latex/initials/GoudyIn.fd
+ texmf-dist/tex/latex/initials/Kinigcap.fd
+ texmf-dist/tex/latex/initials/Konanur.fd
+ texmf-dist/tex/latex/initials/Kramer.fd
+ texmf-dist/tex/latex/initials/MorrisIn.fd
+ texmf-dist/tex/latex/initials/Nouveaud.fd
+ texmf-dist/tex/latex/initials/Romantik.fd
+ texmf-dist/tex/latex/initials/Rothdn.fd
+ texmf-dist/tex/latex/initials/RoyalIn.fd
+ texmf-dist/tex/latex/initials/Sanremo.fd
+ texmf-dist/tex/latex/initials/Starburst.fd
+ texmf-dist/tex/latex/initials/Typocaps.fd
+ texmf-dist/tex/latex/initials/Zallman.fd
+catalogue-version
+catalogue-date 2007-10-05 09:52:46 +0200
+catalogue-ctan /fonts/initials
+catalogue-license lppl
+
+name inlinebib
+category Package
+revision 995
+shortdesc Citations in footnotes.
+longdesc A BibTeX style and a LaTeX package that allow for a full
+longdesc bibliography at the end of the document as well as citation
+longdesc details in footnotes. The footnote details include "op. cit."
+longdesc and "ibid." contractions.
+docfiles size=27952
+ texmf-dist/doc/latex/inlinebib/MANIFEST
+ texmf-dist/doc/latex/inlinebib/inlinebib.htm details="Package documentation"
+ texmf-dist/doc/latex/inlinebib/inlinebib.txt
+ texmf-dist/doc/latex/inlinebib/inlinebib1.gif
+ texmf-dist/doc/latex/inlinebib/inlinebib2.gif
+runfiles size=26240
+ texmf-dist/bibtex/bst/inlinebib/inlinebib.bst
+ texmf-dist/tex/latex/inlinebib/inlinebib.sty
+ texmf-dist/tex/latex/inlinebib/pageranges.sty
+catalogue-version
+catalogue-date 2006-12-12 00:29:31 +0100
+catalogue-ctan /biblio/bibtex/contrib/inlinebib
+catalogue-license lppl
+
+name insbox
+category Package
+revision 1487
+shortdesc A TeX macro for inserting pictures/boxes into paragraphs.
+docfiles size=70321
+ texmf-dist/doc/generic/insbox/demo.dvi
+ texmf-dist/doc/generic/insbox/demo.tex
+ texmf-dist/doc/generic/insbox/pic1.eps
+ texmf-dist/doc/generic/insbox/pic2.eps
+runfiles size=7669
+ texmf-dist/tex/generic/insbox/insbox.tex
+catalogue-version 2.2
+catalogue-date 2007-01-07 15:47:33 +0100
+catalogue-ctan /macros/generic/insbox
+catalogue-license pd
+
+name interactiveworkbook
+category Package
+revision 5007
+shortdesc latex-based interactive PDF on the web
+longdesc The package interactiveworkbook gives the user the ability to
+longdesc write LaTeX documents which, ultimately, create interactive
+longdesc question-and-answer Portable Document Format (PDF) tutorials
+longdesc meant to be used by Internet students and that, in particular,
+longdesc freely use mathematical notation.
+docfiles size=627763
+ texmf-dist/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.pdf
+ texmf-dist/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.tex
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/WS_FTP.LOG
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/buttonappearance.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/checkclear.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/checksubmit.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques1.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques10.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques11.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques12.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques13.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques14.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques15.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques16.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques17.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques18.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques19.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques2.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques20.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques3.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques4.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques5.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques6.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques7.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques8.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/exerques9.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/fieldclear.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/fieldsubmit.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/ndex.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/next.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonecheckfive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonecheckfour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonecheckone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonecheckthree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonechecktwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonefieldfive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonefieldfour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonefieldone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonefieldthree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonefieldtwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonepopupfive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonepopupfour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonepopupone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonepopupthree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageonepopuptwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageoneradiofive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageoneradiofour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageoneradioone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageoneradiothree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pageoneradiotwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreecheckfive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreecheckfour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreecheckone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreecheckthree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreechecktwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreefieldfive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreefieldfour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreefieldone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreefieldthree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreefieldtwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreepopupfive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreepopupfour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreepopupone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreepopupthree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreepopuptwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreeradiofive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreeradiofour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreeradioone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreeradiothree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagethreeradiotwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwocheckfive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwocheckfour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwocheckone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwocheckthree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwochecktwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwofieldfive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwofieldfour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwofieldone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwofieldthree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwofieldtwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwopopupfive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwopopupfour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwopopupone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwopopupthree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetwopopuptwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetworadiofive.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetworadiofour.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetworadioone.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetworadiothree.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/pagetworadiotwo.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/popupclear.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/popupsubmit.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/prev.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/radioclear.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/radiosubmit.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/return.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/rightcheckcorrect.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/rightfieldcorrect.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/rightpopupcorrect.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/rightradiocorrect.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/wrongcheckcorrect.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/wrongfieldcorrect.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/wrongpopupcorrect.eps
+ texmf-dist/doc/latex/interactiveworkbook/epsfiles/wrongradiocorrect.eps
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/check.pdf
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/check.tex
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/field.pdf
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/field.tex
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/ndex.pdf
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/ndex.tex
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/popup.pdf
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/popup.tex
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/radio.pdf
+ texmf-dist/doc/latex/interactiveworkbook/samplefiles/radio.tex
+runfiles size=65709
+ texmf-dist/tex/latex/interactiveworkbook/interactiveworkbook-web.sty
+ texmf-dist/tex/latex/interactiveworkbook/interactiveworkbook.sty
+catalogue-version
+catalogue-date 2006-10-06 13:44:13 +0200
+catalogue-ctan /macros/latex/contrib/interactiveworkbook
+catalogue-license lppl
+
+name inversepath
+category Package
+revision 4204
+shortdesc Calculate inverse file paths.
+longdesc The package calculates inverse relative paths. Such things may
+longdesc be useful, for example, when writing an auxiliary file to a
+longdesc different directory.
+docfiles size=87867
+ texmf-dist/doc/latex/inversepath/README details="Readme"
+ texmf-dist/doc/latex/inversepath/dtx-style.sty
+ texmf-dist/doc/latex/inversepath/inversepath.pdf details="Package documentation"
+srcfiles size=12601
+ texmf-dist/source/latex/inversepath/inversepath.dtx
+ texmf-dist/source/latex/inversepath/inversepath.ins
+runfiles size=2360
+ texmf-dist/tex/latex/inversepath/inversepath.sty
+catalogue-version 0.1
+catalogue-date 2007-05-13 12:01:55 +0200
+catalogue-ctan /macros/latex/contrib/inversepath
+catalogue-license lppl1.3
+
+name invoice
+category Package
+revision 996
+shortdesc Generate invoices.
+longdesc The invoice package is used for generating invoices. Supports
+longdesc Afrikaans and Italian. Includes invisible expense items and
+longdesc deductions.
+docfiles size=123234
+ texmf-dist/doc/latex/invoice/00README.tex
+ texmf-dist/doc/latex/invoice/COPYING
+ texmf-dist/doc/latex/invoice/HISTORY
+ texmf-dist/doc/latex/invoice/INSTALL
+ texmf-dist/doc/latex/invoice/invoice.pdf
+ texmf-dist/doc/latex/invoice/invoice.tex
+runfiles size=37972
+ texmf-dist/tex/latex/invoice/invoice.def
+ texmf-dist/tex/latex/invoice/invoice.sty
+catalogue-version
+catalogue-date 2007-01-07 15:47:33 +0100
+catalogue-ctan /macros/latex/contrib/invoice
+catalogue-license dfsg
+
+name iopart-num
+category Package
+revision 2946
+shortdesc Numeric citation style for IOP journals.
+longdesc BibTeX style providing numeric citation in Harvard-like format.
+longdesc Intended for use with Institute of Physics (IOP) journals,
+longdesc including Journal of Physics.
+docfiles size=70993
+ texmf-dist/doc/bibtex/iopart-num/README details="Readme"
+ texmf-dist/doc/bibtex/iopart-num/iopart-num.bib
+ texmf-dist/doc/bibtex/iopart-num/iopart-num.pdf details="Package documentation"
+ texmf-dist/doc/bibtex/iopart-num/iopart-num.tex
+runfiles size=34731
+ texmf-dist/bibtex/bst/iopart-num/iopart-num.bst
+catalogue-version 2.0
+catalogue-date 2006-12-22 20:06:19 +0100
+catalogue-ctan /biblio/bibtex/contrib/iopart-num
+catalogue-license lppl
+
+name ipa
+category Package
+revision 1487
+shortdesc LaTeX macros for using WSUIPA fonts..
+longdesc The package comprises the LaTeX component of wsuipa package. It
+longdesc is not available separately on CTAN.
+docfiles size=60142
+ texmf-dist/doc/latex/ipa/README
+ texmf-dist/doc/latex/ipa/ipaman.dvi
+ texmf-dist/doc/latex/ipa/ipaman.tex
+runfiles size=12191
+ texmf-dist/tex/latex/ipa/Uipa.fd
+ texmf-dist/tex/latex/ipa/ipa.sty
+catalogue-version
+catalogue-date 2007-01-21 11:18:26 +0100
+catalogue-ctan
+catalogue-license unknown
+
+name iso
+category Package
+revision 998
+shortdesc Generic ISO standards typesetting macros.
+longdesc Generic class and package files for typesetting ISO
+longdesc International Standard documents. Several standard documents
+longdesc have been printed by ISO from camera-ready copy prepared using
+longdesc LaTeX and these files.
+docfiles size=593872
+ texmf-dist/doc/latex/iso/README details="Readme"
+ texmf-dist/doc/latex/iso/isoman.pdf details="Package manual"
+ texmf-dist/doc/latex/iso/isoman.tex
+srcfiles size=183174
+ texmf-dist/source/latex/iso/isoe.dtx
+ texmf-dist/source/latex/iso/isoe.ins
+runfiles size=66444
+ texmf-dist/makeindex/iso/iso.ist
+ texmf-dist/tex/latex/iso/askincv1.sty
+ texmf-dist/tex/latex/iso/iso10.clo
+ texmf-dist/tex/latex/iso/iso11.clo
+ texmf-dist/tex/latex/iso/iso9.clo
+ texmf-dist/tex/latex/iso/isofwdbp.tex
+ texmf-dist/tex/latex/iso/isov2.cls
+ texmf-dist/tex/latex/iso/trfwd1.tex
+ texmf-dist/tex/latex/iso/tspasfwdbp.tex
+catalogue-version 2.4
+catalogue-date 2007-01-09 14:09:22 +0100
+catalogue-ctan /macros/latex/contrib/isostds/iso
+catalogue-license lppl
+
+name iso10303
+category Package
+revision 999
+shortdesc Typesetting the STEP standards.
+longdesc Class and package files building on iso for typesetting the ISO
+longdesc 10303 (STEP) standards. Standard documents prepared using these
+longdesc packages have been published by ISO.
+docfiles size=435113
+ texmf-dist/doc/latex/iso10303/stepman.pdf details="Package manual"
+srcfiles size=159330
+ texmf-dist/source/latex/iso10303/README
+ texmf-dist/source/latex/iso10303/stepe.dtx
+ texmf-dist/source/latex/iso10303/stepe.ins
+runfiles size=218575
+ texmf-dist/tex/latex/iso10303/aicv1.sty
+ texmf-dist/tex/latex/iso10303/apendint.tex
+ texmf-dist/tex/latex/iso10303/apmpspec.tex
+ texmf-dist/tex/latex/iso10303/apmptbl.tex
+ texmf-dist/tex/latex/iso10303/apmptempl.tex
+ texmf-dist/tex/latex/iso10303/apsstempl.tex
+ texmf-dist/tex/latex/iso10303/apv12.sty
+ texmf-dist/tex/latex/iso10303/atsv11.sty
+ texmf-dist/tex/latex/iso10303/bpfap1.tex
+ texmf-dist/tex/latex/iso10303/bpfap10.tex
+ texmf-dist/tex/latex/iso10303/bpfap11.tex
+ texmf-dist/tex/latex/iso10303/bpfap12.tex
+ texmf-dist/tex/latex/iso10303/bpfap13.tex
+ texmf-dist/tex/latex/iso10303/bpfap14.tex
+ texmf-dist/tex/latex/iso10303/bpfap15.tex
+ texmf-dist/tex/latex/iso10303/bpfap16.tex
+ texmf-dist/tex/latex/iso10303/bpfap2.tex
+ texmf-dist/tex/latex/iso10303/bpfap3.tex
+ texmf-dist/tex/latex/iso10303/bpfap4.tex
+ texmf-dist/tex/latex/iso10303/bpfap5.tex
+ texmf-dist/tex/latex/iso10303/bpfap6.tex
+ texmf-dist/tex/latex/iso10303/bpfap7.tex
+ texmf-dist/tex/latex/iso10303/bpfap8.tex
+ texmf-dist/tex/latex/iso10303/bpfap9.tex
+ texmf-dist/tex/latex/iso10303/bpfats1.tex
+ texmf-dist/tex/latex/iso10303/bpfats10.tex
+ texmf-dist/tex/latex/iso10303/bpfats11.tex
+ texmf-dist/tex/latex/iso10303/bpfats12.tex
+ texmf-dist/tex/latex/iso10303/bpfats14.tex
+ texmf-dist/tex/latex/iso10303/bpfats2.tex
+ texmf-dist/tex/latex/iso10303/bpfats3.tex
+ texmf-dist/tex/latex/iso10303/bpfats4.tex
+ texmf-dist/tex/latex/iso10303/bpfats5.tex
+ texmf-dist/tex/latex/iso10303/bpfats6.tex
+ texmf-dist/tex/latex/iso10303/bpfats7.tex
+ texmf-dist/tex/latex/iso10303/bpfats8.tex
+ texmf-dist/tex/latex/iso10303/bpfats9.tex
+ texmf-dist/tex/latex/iso10303/bpfir1.tex
+ texmf-dist/tex/latex/iso10303/bpfir2.tex
+ texmf-dist/tex/latex/iso10303/bpfir3.tex
+ texmf-dist/tex/latex/iso10303/bpfs1.tex
+ texmf-dist/tex/latex/iso10303/bpfs2.tex
+ texmf-dist/tex/latex/iso10303/bpfs3.tex
+ texmf-dist/tex/latex/iso10303/irv12.sty
+ texmf-dist/tex/latex/iso10303/stepman.tex
+ texmf-dist/tex/latex/iso10303/stepv13.sty
+ texmf-dist/tex/latex/iso10303/stppdlst.tex
+catalogue-version 1.5
+catalogue-date 2007-01-09 14:09:22 +0100
+catalogue-ctan /macros/latex/contrib/isostds/iso10303
+catalogue-license lppl
+
+name isodate
+category Package
+revision 1000
+shortdesc Tune the output format of dates according to language.
+longdesc This package provides ten output formats of the commands
+longdesc \today, \printdate, \printdateTeX, and \daterange (partly
+longdesc language dependent). Formats available are: ISO (yyyy-mm-dd),
+longdesc numeric (e.g. dd.\,mm.~yyyy), short (e.g. dd.\,mm.\,yy), TeX
+longdesc (yyyy/mm/dd), original (e.g. dd. mmm yyyy), short original
+longdesc (e.g. dd. mmm yy), as well as numerical formats with Roman
+longdesc numerals for the month. The commands \printdate and
+longdesc \printdateTeX print any date. The command \daterange prints a
+longdesc date range and leaves out unnecessary year or month entries.
+longdesc This package supports German (old and new rules), Austrian, US
+longdesc English, British English, French, Danish, Swedish, and
+longdesc Norwegian.
+docfiles size=490634
+ texmf-dist/doc/latex/isodate/ChangeLog
+ texmf-dist/doc/latex/isodate/README details="Package Readme"
+ texmf-dist/doc/latex/isodate/getversion.tex
+ texmf-dist/doc/latex/isodate/install.bat
+ texmf-dist/doc/latex/isodate/install.sh
+ texmf-dist/doc/latex/isodate/isodate.pdf details="Package documentation"
+ texmf-dist/doc/latex/isodate/isodate.xml
+ texmf-dist/doc/latex/isodate/isodateo.pdf
+ texmf-dist/doc/latex/isodate/testdate.pdf details="Test document showing styles"
+ texmf-dist/doc/latex/isodate/testdate.tex
+ texmf-dist/doc/latex/isodate/testisodate_without_babel.pdf
+ texmf-dist/doc/latex/isodate/testisodate_without_babel.tex
+srcfiles size=130944
+ texmf-dist/source/latex/isodate/Makefile
+ texmf-dist/source/latex/isodate/isodate.dtx
+ texmf-dist/source/latex/isodate/isodate.ins
+ texmf-dist/source/latex/isodate/isodateo.dtx
+runfiles size=50152
+ texmf-dist/tex/latex/isodate/danish.idf
+ texmf-dist/tex/latex/isodate/english.idf
+ texmf-dist/tex/latex/isodate/french.idf
+ texmf-dist/tex/latex/isodate/german.idf
+ texmf-dist/tex/latex/isodate/isodate.sty
+ texmf-dist/tex/latex/isodate/isodateo.sty
+ texmf-dist/tex/latex/isodate/norsk.idf
+ texmf-dist/tex/latex/isodate/swedish.idf
+catalogue-version 2.28
+catalogue-date 2006-12-08 14:34:19 +0100
+catalogue-ctan /macros/latex/contrib/isodate
+catalogue-license lppl
+
+name isodoc
+category Package
+revision 4789
+shortdesc A LaTeX class for the preparation of letters and invoices.
+longdesc The isodoc class can be used for the preparation of letters and
+longdesc invoices (and, in the future, similar documents). Documents are
+longdesc set up with options, thus making the class easily adaptable to
+longdesc user's wishes and extensible for other document types. The
+longdesc class is based on Victor Eijkhout's NTG brief class, which
+longdesc implements the NEN1026 standard.
+docfiles size=1733356
+ texmf-dist/doc/latex/isodoc/README
+ texmf-dist/doc/latex/isodoc/accept.tex
+ texmf-dist/doc/latex/isodoc/binaries.m64
+ texmf-dist/doc/latex/isodoc/inst
+ texmf-dist/doc/latex/isodoc/invoice.tex
+ texmf-dist/doc/latex/isodoc/isodoc.cls
+ texmf-dist/doc/latex/isodoc/isodoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/isodoc/letter.tex
+ texmf-dist/doc/latex/isodoc/listkeys
+ texmf-dist/doc/latex/isodoc/logoletter.tex
+ texmf-dist/doc/latex/isodoc/logostyle.sty
+ texmf-dist/doc/latex/isodoc/mystyle.sty
+ texmf-dist/doc/latex/isodoc/ntgletter.tex
+ texmf-dist/doc/latex/isodoc/typo
+srcfiles size=77395
+ texmf-dist/source/latex/isodoc/isodoc.dtx
+ texmf-dist/source/latex/isodoc/isodoc.ins
+runfiles size=2595
+ texmf-dist/tex/latex/isodoc/isontg.sty
+ texmf-dist/tex/latex/isodoc/isowybo.sty
+catalogue-version 0.3
+catalogue-date 2007-08-23 09:50:29 +0200
+catalogue-ctan /macros/latex/contrib/isodoc
+catalogue-license lppl
+
+name isorot
+category Package
+revision 1001
+shortdesc Rotation of document elements.
+longdesc The isorot package is for rotation of document elements. It is
+longdesc a combination of the lscape package and an extension of the
+longdesc rotating package. The package is designed for use with the iso
+longdesc class but may be used with any normal class.
+docfiles size=198643
+ texmf-dist/doc/latex/isorot/README details="Package Readme"
+ texmf-dist/doc/latex/isorot/rotman.pdf details="Package documentation"
+ texmf-dist/doc/latex/isorot/rotman.tex
+srcfiles size=50122
+ texmf-dist/source/latex/isorot/isorot.dtx
+ texmf-dist/source/latex/isorot/isorot.ins
+runfiles size=6833
+ texmf-dist/tex/latex/isorot/isorot.sty
+catalogue-version
+catalogue-date 2007-01-08 13:31:52 +0100
+catalogue-ctan /macros/latex/contrib/isorot
+catalogue-license lppl
+
+name isotope
+category Package
+revision 1002
+shortdesc A package for type setting isotopes
+longdesc The package provides a command \isotope for setting the atomic
+longdesc weight and atomic number indications of isotopes. (The naive
+longdesc way of doing the job with (La)TeX mathematics commands produces
+longdesc an unsatisfactory result.)
+srcfiles size=7902
+ texmf-dist/source/latex/isotope/isotope.dtx
+ texmf-dist/source/latex/isotope/isotope.ins
+runfiles size=1620
+ texmf-dist/tex/latex/isotope/isotope.sty
+catalogue-version
+catalogue-date 2006-10-12 01:01:23 +0200
+catalogue-ctan /macros/latex/contrib/isotope
+catalogue-license lppl
+
+name itnumpar
+category Package
+revision 4117
+shortdesc Spell numbers in words (Italian).
+longdesc Sometimes we need to say “Capitolo primo” or “Capitolo
+longdesc uno” instead of “Capitolo 1", that is, spelling the number
+longdesc in words instead of the usual digit form. This package provides
+longdesc support for spelling out numbers in words, both in cardinal and
+longdesc in ordinal form.
+docfiles size=148457
+ texmf-dist/doc/latex/itnumpar/README details="Readme"
+ texmf-dist/doc/latex/itnumpar/itnumpar.pdf details="Package documentation"
+srcfiles size=28612
+ texmf-dist/source/latex/itnumpar/itnumpar.dtx
+ texmf-dist/source/latex/itnumpar/itnumpar.ins
+runfiles size=7359
+ texmf-dist/tex/latex/itnumpar/itnumpar.sty
+catalogue-version 1.0
+catalogue-date 2007-04-10 11:08:30 +0200
+catalogue-ctan /macros/latex/contrib/itnumpar
+catalogue-license lppl
+
+name itrans
+category Package
+revision 1003
+docfiles size=398466
+ texmf-dist/doc/fonts/itrans/README
+ texmf-dist/doc/fonts/itrans/beng.itx
+ texmf-dist/doc/fonts/itrans/dvnc.itx
+ texmf-dist/doc/fonts/itrans/dvng.itx
+ texmf-dist/doc/fonts/itrans/ex_latex.itx
+ texmf-dist/doc/fonts/itrans/ex_ltn1.itx
+ texmf-dist/doc/fonts/itrans/ex_ps.itx
+ texmf-dist/doc/fonts/itrans/ex_utf8.itx
+ texmf-dist/doc/fonts/itrans/flag.ips
+ texmf-dist/doc/fonts/itrans/gujdoc.itx
+ texmf-dist/doc/fonts/itrans/icsx.itx
+ texmf-dist/doc/fonts/itrans/idoc.itx
+ texmf-dist/doc/fonts/itrans/kantex.itx
+ texmf-dist/doc/fonts/itrans/nehru.itx
+ texmf-dist/doc/fonts/itrans/pundoc.itx
+ texmf-dist/doc/fonts/itrans/romancsx.itx
+ texmf-dist/doc/fonts/itrans/tamil.itx
+ texmf-dist/doc/fonts/itrans/tblall.itx
+ texmf-dist/doc/fonts/itrans/tech.tex
+ texmf-dist/doc/fonts/itrans/tlgutx.itx
+runfiles size=1213080
+ texmf-dist/fonts/afm/public/itrans/devnac.afm
+ texmf-dist/fonts/afm/public/itrans/itxbeng.afm
+ texmf-dist/fonts/afm/public/itrans/itxguj.afm
+ texmf-dist/fonts/afm/public/itrans/ncpi____.afm
+ texmf-dist/fonts/afm/public/itrans/ncpr____.afm
+ texmf-dist/fonts/afm/public/itrans/pun.afm
+ texmf-dist/fonts/afm/public/itrans/xdvng.afm
+ texmf-dist/fonts/source/public/itrans/kan12.mf
+ texmf-dist/fonts/source/public/itrans/kan12b.mf
+ texmf-dist/fonts/source/public/itrans/kan12nx.mf
+ texmf-dist/fonts/source/public/itrans/kan12ny.mf
+ texmf-dist/fonts/source/public/itrans/kan12s.mf
+ texmf-dist/fonts/source/public/itrans/kan18.mf
+ texmf-dist/fonts/source/public/itrans/kanbase.mf
+ texmf-dist/fonts/source/public/itrans/kancodes.mf
+ texmf-dist/fonts/source/public/itrans/kanlets.mf
+ texmf-dist/fonts/source/public/itrans/kanmain.mf
+ texmf-dist/fonts/source/public/itrans/kanparam.mf
+ texmf-dist/fonts/source/public/itrans/kanspc.mf
+ texmf-dist/fonts/source/public/itrans/kanvarna.mf
+ texmf-dist/fonts/source/public/itrans/tamilORG.mf
+ texmf-dist/fonts/source/public/itrans/tel12.mf
+ texmf-dist/fonts/source/public/itrans/tel12b.mf
+ texmf-dist/fonts/source/public/itrans/tel12nx.mf
+ texmf-dist/fonts/source/public/itrans/tel12ny.mf
+ texmf-dist/fonts/source/public/itrans/tel12s.mf
+ texmf-dist/fonts/source/public/itrans/tel18.mf
+ texmf-dist/fonts/source/public/itrans/telbase.mf
+ texmf-dist/fonts/source/public/itrans/telchrs1.mf
+ texmf-dist/fonts/source/public/itrans/telchrs2.mf
+ texmf-dist/fonts/source/public/itrans/telchrs3.mf
+ texmf-dist/fonts/source/public/itrans/telcodes.mf
+ texmf-dist/fonts/source/public/itrans/telmode.mf
+ texmf-dist/fonts/source/public/itrans/telparam.mf
+ texmf-dist/fonts/source/public/itrans/telspc.mf
+ texmf-dist/fonts/source/public/itrans/telugu.mf
+ texmf-dist/fonts/source/public/itrans/wntml12.mf
+ texmf-dist/fonts/source/public/itrans/wntml17.mf
+ texmf-dist/fonts/tfm/public/itrans/dnh.tfm
+ texmf-dist/fonts/tfm/public/itrans/dnho.tfm
+ texmf-dist/fonts/tfm/public/itrans/dnhrc.tfm
+ texmf-dist/fonts/tfm/public/itrans/dnhre.tfm
+ texmf-dist/fonts/tfm/public/itrans/dvpn10.tfm
+ texmf-dist/fonts/tfm/public/itrans/itxbeng.tfm
+ texmf-dist/fonts/tfm/public/itrans/itxbengo.tfm
+ texmf-dist/fonts/tfm/public/itrans/itxbngrc.tfm
+ texmf-dist/fonts/tfm/public/itrans/itxbngre.tfm
+ texmf-dist/fonts/tfm/public/itrans/itxguj.tfm
+ texmf-dist/fonts/tfm/public/itrans/itxgujo.tfm
+ texmf-dist/fonts/tfm/public/itrans/itxgujrc.tfm
+ texmf-dist/fonts/tfm/public/itrans/itxgujre.tfm
+ texmf-dist/fonts/tfm/public/itrans/kan12.tfm
+ texmf-dist/fonts/tfm/public/itrans/kan12b.tfm
+ texmf-dist/fonts/tfm/public/itrans/kan12nx.tfm
+ texmf-dist/fonts/tfm/public/itrans/kan12s.tfm
+ texmf-dist/fonts/tfm/public/itrans/kan18.tfm
+ texmf-dist/fonts/tfm/public/itrans/ncpicsxp.tfm
+ texmf-dist/fonts/tfm/public/itrans/ncprcsxp.tfm
+ texmf-dist/fonts/tfm/public/itrans/pun.tfm
+ texmf-dist/fonts/tfm/public/itrans/tel12.tfm
+ texmf-dist/fonts/tfm/public/itrans/tel12b.tfm
+ texmf-dist/fonts/tfm/public/itrans/tel12nx.tfm
+ texmf-dist/fonts/tfm/public/itrans/tel12ny.tfm
+ texmf-dist/fonts/tfm/public/itrans/tel12s.tfm
+ texmf-dist/fonts/tfm/public/itrans/tel18.tfm
+ texmf-dist/fonts/tfm/public/itrans/telspc.tfm
+ texmf-dist/fonts/tfm/public/itrans/wntml12.tfm
+ texmf-dist/fonts/tfm/public/itrans/wntml17.tfm
+ texmf-dist/fonts/truetype/public/itrans/itxbeng.ttf
+ texmf-dist/fonts/truetype/public/itrans/itxguj.ttf
+ texmf-dist/fonts/truetype/public/itrans/ncpi____.ttf
+ texmf-dist/fonts/truetype/public/itrans/ncpr____.ttf
+ texmf-dist/fonts/truetype/public/itrans/xdvng.ttf
+ texmf-dist/fonts/type1/public/itrans/ncpi____.pfb
+ texmf-dist/fonts/type1/public/itrans/ncpr____.pfb
+ texmf-dist/fonts/type1/public/itrans/pun.pfb
+ texmf-dist/fonts/type1/public/itrans/xdvng.pfb
+ texmf-dist/tex/latex/itrans/htmlstub.sty
+ texmf-dist/tex/latex/itrans/idevn.tex
+ texmf-dist/tex/latex/itrans/itrans.sty
+ texmf-dist/tex/latex/itrans/itrnstlg.tex
+
+name iwona
+category Package
+revision 3952
+shortdesc A two-element sans-serif font.
+longdesc Iwona is a two-element sans-serif typeface. It was created as
+longdesc an alternative version of the Kurier typeface, which was
+longdesc designed in 1975 for a diploma in typeface design at the Warsaw
+longdesc Academy of Fine Arts under the supervision of Roman
+longdesc Tomaszewski. This distribution contains a significantly
+longdesc extended set of characters covering the following modern
+longdesc alphabets: latin (including Vietnamese), Cyrillic and Greek as
+longdesc well as a number of additional symbols (including mathematical
+longdesc symbols). The fonts are prepared in Type 1 and OpenType
+longdesc formats. For use with TeX the following encoding files have
+longdesc been prepared: T1 (ec), T2 (abc), and OT2—Cyrillic, T5
+longdesc (Vietnamese), OT4, QX, texansi and nonstandard (IL2 for the
+longdesc Czech fonts), as well as supporting macros and files defining
+longdesc fonts for LaTeX.
+execute addMap iwona.map
+docfiles size=40626
+ texmf-dist/doc/fonts/iwona/00readme.eng details="Outline in English:"
+ texmf-dist/doc/fonts/iwona/00readme.pol details="Outline in Polish:"
+ texmf-dist/doc/fonts/iwona/GUST-FONT-NOSOURCE-LICENSE.txt
+ texmf-dist/doc/fonts/iwona/MANIFEST.txt
+ texmf-dist/doc/fonts/iwona/iwona-latex-cyr.tex
+ texmf-dist/doc/fonts/iwona/iwona-latex-math.tex
+ texmf-dist/doc/fonts/iwona/iwona-latex-pl.tex
+ texmf-dist/doc/fonts/iwona/iwona-latex-t2a.tex
+ texmf-dist/doc/fonts/iwona/iwona-latex-t5.tex
+ texmf-dist/doc/fonts/iwona/iwona-mathtest.tex
+ texmf-dist/doc/fonts/iwona/iwona-table.tex
+runfiles size=17744487
+ texmf-dist/fonts/afm/public/iwona/iwonab.afm
+ texmf-dist/fonts/afm/public/iwona/iwonabi.afm
+ texmf-dist/fonts/afm/public/iwona/iwonacb.afm
+ texmf-dist/fonts/afm/public/iwona/iwonacbi.afm
+ texmf-dist/fonts/afm/public/iwona/iwonach.afm
+ texmf-dist/fonts/afm/public/iwona/iwonachi.afm
+ texmf-dist/fonts/afm/public/iwona/iwonacl.afm
+ texmf-dist/fonts/afm/public/iwona/iwonacli.afm
+ texmf-dist/fonts/afm/public/iwona/iwonacm.afm
+ texmf-dist/fonts/afm/public/iwona/iwonacmi.afm
+ texmf-dist/fonts/afm/public/iwona/iwonacr.afm
+ texmf-dist/fonts/afm/public/iwona/iwonacri.afm
+ texmf-dist/fonts/afm/public/iwona/iwonah.afm
+ texmf-dist/fonts/afm/public/iwona/iwonahi.afm
+ texmf-dist/fonts/afm/public/iwona/iwonal.afm
+ texmf-dist/fonts/afm/public/iwona/iwonali.afm
+ texmf-dist/fonts/afm/public/iwona/iwonam.afm
+ texmf-dist/fonts/afm/public/iwona/iwonami.afm
+ texmf-dist/fonts/afm/public/iwona/iwonar.afm
+ texmf-dist/fonts/afm/public/iwona/iwonari.afm
+ texmf-dist/fonts/enc/dvips/iwona/iwona-cs.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-ec.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-el.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-ex.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-exp.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-greek.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-mi.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-qx.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-rm.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-sy.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-t2a.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-t2b.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-t2c.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-t5.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-texnansi.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-ts1.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwona-wncy.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwonacap-cs.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwonacap-ec.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwonacap-qx.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwonacap-t5.enc
+ texmf-dist/fonts/enc/dvips/iwona/iwonacap-texnansi.enc
+ texmf-dist/fonts/map/dvips/iwona/iwona-cs.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-ec.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-el.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-ex.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-exp.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-greek.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-mi.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-qx.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-rm.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-sy.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-t2a.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-t2b.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-t2c.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-t5.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-texnansi.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-ts1.map
+ texmf-dist/fonts/map/dvips/iwona/iwona-wncy.map
+ texmf-dist/fonts/map/dvips/iwona/iwona.map
+ texmf-dist/fonts/opentype/public/iwona/Iwona-Bold.otf
+ texmf-dist/fonts/opentype/public/iwona/Iwona-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/iwona/Iwona-Italic.otf
+ texmf-dist/fonts/opentype/public/iwona/Iwona-Regular.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCond-Bold.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCond-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCond-Italic.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCond-Regular.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCondHeavy-Italic.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCondHeavy-Regular.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCondLight-Italic.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCondLight-Regular.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCondMedium-Italic.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaCondMedium-Regular.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaHeavy-Italic.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaHeavy-Regular.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaLight-Italic.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaLight-Regular.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaMedium-Italic.otf
+ texmf-dist/fonts/opentype/public/iwona/IwonaMedium-Regular.otf
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonabcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonabicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacbcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacbicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonachcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonachicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonaclcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonaclicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacmcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacmicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacrcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonacricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonahcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonahicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonalcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonalicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonamcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonamicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonarcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/cs-iwonaricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonabcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonabicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacbcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacbicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonachcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonachicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonaclcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonaclicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacmcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacmicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacrcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonacricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonahcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonahicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonalcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonalicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonamcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonamicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonarcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/ec-iwonaricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/el-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/ex-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/exp-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/greek-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/mi-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonabcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonabicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacbcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacbicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonachcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonachicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonaclcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonaclicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacmcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacmicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacrcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonacricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonahcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonahicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonalcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonalicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonamcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonamicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonarcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/qx-iwonaricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/rm-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonabz.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonacbz.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonachz.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonaclz.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonacmz.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonacrz.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonahz.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonalz.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonamz.tfm
+ texmf-dist/fonts/tfm/public/iwona/sy-iwonarz.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2a-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2b-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/t2c-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonabcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonabicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacbcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacbicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonachcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonachicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonaclcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonaclicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacmcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacmicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacrcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonacricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonahcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonahicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonalcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonalicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonamcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonamicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonarcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/t5-iwonaricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonabcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonabicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacbcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacbicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonachcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonachicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonaclcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonaclicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacmcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacmicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacrcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonacricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonahcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonahicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonalcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonalicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonamcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonamicap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonarcap.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/texnansi-iwonaricap.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/ts1-iwonari.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonab.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonabi.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonacb.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonacbi.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonach.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonachi.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonacl.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonacli.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonacm.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonacmi.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonacr.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonacri.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonah.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonahi.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonal.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonali.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonam.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonami.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonar.tfm
+ texmf-dist/fonts/tfm/public/iwona/wncy-iwonari.tfm
+ texmf-dist/fonts/type1/public/iwona/iwonab.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonabi.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonacb.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonacbi.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonach.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonachi.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonacl.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonacli.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonacm.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonacmi.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonacr.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonacri.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonah.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonahi.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonal.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonali.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonam.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonami.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonar.pfb
+ texmf-dist/fonts/type1/public/iwona/iwonari.pfb
+ texmf-dist/tex/latex/iwona/il2iwona.fd
+ texmf-dist/tex/latex/iwona/il2iwonac.fd
+ texmf-dist/tex/latex/iwona/il2iwonal.fd
+ texmf-dist/tex/latex/iwona/il2iwonalc.fd
+ texmf-dist/tex/latex/iwona/iwona.sty
+ texmf-dist/tex/latex/iwona/ly1iwona.fd
+ texmf-dist/tex/latex/iwona/ly1iwonac.fd
+ texmf-dist/tex/latex/iwona/ly1iwonal.fd
+ texmf-dist/tex/latex/iwona/ly1iwonalc.fd
+ texmf-dist/tex/latex/iwona/omliwona.fd
+ texmf-dist/tex/latex/iwona/omliwonac.fd
+ texmf-dist/tex/latex/iwona/omliwonal.fd
+ texmf-dist/tex/latex/iwona/omliwonalc.fd
+ texmf-dist/tex/latex/iwona/omsiwona.fd
+ texmf-dist/tex/latex/iwona/omsiwonac.fd
+ texmf-dist/tex/latex/iwona/omsiwonal.fd
+ texmf-dist/tex/latex/iwona/omsiwonalc.fd
+ texmf-dist/tex/latex/iwona/omxiwona.fd
+ texmf-dist/tex/latex/iwona/omxiwonac.fd
+ texmf-dist/tex/latex/iwona/omxiwonal.fd
+ texmf-dist/tex/latex/iwona/omxiwonalc.fd
+ texmf-dist/tex/latex/iwona/ot1iwona.fd
+ texmf-dist/tex/latex/iwona/ot1iwonac.fd
+ texmf-dist/tex/latex/iwona/ot1iwonacm.fd
+ texmf-dist/tex/latex/iwona/ot1iwonal.fd
+ texmf-dist/tex/latex/iwona/ot1iwonalc.fd
+ texmf-dist/tex/latex/iwona/ot1iwonalcm.fd
+ texmf-dist/tex/latex/iwona/ot1iwonalm.fd
+ texmf-dist/tex/latex/iwona/ot1iwonam.fd
+ texmf-dist/tex/latex/iwona/ot2iwona.fd
+ texmf-dist/tex/latex/iwona/ot2iwonac.fd
+ texmf-dist/tex/latex/iwona/ot2iwonal.fd
+ texmf-dist/tex/latex/iwona/ot2iwonalc.fd
+ texmf-dist/tex/latex/iwona/ot4iwona.fd
+ texmf-dist/tex/latex/iwona/ot4iwonac.fd
+ texmf-dist/tex/latex/iwona/ot4iwonal.fd
+ texmf-dist/tex/latex/iwona/ot4iwonalc.fd
+ texmf-dist/tex/latex/iwona/qxiwona.fd
+ texmf-dist/tex/latex/iwona/qxiwonac.fd
+ texmf-dist/tex/latex/iwona/qxiwonal.fd
+ texmf-dist/tex/latex/iwona/qxiwonalc.fd
+ texmf-dist/tex/latex/iwona/t1iwona.fd
+ texmf-dist/tex/latex/iwona/t1iwonac.fd
+ texmf-dist/tex/latex/iwona/t1iwonal.fd
+ texmf-dist/tex/latex/iwona/t1iwonalc.fd
+ texmf-dist/tex/latex/iwona/t2aiwona.fd
+ texmf-dist/tex/latex/iwona/t2aiwonac.fd
+ texmf-dist/tex/latex/iwona/t2aiwonal.fd
+ texmf-dist/tex/latex/iwona/t2aiwonalc.fd
+ texmf-dist/tex/latex/iwona/t2biwona.fd
+ texmf-dist/tex/latex/iwona/t2biwonac.fd
+ texmf-dist/tex/latex/iwona/t2biwonal.fd
+ texmf-dist/tex/latex/iwona/t2biwonalc.fd
+ texmf-dist/tex/latex/iwona/t2ciwona.fd
+ texmf-dist/tex/latex/iwona/t2ciwonac.fd
+ texmf-dist/tex/latex/iwona/t2ciwonal.fd
+ texmf-dist/tex/latex/iwona/t2ciwonalc.fd
+ texmf-dist/tex/latex/iwona/t5iwona.fd
+ texmf-dist/tex/latex/iwona/t5iwonac.fd
+ texmf-dist/tex/latex/iwona/t5iwonal.fd
+ texmf-dist/tex/latex/iwona/t5iwonalc.fd
+ texmf-dist/tex/latex/iwona/ts1iwona.fd
+ texmf-dist/tex/latex/iwona/ts1iwonac.fd
+ texmf-dist/tex/latex/iwona/ts1iwonal.fd
+ texmf-dist/tex/latex/iwona/ts1iwonalc.fd
+ texmf-dist/tex/plain/iwona/iwona-math.tex
+catalogue-version 0.991
+catalogue-date 2007-06-09 14:01:41 +0200
+catalogue-ctan /fonts/iwona
+catalogue-license gfsl
+
+name jadetex
+category Package
+revision 614
+shortdesc Macros supporting Jade DSSSL output.
+longdesc Macro package on top of LaTeX to typeset TeX output of the Jade
+longdesc DSSSL implementation.
+docfiles size=253903
+ texmf-dist/doc/jadetex/base/Makefile
+ texmf-dist/doc/jadetex/base/demo.sgm
+ texmf-dist/doc/jadetex/base/docbook.dsl
+ texmf-dist/doc/jadetex/base/index.html
+ texmf-dist/doc/jadetex/base/index.xml
+ texmf-dist/doc/jadetex/base/index.xsl
+ texmf-dist/doc/jadetex/base/install.pdf
+ texmf-dist/doc/jadetex/base/install.sgm
+ texmf-dist/doc/jadetex/base/jadetex.1
+ texmf-dist/doc/jadetex/base/jadetex.cfg
+ texmf-dist/doc/jadetex/base/logo.png
+ texmf-dist/doc/jadetex/base/pdfjadetex.1
+ texmf-dist/doc/jadetex/base/releasenotes.dsl
+ texmf-dist/doc/jadetex/base/releasenotes.html
+ texmf-dist/doc/jadetex/base/releasenotes.pdf
+ texmf-dist/doc/jadetex/base/releasenotes.xml
+srcfiles size=92369
+ texmf-dist/source/jadetex/base/ChangeLog
+ texmf-dist/source/jadetex/base/ChangeLog-old
+ texmf-dist/source/jadetex/base/Makefile
+ texmf-dist/source/jadetex/base/jadetex.dtx
+ texmf-dist/source/jadetex/base/jadetex.ins
+runfiles size=228383
+ texmf-dist/tex/jadetex/base/dsssl.def
+ texmf-dist/tex/jadetex/base/jadetex.ltx
+ texmf-dist/tex/jadetex/base/uentities.sty
+ texmf-dist/tex/jadetex/base/ut1omlgc.fd
+ texmf-dist/tex/jadetex/config/jadetex.ini
+ texmf-dist/tex/jadetex/config/pdfjadetex.ini
+catalogue-version 3.13
+catalogue-date 2006-12-15 11:08:32 +0100
+catalogue-ctan /macros/jadetex/jadetex-3.13.tar.gz
+catalogue-license dfsg
+
+name japanese
+category Package
+revision 4632
+shortdesc A substitute for a babel package for Japanese.
+longdesc The package behaves in a similar way as if you provided the
+longdesc (non-existent) Japanese option to babel so that you can handle
+longdesc Japanese language text in LaTeX documents. The package requires
+longdesc a Japanese-enabled TeX system, such as pTeX or jTeX.
+docfiles size=209020
+ texmf-dist/doc/latex/CJK/doc/japanese/README details="Readme"
+ texmf-dist/doc/latex/CJK/doc/japanese/ascii.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/japanese.jis
+ texmf-dist/doc/latex/CJK/doc/japanese/japanese.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/jp-fonts.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/jp-tex.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/preview.txt
+ texmf-dist/doc/latex/CJK/doc/japanese/shibuaki.txt
+ texmf-dist/doc/latex/japanese/README details="Readme"
+ texmf-dist/doc/latex/japanese/langxmpl.dat
+ texmf-dist/doc/latex/japanese/readme.pdf details="Readme (Japanese)" language="ja"
+ texmf-dist/doc/latex/japanese/readme.tex
+ texmf-dist/doc/latex/japanese/sample.pdf
+ texmf-dist/doc/latex/japanese/sample.tex
+srcfiles size=14276
+ texmf-dist/source/latex/japanese/japanese.drv
+ texmf-dist/source/latex/japanese/japanese.dtx
+ texmf-dist/source/latex/japanese/japanese.ins
+runfiles size=1689
+ texmf-dist/tex/latex/japanese/japanese.ldf
+ texmf-dist/tex/latex/japanese/japanese.sty
+catalogue-version
+catalogue-date 2007-07-25 15:54:19 +0200
+catalogue-ctan /language/japanese/japanese
+catalogue-license lppl
+
+name jeopardy
+category Package
+revision 4057
+shortdesc Build a jeopardy game in LaTeX.
+longdesc The jeopardy package allows to build a jeopardy game with
+longdesc pdfLaTeX. It is based on the jj_game class and exerquiz
+longdesc package, written by D. P. Story. The author of the game can use
+longdesc multichoice questions or fill-in questions. The answer for
+longdesc fill-in questions is either a mathematical formula or text
+longdesc string (see the documentation of exerquiz and \RespBoxMath and
+longdesc \RespBoxTxt commands to learn more about the capabilities).
+longdesc JavaScripts are written to record the score. If the score is
+longdesc greater than a given value, a hidden string is shown. The user
+longdesc should use the style with some screen presentation package,
+longdesc such as web or pdfscreen. The package is distributed with some
+longdesc example games, including both 1- and 2-player games.
+docfiles size=2222185
+ texmf-dist/doc/latex/jeopardy/README details="Package README"
+ texmf-dist/doc/latex/jeopardy/example/aleq.jpg
+ texmf-dist/doc/latex/jeopardy/example/blackpanel.tex
+ texmf-dist/doc/latex/jeopardy/example/game1-two.pdf
+ texmf-dist/doc/latex/jeopardy/example/game1-two.tex
+ texmf-dist/doc/latex/jeopardy/example/game1.pdf
+ texmf-dist/doc/latex/jeopardy/example/game1.tex
+ texmf-dist/doc/latex/jeopardy/example/game1a.pdf
+ texmf-dist/doc/latex/jeopardy/example/game1a.tex
+ texmf-dist/doc/latex/jeopardy/example/game2.pdf
+ texmf-dist/doc/latex/jeopardy/example/game2.tex
+ texmf-dist/doc/latex/jeopardy/example/game2a.pdf
+ texmf-dist/doc/latex/jeopardy/example/game2a.tex
+ texmf-dist/doc/latex/jeopardy/example/game3.pdf
+ texmf-dist/doc/latex/jeopardy/example/game3.tex
+ texmf-dist/doc/latex/jeopardy/example/game4.pdf
+ texmf-dist/doc/latex/jeopardy/example/game4.tex
+ texmf-dist/doc/latex/jeopardy/example/jeopardy-CZ.pdf
+ texmf-dist/doc/latex/jeopardy/example/jeopardy-CZ.tex
+ texmf-dist/doc/latex/jeopardy/example/joke.jpg
+ texmf-dist/doc/latex/jeopardy/example/logo-bc.jpg
+ texmf-dist/doc/latex/jeopardy/example/pdfscreen.cfg
+ texmf-dist/doc/latex/jeopardy/example/picture.jpg
+ texmf-dist/doc/latex/jeopardy/jeopardy.pdf details="Package documentation"
+srcfiles size=37316
+ texmf-dist/source/latex/jeopardy/jeopardy.dtx
+ texmf-dist/source/latex/jeopardy/jeopardy.ins
+runfiles size=21404
+ texmf-dist/tex/latex/jeopardy/jeopardy.cfg
+ texmf-dist/tex/latex/jeopardy/jeopardy.sty
+catalogue-version 1.1
+catalogue-date 2007-03-09 14:28:14 +0100
+catalogue-ctan /macros/latex/contrib/jeopardy
+catalogue-license lppl
+
+name jhep
+category Package
+revision 1005
+shortdesc JHEP style.
+longdesc A LaTeX class used to typeset manuscripts in JHEP style.
+runfiles size=58695
+ texmf-dist/tex/latex/jhep/jhep.cls
+catalogue-version
+catalogue-date 2007-01-21 11:21:56 +0100
+catalogue-ctan /macros/latex/contrib/jhep/JHEP.cls
+catalogue-license unknown
+
+name jknapltx
+category Package
+revision 1006
+catalogue jknappen
+shortdesc Miscellaneous packages by Joerg Knappen.
+longdesc Miscellaneous macros by Jörg Knappen, including: – represent
+longdesc counters in greek; – Maxwell's non-commutative division; –
+longdesc latin1jk, latin2jk and latin3jk, which are their inputenc
+longdesc definition files that allow verbatim input in the respective
+longdesc ISO Latin codes; – blackboard bold fonts in maths; – use of
+longdesc RSFS fonts in maths; – extra alignments for \parboxes; –
+longdesc swap Roman and Sans fonts; – transliterate semitic languages;
+longdesc – patches to make (La)TeX formulae embeddable in SGML; –
+longdesc use maths “minus” in text as appropriate; – simple Young
+longdesc tableaux.
+docfiles size=4361
+ texmf-dist/doc/latex/jknapltx/mathbbol.rme
+ texmf-dist/doc/latex/jknapltx/mathrsfs.rme
+runfiles size=32348
+ texmf-dist/tex/latex/jknapltx/greekctr.sty
+ texmf-dist/tex/latex/jknapltx/holtpolt.sty
+ texmf-dist/tex/latex/jknapltx/latin1jk.def
+ texmf-dist/tex/latex/jknapltx/latin2jk.def
+ texmf-dist/tex/latex/jknapltx/latin3jk.def
+ texmf-dist/tex/latex/jknapltx/mathbbol.sty
+ texmf-dist/tex/latex/jknapltx/mathrsfs.sty
+ texmf-dist/tex/latex/jknapltx/parboxx.sty
+ texmf-dist/tex/latex/jknapltx/sans.sty
+ texmf-dist/tex/latex/jknapltx/semtrans.sty
+ texmf-dist/tex/latex/jknapltx/sgmlcmpt.sty
+ texmf-dist/tex/latex/jknapltx/smartmn.sty
+ texmf-dist/tex/latex/jknapltx/tccompat.sty
+ texmf-dist/tex/latex/jknapltx/ursfs.fd
+ texmf-dist/tex/latex/jknapltx/ustmary.fd
+ texmf-dist/tex/latex/jknapltx/young.sty
+catalogue-version
+catalogue-date 2006-12-15 11:08:32 +0100
+catalogue-ctan /macros/latex/contrib/jknappen
+catalogue-license gpl
+
+name jmn
+category Package
+revision 2449
+runfiles size=63648
+ texmf-dist/fonts/afm/jmn/hans/hans-sh.afm
+ texmf-dist/fonts/afm/jmn/hans/hans.afm
+ texmf-dist/fonts/enc/dvips/jmn/hans.enc
+ texmf-dist/fonts/pfm/jmn/hans/hans-sh.pfm
+ texmf-dist/fonts/pfm/jmn/hans/hans.pfm
+ texmf-dist/fonts/tfm/jmn/hans/hans-sh.tfm
+ texmf-dist/fonts/tfm/jmn/hans/hans.tfm
+ texmf-dist/fonts/type1/jmn/hans/hans-sh.pfb
+ texmf-dist/fonts/type1/jmn/hans/hans.pfb
+
+name jneurosci
+category Package
+revision 1823
+shortdesc BibTeX style for the Journal of Neuroscience.
+longdesc This is a slightly modified version of the namedplus style,
+longdesc which fully conforms with the Journal of Neuroscience citation
+longdesc style. It should be characterised as an author-date citation
+longdesc style; a BibTeX style and a LaTeX package are provided.
+docfiles size=1766
+ texmf-dist/doc/latex/jneurosci/README
+runfiles size=30144
+ texmf-dist/bibtex/bst/jneurosci/jneurosci.bst
+ texmf-dist/tex/latex/jneurosci/jneurosci.sty
+catalogue-version 1.00
+catalogue-date 2007-03-08 21:58:53 +0100
+catalogue-ctan /biblio/bibtex/contrib/jneurosci
+catalogue-license lppl
+
+name jpsj
+category Package
+revision 4024
+shortdesc Document Class for Journal of the Physical Society of Japan.
+docfiles size=246785
+ texmf-dist/doc/latex/jpsj/dummy.eps
+ texmf-dist/doc/latex/jpsj/injpsj2.pdf details="Instructions for authors"
+ texmf-dist/doc/latex/jpsj/injpsj2.tex
+ texmf-dist/doc/latex/jpsj/template.tex
+runfiles size=31037
+ texmf-dist/tex/latex/jpsj/jpsj2.cls
+catalogue-version 1.2.2
+catalogue-date 2007-03-14 08:57:39 +0100
+catalogue-ctan /macros/latex/contrib/jpsj
+catalogue-license lppl
+
+name jsmisc
+category Package
+revision 1487
+docfiles size=51875
+ texmf-dist/doc/plain/jsmisc/deutsch.doc
+ texmf-dist/doc/plain/jsmisc/deutsch.dvi
+ texmf-dist/doc/plain/jsmisc/deutsch.tex
+ texmf-dist/doc/plain/jsmisc/idverb.doc
+ texmf-dist/doc/plain/jsmisc/idverb.dvi
+ texmf-dist/doc/plain/jsmisc/js-misc.dvi
+srcfiles size=37270
+ texmf-dist/source/plain/jsmisc/History
+ texmf-dist/source/plain/jsmisc/INSTALL
+ texmf-dist/source/plain/jsmisc/Imakefile
+ texmf-dist/source/plain/jsmisc/License
+ texmf-dist/source/plain/jsmisc/Makefile
+ texmf-dist/source/plain/jsmisc/README
+ texmf-dist/source/plain/jsmisc/TODO
+ texmf-dist/source/plain/jsmisc/names.sty
+ texmf-dist/source/plain/jsmisc/xfig/text-2.1-doc.tex
+ texmf-dist/source/plain/jsmisc/xfig/text-2.1.fig
+ texmf-dist/source/plain/jsmisc/xfig/text-2.1.latex
+ texmf-dist/source/plain/jsmisc/xfig/text-3.1-doc.tex
+ texmf-dist/source/plain/jsmisc/xfig/text-3.1.latex
+runfiles size=44310
+ texmf-dist/tex/plain/jsmisc/cassette.tex
+ texmf-dist/tex/plain/jsmisc/idverb.tex
+ texmf-dist/tex/plain/jsmisc/js-misc.tex
+ texmf-dist/tex/plain/jsmisc/schild.tex
+ texmf-dist/tex/plain/jsmisc/sperr.tex
+ texmf-dist/tex/plain/jsmisc/xfig.tex
+
+name jura
+category Package
+revision 1487
+shortdesc A document class for German legal texts.
+longdesc Implements the standard layout for German term papers in law
+longdesc (one-and-half linespacing, 7 cm margins, etc.). Includes
+longdesc alphanum that permits alphanumeric section numbering (e.g., A.
+longdesc Introduction; III. International Law).
+docfiles size=5624
+ texmf-dist/doc/latex/jura/juratest.dvi
+srcfiles size=64379
+ texmf-dist/source/latex/jura/jura.dtx
+ texmf-dist/source/latex/jura/jura.ins
+ texmf-dist/source/latex/jura/jura2html
+ texmf-dist/source/latex/jura/juratest.ltx
+runfiles size=12286
+ texmf-dist/tex/latex/jura/alphanum.sty
+ texmf-dist/tex/latex/jura/jura.cls
+catalogue-version
+catalogue-date 2007-01-08 14:12:54 +0100
+catalogue-ctan /macros/latex/contrib/jura
+catalogue-license gpl
+
+name juraabbrev
+category Package
+revision 1009
+shortdesc Abbreviations for typesetting (German) juridical documents.
+longdesc This package should be helpful for people working on (German)
+longdesc law. It helps you to handle abbreviations and creates a list of
+longdesc those (pre-defined) abbreviations that have actually been used
+longdesc in the document
+docfiles size=487025
+ texmf-dist/doc/latex/juraabbrev/README details="Readme"
+ texmf-dist/doc/latex/juraabbrev/abbrevtest.abb
+ texmf-dist/doc/latex/juraabbrev/abbrevtest.ldx
+ texmf-dist/doc/latex/juraabbrev/abbrevtest.tex
+ texmf-dist/doc/latex/juraabbrev/juraabbrev.4ht
+ texmf-dist/doc/latex/juraabbrev/juraabbrev.pdf details="Package documentation"
+srcfiles size=47906
+ texmf-dist/source/latex/juraabbrev/juraabbrev.dtx
+ texmf-dist/source/latex/juraabbrev/juraabbrev.ins
+runfiles size=8881
+ texmf-dist/makeindex/juraabbrev/laws.ist
+ texmf-dist/tex/latex/juraabbrev/juraabbrev.sty
+catalogue-version
+catalogue-date 2007-01-08 14:12:54 +0100
+catalogue-ctan /macros/latex/contrib/juraabbrev
+catalogue-license gpl
+
+name jurabib
+category Package
+revision 3274
+shortdesc Extended BibTeX citation support for the humanities and legal texts.
+longdesc This package enables automated citation with BibTeX for legal
+longdesc studies and the humanities. In addition, the package provides
+longdesc commands for specifying editors in a commentary in a convenient
+longdesc way. Simplified formatting of the citation as well as the
+longdesc bibliography entry is also provided. It is possible to display
+longdesc the (short) title of a work only if an authors is cited with
+longdesc multiple works. Giving a full citation in the text, conforming
+longdesc to the bibliography entry, is supported. Several options are
+longdesc provided which might be of special interest for those outside
+longdesc legal studies—for instance, displaying multiple full
+longdesc citations. In addition, the format of last names and first
+longdesc names of authors may be changed easily. Cross references to
+longdesc other footnotes are possible. Language dependent handling of
+longdesc bibliography entries is possible by the special language field.
+docfiles size=952715
+ texmf-dist/doc/latex/jurabib/changes.txt
+ texmf-dist/doc/latex/jurabib/docs/english/jbendoc.pdf details="Package documentation (English)" language="en"
+ texmf-dist/doc/latex/jurabib/docs/english/jbendoc.tex
+ texmf-dist/doc/latex/jurabib/docs/german/jbgerdoc.pdf details="Package documentation (German)" language="de"
+ texmf-dist/doc/latex/jurabib/docs/german/jbgerdoc.tex
+ texmf-dist/doc/latex/jurabib/jbtest.pdf
+ texmf-dist/doc/latex/jurabib/jbtest.tex
+ texmf-dist/doc/latex/jurabib/jbtest.url
+ texmf-dist/doc/latex/jurabib/jbtestbt.tex
+ texmf-dist/doc/latex/jurabib/jbtestbu.tex
+ texmf-dist/doc/latex/jurabib/jbtestcb.tex
+ texmf-dist/doc/latex/jurabib/jbtestcb1.tex
+ texmf-dist/doc/latex/jurabib/jbtestcb2.tex
+ texmf-dist/doc/latex/jurabib/jbtesthu.tex
+ texmf-dist/doc/latex/jurabib/jbtestmb.tex
+srcfiles size=450379
+ texmf-dist/source/latex/jurabib/jurabib.dtx
+ texmf-dist/source/latex/jurabib/jurabib.ins
+runfiles size=537626
+ texmf-dist/bibtex/bib/jurabib/book.bib
+ texmf-dist/bibtex/bib/jurabib/comment.bib
+ texmf-dist/bibtex/bib/jurabib/jbtest.bib
+ texmf-dist/bibtex/bib/jurabib/jbtesthu.bib
+ texmf-dist/bibtex/bst/jurabib/jox.bst
+ texmf-dist/bibtex/bst/jurabib/jurabib.bst
+ texmf-dist/bibtex/bst/jurabib/jureco.bst
+ texmf-dist/bibtex/bst/jurabib/jurunsrt.bst
+ texmf-dist/tex/latex/jurabib/dajbbib.ldf
+ texmf-dist/tex/latex/jurabib/dejbbib.ldf
+ texmf-dist/tex/latex/jurabib/dujbbib.ldf
+ texmf-dist/tex/latex/jurabib/enjbbib.ldf
+ texmf-dist/tex/latex/jurabib/fijbbib.ldf
+ texmf-dist/tex/latex/jurabib/frjbbib.ldf
+ texmf-dist/tex/latex/jurabib/itjbbib.ldf
+ texmf-dist/tex/latex/jurabib/jblong.cfg
+ texmf-dist/tex/latex/jurabib/jurabib.cfg
+ texmf-dist/tex/latex/jurabib/jurabib.sty
+ texmf-dist/tex/latex/jurabib/nojbbib.ldf
+ texmf-dist/tex/latex/jurabib/ptjbbib.ldf
+ texmf-dist/tex/latex/jurabib/spjbbib.ldf
+catalogue-version 0.6
+catalogue-date 2007-01-08 14:12:54 +0100
+catalogue-ctan /macros/latex/contrib/jurabib
+catalogue-license gpl
+
+name juramisc
+category Package
+revision 1723
+shortdesc Typesetting German juridical documents.
+longdesc A collection of classes for typesetting court sentences, legal
+longdesc opinions, and dissertations for German lawyers. The package is
+longdesc still under development.
+docfiles size=2059849
+ texmf-dist/doc/latex/juramisc/README details="Package README" language="de"
+ texmf-dist/doc/latex/juramisc/doc/jbkdemo.pdf
+ texmf-dist/doc/latex/juramisc/doc/jbook.dtx
+ texmf-dist/doc/latex/juramisc/doc/jbook.ins
+ texmf-dist/doc/latex/juramisc/doc/jbook.pdf
+ texmf-dist/doc/latex/juramisc/doc/jmgerdoc.pdf details="Package documentation" language="de"
+ texmf-dist/doc/latex/juramisc/doc/jmgerdoc.tex
+runfiles size=107411
+ texmf-dist/tex/latex/juramisc/jbgoe.clo
+ texmf-dist/tex/latex/juramisc/jbstgallen.clo
+ texmf-dist/tex/latex/juramisc/jbtrier.clo
+ texmf-dist/tex/latex/juramisc/jurabase.sty
+ texmf-dist/tex/latex/juramisc/jurabook.cls
+ texmf-dist/tex/latex/juramisc/juraovw.cls
+ texmf-dist/tex/latex/juramisc/juraurtl.cls
+catalogue-version 0.90
+catalogue-date 2006-10-13 13:33:51 +0200
+catalogue-ctan /macros/latex/contrib/juramisc
+catalogue-license lppl
+
+name jurarsp
+category Package
+revision 1487
+shortdesc Citations of judgements and official documents in (German) juridical documents.
+longdesc This package should be helpful for people working on (German)
+longdesc law. It (ab)uses BibTeX for citations of judgements and
+longdesc official documents. For this purpose, a special BibTeX-style is
+longdesc provided.
+docfiles size=782527
+ texmf-dist/doc/latex/jurarsp/README details="Readme"
+ texmf-dist/doc/latex/jurarsp/_18237.log
+ texmf-dist/doc/latex/jurarsp/_19046.log
+ texmf-dist/doc/latex/jurarsp/jurarsp.bst
+ texmf-dist/doc/latex/jurarsp/jurarsp.cfg
+ texmf-dist/doc/latex/jurarsp/jurarsp.dtx
+ texmf-dist/doc/latex/jurarsp/jurarsp.ins
+ texmf-dist/doc/latex/jurarsp/jurarsp.log
+ texmf-dist/doc/latex/jurarsp/jurarsp.pdf details="Package documentation" language="de"
+ texmf-dist/doc/latex/jurarsp/jurarsp.sty
+ texmf-dist/doc/latex/jurarsp/rsptest.bib
+ texmf-dist/doc/latex/jurarsp/rsptest.tex
+catalogue-version 0.52
+catalogue-date 2007-01-08 14:12:54 +0100
+catalogue-ctan /macros/latex/contrib/jurarsp
+catalogue-license gpl
+
+name kalender
+category Package
+revision 1012
+shortdesc LaTeX package for creating a calendar, in German.
+runfiles size=9941
+ texmf-dist/tex/latex/kalender/kalender.sty
+catalogue-version
+catalogue-date 2007-01-08 14:40:40 +0100
+catalogue-ctan /macros/latex/contrib/kalender
+catalogue-license unknown
+
+name karnaugh
+category Package
+revision 1013
+shortdesc Typeset Karnaugh-Veitch-maps.
+longdesc Macros intended for typesetting Karnaugh-Maps and Veitch-Charts
+longdesc in a simple and user-friendly way. Karnaugh-Maps and Veitch-
+longdesc Charts are used to display and simplify logic functions
+longdesc "manually". These macros can typeset Karnaugh-Maps and Veitch-
+longdesc Charts with up to ten variables (=1024 entries).
+docfiles size=31087
+ texmf-dist/doc/latex/karnaugh/kvdoc.tex
+runfiles size=17176
+ texmf-dist/tex/latex/karnaugh/kvmacros.tex
+catalogue-version
+catalogue-date 2007-01-08 14:40:40 +0100
+catalogue-ctan /macros/latex/contrib/karnaugh
+catalogue-license lppl
+
+name kastrup
+category Package
+revision 1487
+docfiles size=27940
+ texmf-dist/doc/generic/kastrup/binhex.dvi
+srcfiles size=22702
+ texmf-dist/source/generic/kastrup/binhex.drv
+ texmf-dist/source/generic/kastrup/binhex.dtx
+ texmf-dist/source/generic/kastrup/binhex.ins
+runfiles size=2553
+ texmf-dist/tex/generic/kastrup/binhex.tex
+
+name kdgreek
+category Package
+revision 1487
+shortdesc Greek fonts and macros.
+longdesc The fonts are distributed as MetaFont source; the design
+longdesc derives from Silvio Levy’s fonts, but has also been
+longdesc influenced by Yannis Haralambous’ work. They are 8-bit fonts
+longdesc which, the author believes, leads to more robust macro
+longdesc programming. Both ancient and modern Greek are supported.
+longdesc Macros to work with Plain TeX (‘greektex’) and with LaTeX
+longdesc 2.09 (‘grlatex’) are provided.
+docfiles size=69054
+ texmf-dist/doc/fonts/kdgreek/INSTALL
+ texmf-dist/doc/fonts/kdgreek/README details="Package Readme"
+ texmf-dist/doc/fonts/kdgreek/grlatex.1
+ texmf-dist/doc/fonts/kdgreek/install.dvi
+ texmf-dist/doc/fonts/kdgreek/install.tex
+ texmf-dist/doc/fonts/kdgreek/read.me
+ texmf-dist/doc/fonts/kdgreek/usage.dvi
+ texmf-dist/doc/fonts/kdgreek/usage.tex
+srcfiles size=143601
+ texmf-dist/source/latex/kdgreek/209/grart10.sty
+ texmf-dist/source/latex/kdgreek/209/grart12.sty
+ texmf-dist/source/latex/kdgreek/209/grarticle.sty
+ texmf-dist/source/latex/kdgreek/209/grbk10.sty
+ texmf-dist/source/latex/kdgreek/209/grbk11.sty
+ texmf-dist/source/latex/kdgreek/209/grbk12.sty
+ texmf-dist/source/latex/kdgreek/209/grbook.sty
+ texmf-dist/source/latex/kdgreek/209/greek.sty
+ texmf-dist/source/latex/kdgreek/209/grfonts.tex
+ texmf-dist/source/latex/kdgreek/209/grkhyphen.tex
+ texmf-dist/source/latex/kdgreek/209/grmode.sty
+ texmf-dist/source/latex/kdgreek/209/lfonts.tex
+ texmf-dist/source/latex/kdgreek/209/lgreek.3.0c
+ texmf-dist/source/latex/kdgreek/209/lgreek.tex
+runfiles size=318417
+ texmf-dist/fonts/source/public/kdgreek/kdaccent.mf
+ texmf-dist/fonts/source/public/kdgreek/kdbase.mf
+ texmf-dist/fonts/source/public/kdgreek/kdbf10.mf
+ texmf-dist/fonts/source/public/kdgreek/kdbf8.mf
+ texmf-dist/fonts/source/public/kdgreek/kdbf9.mf
+ texmf-dist/fonts/source/public/kdgreek/kddigits.mf
+ texmf-dist/fonts/source/public/kdgreek/kdgr10.mf
+ texmf-dist/fonts/source/public/kdgreek/kdgr8.mf
+ texmf-dist/fonts/source/public/kdgreek/kdgr9.mf
+ texmf-dist/fonts/source/public/kdgreek/kdgreek.mf
+ texmf-dist/fonts/source/public/kdgreek/kdidigit.mf
+ texmf-dist/fonts/source/public/kdgreek/kdilower.mf
+ texmf-dist/fonts/source/public/kdgreek/kdlig.mf
+ texmf-dist/fonts/source/public/kdgreek/kdligcom.mf
+ texmf-dist/fonts/source/public/kdgreek/kdlower.mf
+ texmf-dist/fonts/source/public/kdgreek/kdpunct.mf
+ texmf-dist/fonts/source/public/kdgreek/kdsl10.mf
+ texmf-dist/fonts/source/public/kdgreek/kdti10.mf
+ texmf-dist/fonts/source/public/kdgreek/kdtt10.mf
+ texmf-dist/fonts/source/public/kdgreek/kdupper.mf
+ texmf-dist/fonts/tfm/public/kdgreek/kdbf10.tfm
+ texmf-dist/fonts/tfm/public/kdgreek/kdbf8.tfm
+ texmf-dist/fonts/tfm/public/kdgreek/kdbf9.tfm
+ texmf-dist/fonts/tfm/public/kdgreek/kdgr10.tfm
+ texmf-dist/fonts/tfm/public/kdgreek/kdgr8.tfm
+ texmf-dist/fonts/tfm/public/kdgreek/kdgr9.tfm
+ texmf-dist/fonts/tfm/public/kdgreek/kdsl10.tfm
+ texmf-dist/fonts/tfm/public/kdgreek/kdti10.tfm
+ texmf-dist/fonts/tfm/public/kdgreek/kdtt10.tfm
+ texmf-dist/tex/plain/kdgreek/greek.tex
+ texmf-dist/tex/plain/kdgreek/greektex.tex
+ texmf-dist/tex/plain/kdgreek/grkhyphen.tex
+catalogue-version 3.1
+catalogue-date 2006-11-30 22:31:31 +0100
+catalogue-ctan /fonts/greek/kd
+catalogue-license unknown
+
+name kerkis
+category Package
+revision 2513
+shortdesc Kerkis (Greek) font family.
+longdesc Sans-serif Greek fonts to match the URW Bookman set (which are
+longdesc distributed with Kerkis). The Kerkis font set has some support
+longdesc for mathematics as well as other glyphs missing from the base
+longdesc URW Bookman fonts (the URW fonts are duplicated in the
+longdesc distribution). Macros are provided to use the fonts in OT1, T1
+longdesc (only NG/ng glyphs missing) and LGR encodings, as well as in
+longdesc mathematics; small caps and old-style number glyphs are also
+longdesc available. The philosophy, and the design process, of the
+longdesc Kerkis fonts is discussed in a paper in TUGboat 23(3/4), 2002.
+execute addMap kerkis.map
+docfiles size=6487
+ texmf-dist/doc/latex/kerkis/License.txt
+ texmf-dist/doc/latex/kerkis/README.html
+runfiles size=2520249
+ texmf-dist/fonts/afm/public/kerkis/Kerkis-Bold.afm
+ texmf-dist/fonts/afm/public/kerkis/Kerkis-BoldItalic.afm
+ texmf-dist/fonts/afm/public/kerkis/Kerkis-BoldSmallCaps.afm
+ texmf-dist/fonts/afm/public/kerkis/Kerkis-Calligraphic.afm
+ texmf-dist/fonts/afm/public/kerkis/Kerkis-Italic.afm
+ texmf-dist/fonts/afm/public/kerkis/Kerkis-SemiBold-Italic.afm
+ texmf-dist/fonts/afm/public/kerkis/Kerkis-SemiBold.afm
+ texmf-dist/fonts/afm/public/kerkis/Kerkis-SmallCaps.afm
+ texmf-dist/fonts/afm/public/kerkis/Kerkis.afm
+ texmf-dist/fonts/afm/public/kerkis/KerkisSans-Bold.afm
+ texmf-dist/fonts/afm/public/kerkis/KerkisSans-BoldItalic.afm
+ texmf-dist/fonts/afm/public/kerkis/KerkisSans-Italic.afm
+ texmf-dist/fonts/afm/public/kerkis/KerkisSans-SmallCaps.afm
+ texmf-dist/fonts/afm/public/kerkis/KerkisSans.afm
+ texmf-dist/fonts/afm/public/kerkis/ktsy.afm
+ texmf-dist/fonts/enc/dvips/kerkis/gkerkis.enc
+ texmf-dist/fonts/enc/dvips/kerkis/gkerkisc.enc
+ texmf-dist/fonts/enc/dvips/kerkis/gpkerkis.enc
+ texmf-dist/fonts/enc/dvips/kerkis/gpkerkisc.enc
+ texmf-dist/fonts/enc/dvips/kerkis/kerkis.enc
+ texmf-dist/fonts/enc/dvips/kerkis/kerkisc.enc
+ texmf-dist/fonts/enc/dvips/kerkis/kerkisec.enc
+ texmf-dist/fonts/enc/dvips/kerkis/kerkisecsc.enc
+ texmf-dist/fonts/enc/dvips/kerkis/kmath.enc
+ texmf-dist/fonts/enc/dvips/kerkis/kmex.enc
+ texmf-dist/fonts/enc/dvips/kerkis/kmsym.enc
+ texmf-dist/fonts/map/dvips/kerkis/kerkis.map
+ texmf-dist/fonts/tfm/public/kerkis/ek8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ek8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekb8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekb8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbi8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbi8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbo8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbo8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbsc8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbsc8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbsco8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbsco8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbui8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekbui8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekcal8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekcal8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eki8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eki8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eko8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eko8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksb8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksb8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksbi8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksbi8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksbo8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksbo8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksbui8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksbui8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksc8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksc8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksco8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksco8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksf8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksf8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksfb8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksfb8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksfbi8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksfbi8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksfi8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksfi8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksfsc8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/eksfsc8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekui8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ekui8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gk7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gk7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkb7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkb7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbi7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbi7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbo7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbo7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbsc8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbsc8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbsco8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbsco8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbui7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkbui7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkcal7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkcal7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gki7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gki7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gko7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gko7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksb7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksb7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksbi7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksbi7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksbo7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksbo7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksbui7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksbui7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksc7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksc7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksco7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksco7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksf7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksf7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksfb7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksfb7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksfbi7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksfbi7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksfi7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksfi7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksfsc7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gksfsc7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkui7a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/gkui7t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/k8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/k8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kb8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kb8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbi8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbi8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbo8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbo8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbsc8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbsc8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbsco8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbsco8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbui8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kbui8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kcal8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kcal8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ki8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ki8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kmath8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kmath8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ko8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ko8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksb8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksb8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksbi8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksbi8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksbo8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksbo8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksbui8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksbui8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksc8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksc8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksco8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksco8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksf8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksf8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksfb8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksfb8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksfbi8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksfbi8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksfi8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksfi8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksfsc8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ksfsc8t.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ktsy8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/ktsy8r.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kui8a.tfm
+ texmf-dist/fonts/tfm/public/kerkis/kui8r.tfm
+ texmf-dist/fonts/type1/public/kerkis/Kerkis-Bold.pfb
+ texmf-dist/fonts/type1/public/kerkis/Kerkis-BoldItalic.pfb
+ texmf-dist/fonts/type1/public/kerkis/Kerkis-BoldSmallCaps.pfb
+ texmf-dist/fonts/type1/public/kerkis/Kerkis-Calligraphic.pfb
+ texmf-dist/fonts/type1/public/kerkis/Kerkis-Italic.pfb
+ texmf-dist/fonts/type1/public/kerkis/Kerkis-SemiBold-Italic.pfb
+ texmf-dist/fonts/type1/public/kerkis/Kerkis-SemiBold.pfb
+ texmf-dist/fonts/type1/public/kerkis/Kerkis-SmallCaps.pfb
+ texmf-dist/fonts/type1/public/kerkis/Kerkis.pfb
+ texmf-dist/fonts/type1/public/kerkis/KerkisSans-Bold.pfb
+ texmf-dist/fonts/type1/public/kerkis/KerkisSans-BoldItalic.pfb
+ texmf-dist/fonts/type1/public/kerkis/KerkisSans-Italic.pfb
+ texmf-dist/fonts/type1/public/kerkis/KerkisSans-SmallCaps.pfb
+ texmf-dist/fonts/type1/public/kerkis/KerkisSans.pfb
+ texmf-dist/fonts/type1/public/kerkis/ktsy.pfb
+ texmf-dist/fonts/vf/public/kerkis/ek8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ekb8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ekbi8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ekbo8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ekbsc8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ekbsco8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ekbui8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ekcal8a.vf
+ texmf-dist/fonts/vf/public/kerkis/eki8a.vf
+ texmf-dist/fonts/vf/public/kerkis/eko8a.vf
+ texmf-dist/fonts/vf/public/kerkis/eksb8a.vf
+ texmf-dist/fonts/vf/public/kerkis/eksbi8a.vf
+ texmf-dist/fonts/vf/public/kerkis/eksbo8a.vf
+ texmf-dist/fonts/vf/public/kerkis/eksbui8a.vf
+ texmf-dist/fonts/vf/public/kerkis/eksc8a.vf
+ texmf-dist/fonts/vf/public/kerkis/eksco8a.vf
+ texmf-dist/fonts/vf/public/kerkis/eksf8t.vf
+ texmf-dist/fonts/vf/public/kerkis/eksfb8t.vf
+ texmf-dist/fonts/vf/public/kerkis/eksfbi8t.vf
+ texmf-dist/fonts/vf/public/kerkis/eksfi8t.vf
+ texmf-dist/fonts/vf/public/kerkis/eksfsc8t.vf
+ texmf-dist/fonts/vf/public/kerkis/ekui8a.vf
+ texmf-dist/fonts/vf/public/kerkis/gk7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gkb7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gkbi7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gkbo7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gkbsc8a.vf
+ texmf-dist/fonts/vf/public/kerkis/gkbsco8a.vf
+ texmf-dist/fonts/vf/public/kerkis/gkbui7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gkcal7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gki7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gko7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksb7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksbi7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksbo7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksbui7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksc7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksco7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksf7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksfb7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksfbi7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksfi7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gksfsc7t.vf
+ texmf-dist/fonts/vf/public/kerkis/gkui7t.vf
+ texmf-dist/fonts/vf/public/kerkis/k8a.vf
+ texmf-dist/fonts/vf/public/kerkis/kb8a.vf
+ texmf-dist/fonts/vf/public/kerkis/kbi8a.vf
+ texmf-dist/fonts/vf/public/kerkis/kbo8a.vf
+ texmf-dist/fonts/vf/public/kerkis/kbsc8a.vf
+ texmf-dist/fonts/vf/public/kerkis/kbsco8a.vf
+ texmf-dist/fonts/vf/public/kerkis/kbui8a.vf
+ texmf-dist/fonts/vf/public/kerkis/kcal8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ki8a.vf
+ texmf-dist/fonts/vf/public/kerkis/kmath8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ko8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ksb8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ksbi8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ksbo8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ksbui8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ksc8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ksco8a.vf
+ texmf-dist/fonts/vf/public/kerkis/ksf8t.vf
+ texmf-dist/fonts/vf/public/kerkis/ksfb8t.vf
+ texmf-dist/fonts/vf/public/kerkis/ksfbi8t.vf
+ texmf-dist/fonts/vf/public/kerkis/ksfi8t.vf
+ texmf-dist/fonts/vf/public/kerkis/ksfsc8t.vf
+ texmf-dist/fonts/vf/public/kerkis/ktsy8a.vf
+ texmf-dist/fonts/vf/public/kerkis/kui8a.vf
+ texmf-dist/tex/latex/kerkis/kerkis.sty
+ texmf-dist/tex/latex/kerkis/kmath.sty
+ texmf-dist/tex/latex/kerkis/lgrkfn.fd
+ texmf-dist/tex/latex/kerkis/lgrmak.fd
+ texmf-dist/tex/latex/kerkis/lgrmaksf.fd
+ texmf-dist/tex/latex/kerkis/omlmak.fd
+ texmf-dist/tex/latex/kerkis/omsmak.fd
+ texmf-dist/tex/latex/kerkis/ot1kfn.fd
+ texmf-dist/tex/latex/kerkis/ot1mak.fd
+ texmf-dist/tex/latex/kerkis/ot1maksf.fd
+ texmf-dist/tex/latex/kerkis/t1mak.fd
+ texmf-dist/tex/latex/kerkis/t1maksf.fd
+catalogue-version
+catalogue-date 2007-01-08 14:40:40 +0100
+catalogue-ctan /fonts/greek/kerkis
+catalogue-license lppl
+
+name kerntest
+category Package
+revision 4698
+shortdesc Print tables and generate control files to adjust kernings.
+longdesc This class makes it easy to generate tables that show many
+longdesc different kerning pairs of an arbitrary font, usable by LaTeX.
+longdesc It shows the kerning values that are used in the the font by
+longdesc default. In addition, this class enables the user to alter the
+longdesc kernings and to observe the results. Kerning pairs can be
+longdesc defined for groups of similar glyphs at the same time. An mtx
+longdesc file is generated automatically. The mtx file may then be
+longdesc loaded by fontinst to introduce the user-made kernings into the
+longdesc virtual font for later use in LaTeX.
+docfiles size=891698
+ texmf-dist/doc/latex/kerntest/ChangeLog
+ texmf-dist/doc/latex/kerntest/README details="Readme"
+ texmf-dist/doc/latex/kerntest/ToDo
+ texmf-dist/doc/latex/kerntest/kerntest.pdf details="Package documentation"
+ texmf-dist/doc/latex/kerntest/krntst-v.tex
+ texmf-dist/doc/latex/kerntest/ot1-XXX-m-n.tex
+ texmf-dist/doc/latex/kerntest/schoolb.map
+ texmf-dist/doc/latex/kerntest/schoolb1.tex
+ texmf-dist/doc/latex/kerntest/schoolb2.tex
+ texmf-dist/doc/latex/kerntest/t1-9nc-m-n-1.tex
+ texmf-dist/doc/latex/kerntest/t1-9nc-m-n-2.tex
+ texmf-dist/doc/latex/kerntest/t1-XXX-m-n.tex
+ texmf-dist/doc/latex/kerntest/t1-cmr-m-n-1200.tex
+ texmf-dist/doc/latex/kerntest/t1-ptm-bx-n-example.tex
+ texmf-dist/doc/latex/kerntest/t1-ptm-m-n-shortexample.tex
+ texmf-dist/doc/latex/kerntest/t1-ptm-m-n.tex
+ texmf-dist/doc/latex/kerntest/testschoolb.tex
+ texmf-dist/doc/latex/kerntest/ts1-XXX-m-n.tex
+srcfiles size=177634
+ texmf-dist/source/latex/kerntest/Makefile
+ texmf-dist/source/latex/kerntest/kerntest.dtx
+ texmf-dist/source/latex/kerntest/kerntest.ins
+runfiles size=67942
+ texmf-dist/tex/latex/kerntest/kerntest.cls
+ texmf-dist/tex/latex/kerntest/ly1mtx.clo
+ texmf-dist/tex/latex/kerntest/ot1mtx.clo
+ texmf-dist/tex/latex/kerntest/t1cmr-1200.fd
+ texmf-dist/tex/latex/kerntest/t1mtx.clo
+ texmf-dist/tex/latex/kerntest/t2amtx.clo
+ texmf-dist/tex/latex/kerntest/t2bmtx.clo
+ texmf-dist/tex/latex/kerntest/ts1mtx.clo
+catalogue-version 1.32
+catalogue-date 2007-03-08 21:58:53 +0100
+catalogue-ctan /macros/latex/contrib/kerntest
+catalogue-license lppl
+
+name keystroke
+category Package
+revision 1016
+shortdesc Graphical representation of keys on keyboard.
+longdesc A LaTeX package which provides macros for the graphical
+longdesc representation of the keys on a computer keyboard.
+docfiles size=40817
+ texmf-dist/doc/latex/keystroke/README details="Readme"
+ texmf-dist/doc/latex/keystroke/key-test.pdf details="Package demo"
+ texmf-dist/doc/latex/keystroke/key-test.tex
+runfiles size=21985
+ texmf-dist/tex/latex/keystroke/keystroke.sty
+ texmf-dist/tex/latex/keystroke/keystroke_left.eps
+ texmf-dist/tex/latex/keystroke/keystroke_left.pdf
+ texmf-dist/tex/latex/keystroke/keystroke_middle.eps
+ texmf-dist/tex/latex/keystroke/keystroke_middle.pdf
+ texmf-dist/tex/latex/keystroke/keystroke_right.eps
+ texmf-dist/tex/latex/keystroke/keystroke_right.pdf
+catalogue-version
+catalogue-date 2007-03-08 21:58:53 +0100
+catalogue-ctan /macros/latex/contrib/keystroke
+catalogue-license gpl
+
+name kixfont
+category Package
+revision 101
+docfiles size=25709
+ texmf-dist/doc/fonts/kixfont/kixtable.pdf
+ texmf-dist/doc/fonts/kixfont/kixtable.tex
+runfiles size=4282
+ texmf-dist/fonts/source/public/kixfont/kix.mf
+ texmf-dist/fonts/tfm/public/kixfont/kix.tfm
+
+name kluwer
+category Package
+revision 1487
+docfiles size=194965
+ texmf-dist/doc/latex/kluwer/00readme
+ texmf-dist/doc/latex/kluwer/mouse.eps
+ texmf-dist/doc/latex/kluwer/sampkluw.dvi
+ texmf-dist/doc/latex/kluwer/sampkluw.ent
+ texmf-dist/doc/latex/kluwer/sampkluw.tex
+ texmf-dist/doc/latex/kluwer/sampopen.dvi
+ texmf-dist/doc/latex/kluwer/sampopen.tex
+ texmf-dist/doc/latex/kluwer/usrman.dvi
+ texmf-dist/doc/latex/kluwer/usrman.ent
+ texmf-dist/doc/latex/kluwer/usrman.tex
+srcfiles size=6028
+ texmf-dist/source/latex/kluwer/kluwer.dtx
+ texmf-dist/source/latex/kluwer/kluwer.ins
+runfiles size=405467
+ texmf-dist/bibtex/bst/kluwer/klunamed.bst
+ texmf-dist/bibtex/bst/kluwer/klunum.bst
+ texmf-dist/tex/latex/kluwer/klu10.clo
+ texmf-dist/tex/latex/kluwer/klu105.clo
+ texmf-dist/tex/latex/kluwer/klu11.clo
+ texmf-dist/tex/latex/kluwer/klu12.clo
+ texmf-dist/tex/latex/kluwer/klu9.clo
+ texmf-dist/tex/latex/kluwer/klucite.sty
+ texmf-dist/tex/latex/kluwer/kluedit.sty
+ texmf-dist/tex/latex/kluwer/klufloa.sty
+ texmf-dist/tex/latex/kluwer/klulist.sty
+ texmf-dist/tex/latex/kluwer/klumac.sty
+ texmf-dist/tex/latex/kluwer/klumath.sty
+ texmf-dist/tex/latex/kluwer/klumono.sty
+ texmf-dist/tex/latex/kluwer/klunote.sty
+ texmf-dist/tex/latex/kluwer/kluopen.sty
+ texmf-dist/tex/latex/kluwer/klups.sty
+ texmf-dist/tex/latex/kluwer/kluref.sty
+ texmf-dist/tex/latex/kluwer/klusec.sty
+ texmf-dist/tex/latex/kluwer/klut10.clo
+ texmf-dist/tex/latex/kluwer/klut11.clo
+ texmf-dist/tex/latex/kluwer/klut12.clo
+ texmf-dist/tex/latex/kluwer/klut9.clo
+ texmf-dist/tex/latex/kluwer/klutab.sty
+ texmf-dist/tex/latex/kluwer/kluwer.cls
+
+name knuth
+category Documentation
+revision 21
+docfiles size=1705313
+ texmf-doc/doc/english/knuth/errata/README
+ texmf-doc/doc/english/knuth/errata/cm85.bug
+ texmf-doc/doc/english/knuth/errata/errata.eight
+ texmf-doc/doc/english/knuth/errata/errata.five
+ texmf-doc/doc/english/knuth/errata/errata.four
+ texmf-doc/doc/english/knuth/errata/errata.nine
+ texmf-doc/doc/english/knuth/errata/errata.one
+ texmf-doc/doc/english/knuth/errata/errata.seven
+ texmf-doc/doc/english/knuth/errata/errata.six
+ texmf-doc/doc/english/knuth/errata/errata.ten
+ texmf-doc/doc/english/knuth/errata/errata.tex
+ texmf-doc/doc/english/knuth/errata/errata.three
+ texmf-doc/doc/english/knuth/errata/errata.two
+ texmf-doc/doc/english/knuth/errata/errata1.tex
+ texmf-doc/doc/english/knuth/errata/errata2.tex
+ texmf-doc/doc/english/knuth/errata/errata3.tex
+ texmf-doc/doc/english/knuth/errata/errata4.tex
+ texmf-doc/doc/english/knuth/errata/errata5.tex
+ texmf-doc/doc/english/knuth/errata/errata6.tex
+ texmf-doc/doc/english/knuth/errata/errata7.tex
+ texmf-doc/doc/english/knuth/errata/errata8.tex
+ texmf-doc/doc/english/knuth/errata/errata9.tex
+ texmf-doc/doc/english/knuth/errata/errorlog.tex
+ texmf-doc/doc/english/knuth/errata/index.html
+ texmf-doc/doc/english/knuth/errata/logmac.tex
+ texmf-doc/doc/english/knuth/errata/mf84.bug
+ texmf-doc/doc/english/knuth/errata/tex82.bug
+ texmf-doc/doc/english/knuth/errorlog.tex
+ texmf-doc/doc/english/knuth/expr.mf
+ texmf-doc/doc/english/knuth/index.html
+ texmf-doc/doc/english/knuth/io.mf
+ texmf-doc/doc/english/knuth/mfman.mf
+ texmf-doc/doc/english/knuth/primes.web
+ texmf-doc/doc/english/knuth/story.tex
+ texmf-doc/doc/english/knuth/trap.mf
+ texmf-doc/doc/english/knuth/trap.pl
+ texmf-doc/doc/english/knuth/trapman.tex
+ texmf-doc/doc/english/knuth/trip.pl
+ texmf-doc/doc/english/knuth/trip.tex
+ texmf-doc/doc/english/knuth/tripman.tex
+ texmf-doc/doc/english/knuth/web.tex
+ texmf-doc/doc/english/knuth/webman.tex
+
+name knuthotherfonts
+category Package
+revision 101
+runfiles size=59633
+ texmf-dist/fonts/source/public/knuthotherfonts/committee/font1.mf
+ texmf-dist/fonts/source/public/knuthotherfonts/committee/font1base.mf
+ texmf-dist/fonts/source/public/knuthotherfonts/halftone/aphalf.mf
+ texmf-dist/fonts/source/public/knuthotherfonts/halftone/ddhalf.mf
+ texmf-dist/fonts/source/public/knuthotherfonts/halftone/ddralf.mf
+ texmf-dist/fonts/source/public/knuthotherfonts/halftone/halftone.mf
+ texmf-dist/fonts/source/public/knuthotherfonts/halftone/imhalf.mf
+ texmf-dist/fonts/source/public/knuthotherfonts/halftone/imralf.mf
+ texmf-dist/fonts/source/public/knuthotherfonts/mfbook/logobase.mf
+ texmf-dist/fonts/source/public/knuthotherfonts/mfbook/metafon.mf
+
+name koma-script
+category Package
+revision 5175
+shortdesc A bundle of versatile classes and packages
+longdesc The KOMA-Script bundle provides drop-in replacements for the
+longdesc article/report/book classes with emphasis on typography and
+longdesc versatility. There is also a letter class, different from all
+longdesc other letter classes. It also offers e.g. a package for
+longdesc calculated type areas in the way laid down by the typographer
+longdesc Jan Tschichold, a package for easily changing and defining of
+longdesc page styles, a package for getting not only the current date
+longdesc but also the name of day and a package for getting current
+longdesc time. All these packages may be used not only with KOMA-Script
+longdesc classes but also with standard classes. Since every package has
+longdesc its own version number, the number below is only the version of
+longdesc scrbook, scrreprt, scrartcl, scrlttr2 and typearea. These are
+longdesc the main parts of the bundle.
+docfiles size=4615745
+ texmf-dist/doc/latex/koma-script/INSTALL.txt
+ texmf-dist/doc/latex/koma-script/INSTALLD.txt
+ texmf-dist/doc/latex/koma-script/README details="Readme"
+ texmf-dist/doc/latex/koma-script/koma-script.html details="Choose documentation source:"
+ texmf-dist/doc/latex/koma-script/komabug.tex
+ texmf-dist/doc/latex/koma-script/komascr.html
+ texmf-dist/doc/latex/koma-script/komascript.html
+ texmf-dist/doc/latex/koma-script/lppl-de.txt
+ texmf-dist/doc/latex/koma-script/lppl.txt
+ texmf-dist/doc/latex/koma-script/manifest.txt
+ texmf-dist/doc/latex/koma-script/scraddr.html
+ texmf-dist/doc/latex/koma-script/scrartcl.html
+ texmf-dist/doc/latex/koma-script/scrbook.html
+ texmf-dist/doc/latex/koma-script/scrdate.html
+ texmf-dist/doc/latex/koma-script/scrguide.html
+ texmf-dist/doc/latex/koma-script/scrguide.pdf details="German documentation:" language="de"
+ texmf-dist/doc/latex/koma-script/scrguien.html
+ texmf-dist/doc/latex/koma-script/scrguien.pdf details="English documentation:" language="en"
+ texmf-dist/doc/latex/koma-script/scrlfile.html
+ texmf-dist/doc/latex/koma-script/scrlttr2.html
+ texmf-dist/doc/latex/koma-script/scrpage2.html
+ texmf-dist/doc/latex/koma-script/scrreprt.html
+ texmf-dist/doc/latex/koma-script/scrtime.html
+ texmf-dist/doc/latex/koma-script/typearea.html
+srcfiles size=2382055
+ texmf-dist/source/latex/koma-script/ChangeLog
+ texmf-dist/source/latex/koma-script/ChangeLog.2
+ texmf-dist/source/latex/koma-script/Makefile
+ texmf-dist/source/latex/koma-script/Makefile.baseinit
+ texmf-dist/source/latex/koma-script/Makefile.baserules
+ texmf-dist/source/latex/koma-script/doc/Makefile
+ texmf-dist/source/latex/koma-script/doc/Makefile.guide
+ texmf-dist/source/latex/koma-script/doc/Makefile.latexinit
+ texmf-dist/source/latex/koma-script/doc/bin/genhtmlidx.pl
+ texmf-dist/source/latex/koma-script/doc/bin/genindex.pl
+ texmf-dist/source/latex/koma-script/doc/english/Makefile
+ texmf-dist/source/latex/koma-script/doc/english/adrconvnote.tex
+ texmf-dist/source/latex/koma-script/doc/english/guide-english.tex
+ texmf-dist/source/latex/koma-script/doc/english/htmlsetup
+ texmf-dist/source/latex/koma-script/doc/english/introduction.tex
+ texmf-dist/source/latex/koma-script/doc/english/scraddr.tex
+ texmf-dist/source/latex/koma-script/doc/english/scrbookreportarticle.tex
+ texmf-dist/source/latex/koma-script/doc/english/scrdatetime.tex
+ texmf-dist/source/latex/koma-script/doc/english/scrlfile.tex
+ texmf-dist/source/latex/koma-script/doc/english/scrlttr2.tex
+ texmf-dist/source/latex/koma-script/doc/english/scrpage2.tex
+ texmf-dist/source/latex/koma-script/doc/english/typearea.tex
+ texmf-dist/source/latex/koma-script/doc/german/Makefile
+ texmf-dist/source/latex/koma-script/doc/german/adrconvnote.tex
+ texmf-dist/source/latex/koma-script/doc/german/guide-ngerman.tex
+ texmf-dist/source/latex/koma-script/doc/german/htmlsetup
+ texmf-dist/source/latex/koma-script/doc/german/introduction.tex
+ texmf-dist/source/latex/koma-script/doc/german/scraddr.tex
+ texmf-dist/source/latex/koma-script/doc/german/scrbookreportarticle.tex
+ texmf-dist/source/latex/koma-script/doc/german/scrdatetime.tex
+ texmf-dist/source/latex/koma-script/doc/german/scrlfile.tex
+ texmf-dist/source/latex/koma-script/doc/german/scrlttr2.tex
+ texmf-dist/source/latex/koma-script/doc/german/scrpage2.tex
+ texmf-dist/source/latex/koma-script/doc/german/typearea.tex
+ texmf-dist/source/latex/koma-script/doc/guide.bib
+ texmf-dist/source/latex/koma-script/doc/guide.tex
+ texmf-dist/source/latex/koma-script/doc/plength.dtx
+ texmf-dist/source/latex/koma-script/doc/scrguide.cls
+ texmf-dist/source/latex/koma-script/doc/scrguide.gst
+ texmf-dist/source/latex/koma-script/doc/scrguide.ist
+ texmf-dist/source/latex/koma-script/scraddr.dtx
+ texmf-dist/source/latex/koma-script/scraddr.ins
+ texmf-dist/source/latex/koma-script/scrbeta.dtx
+ texmf-dist/source/latex/koma-script/scrdoc.dtx
+ texmf-dist/source/latex/koma-script/scrkbase.dtx
+ texmf-dist/source/latex/koma-script/scrkbib.dtx
+ texmf-dist/source/latex/koma-script/scrkcile.dtx
+ texmf-dist/source/latex/koma-script/scrkcomp.dtx
+ texmf-dist/source/latex/koma-script/scrkfloa.dtx
+ texmf-dist/source/latex/koma-script/scrkfont.dtx
+ texmf-dist/source/latex/koma-script/scrkftn.dtx
+ texmf-dist/source/latex/koma-script/scrkidx.dtx
+ texmf-dist/source/latex/koma-script/scrklang.dtx
+ texmf-dist/source/latex/koma-script/scrklco.dtx
+ texmf-dist/source/latex/koma-script/scrkliof.dtx
+ texmf-dist/source/latex/koma-script/scrklist.dtx
+ texmf-dist/source/latex/koma-script/scrkmisc.dtx
+ texmf-dist/source/latex/koma-script/scrknpap.dtx
+ texmf-dist/source/latex/koma-script/scrkpage.dtx
+ texmf-dist/source/latex/koma-script/scrkpar.dtx
+ texmf-dist/source/latex/koma-script/scrkplen.dtx
+ texmf-dist/source/latex/koma-script/scrksect.dtx
+ texmf-dist/source/latex/koma-script/scrktare.dtx
+ texmf-dist/source/latex/koma-script/scrktitl.dtx
+ texmf-dist/source/latex/koma-script/scrkvars.dtx
+ texmf-dist/source/latex/koma-script/scrkvers.dtx
+ texmf-dist/source/latex/koma-script/scrlettr.dtx
+ texmf-dist/source/latex/koma-script/scrlettr.ins
+ texmf-dist/source/latex/koma-script/scrlfile.dtx
+ texmf-dist/source/latex/koma-script/scrlfile.ins
+ texmf-dist/source/latex/koma-script/scrlogo.dtx
+ texmf-dist/source/latex/koma-script/scrmain.ins
+ texmf-dist/source/latex/koma-script/scrpage.dtx
+ texmf-dist/source/latex/koma-script/scrpage.ins
+ texmf-dist/source/latex/koma-script/scrsource.tex
+ texmf-dist/source/latex/koma-script/scrstrip.inc
+ texmf-dist/source/latex/koma-script/scrstrop.inc
+ texmf-dist/source/latex/koma-script/scrtime.dtx
+ texmf-dist/source/latex/koma-script/scrtime.ins
+runfiles size=567954
+ texmf-dist/tex/latex/koma-script/DIN.lco
+ texmf-dist/tex/latex/koma-script/DINmtext.lco
+ texmf-dist/tex/latex/koma-script/KOMAold.lco
+ texmf-dist/tex/latex/koma-script/SN.lco
+ texmf-dist/tex/latex/koma-script/SNleft.lco
+ texmf-dist/tex/latex/koma-script/scraddr.sty
+ texmf-dist/tex/latex/koma-script/scrartcl.cls
+ texmf-dist/tex/latex/koma-script/scrbook.cls
+ texmf-dist/tex/latex/koma-script/scrdate.sty
+ texmf-dist/tex/latex/koma-script/scrdoc.cls
+ texmf-dist/tex/latex/koma-script/scrkbase.sty
+ texmf-dist/tex/latex/koma-script/scrlettr.cls
+ texmf-dist/tex/latex/koma-script/scrlfile.sty
+ texmf-dist/tex/latex/koma-script/scrlttr2.cls
+ texmf-dist/tex/latex/koma-script/scrpage.sty
+ texmf-dist/tex/latex/koma-script/scrpage2.sty
+ texmf-dist/tex/latex/koma-script/scrreprt.cls
+ texmf-dist/tex/latex/koma-script/scrtime.sty
+ texmf-dist/tex/latex/koma-script/typearea.sty
+catalogue-version 2.97d
+catalogue-date 2007-10-23 16:07:30 +0200
+catalogue-ctan /macros/latex/contrib/koma-script
+catalogue-license lppl
+
+name kopka
+category Documentation
+revision 1487
+docfiles size=359112
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/a4.sty
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/readme_2
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-1.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-1a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-1b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-1c.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-1d.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-2.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-2a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-2b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-2c.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-2d.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-3.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-3a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel2/ueb2-3b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/a4.sty
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/readme_3
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-10.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-11.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-12.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-14.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-14a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-14b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-1a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-1b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-2.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-3a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-3b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-4.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-5a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-5b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-6a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-6b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-6c.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-7a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-7b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-7c.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-8.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3-9.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel3/ueb3.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/a4.sty
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/readme_4
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-1.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-10.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-11.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-12.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-13.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-14.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-15.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-16.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-17.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-18.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-19.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-2.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-20.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-21.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-22.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-3.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-4.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-5.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-6.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-7.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-8.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-9a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel4/ueb4-9b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/a4.sty
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/math.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/readme_5
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-1.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-10.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-11.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-12.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-13.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-14.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-15.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-16.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-17.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-18.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-19.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-2.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-20.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-21.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-3.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-4.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-5.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-6.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-7.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-8.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel5/ueb5-9.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/a4.sty
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/bild.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/readme_6
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-1.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-10.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-2.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-3.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-4.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-5.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-6.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-7.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-8.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel6/ueb6-9.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-1.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-10.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-11.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-12.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-2.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-3.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-4.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-5.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-6.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-7.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-8a.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-8b.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel7/ueb7-9.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel8/ueb8-1.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel8/ueb8-2.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel8/ueb8-3.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel8/ueba.aux
+ texmf-doc/doc/german/kopka/uebungen/kapitel8/ueba.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel8/uebb.aux
+ texmf-doc/doc/german/kopka/uebungen/kapitel8/uebb.tex
+ texmf-doc/doc/german/kopka/uebungen/kapitel8/uebc.aux
+ texmf-doc/doc/german/kopka/uebungen/kapitel8/uebc.tex
+
+name kpfonts
+category Package
+revision 4709
+shortdesc A complete set of fonts for text and mathematics.
+longdesc The family contains text fonts in roman, sans-serif and
+longdesc monospaced shapes, with true small caps and old-style numbers.
+longdesc The mathematics fonts include all the AMS fonts, in both normal
+longdesc and bold weights. The fonts originally derived from URW
+longdesc Palladio (with URW's agreement) though the fonts are very
+longdesc clearly different in appearance from their parent.
+execute addMap kpfonts.map
+docfiles size=567016
+ texmf-dist/doc/fonts/kpfonts/Kpfonts-Doc-French.pdf
+ texmf-dist/doc/fonts/kpfonts/Kpfonts-Doc-French.tex
+ texmf-dist/doc/fonts/kpfonts/README details="Readme"
+ texmf-dist/doc/fonts/kpfonts/kpfonts.pdf
+ texmf-dist/doc/fonts/kpfonts/kpfonts.tex
+runfiles size=2451928
+ texmf-dist/fonts/map/dvips/kpfonts/kpfonts.map
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbex.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbexa.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbit7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbit7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbit8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbit8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbit8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbitc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbite.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbmi.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbmia.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbmif.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbn8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbn8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbnc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbne.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsc7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsc7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsc8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsc8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsc8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsce.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsl8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbslc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsle.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsy.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsya.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsyb.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsyc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbsyd.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxit7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxit7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxit8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxit8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxitc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxite.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxn8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxnc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxne.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsc7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsc7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsc8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsc8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsce.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsl8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxslc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpbxsle.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpex.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpexa.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmi.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmia.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmif.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmit7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmit7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmit8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmit8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmit8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmitc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmite.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmn8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmn8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmnc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmne.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsc7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsc7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsc8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsc8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsc8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsce.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsl8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmslc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpmsle.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbit7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbit7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbit8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbsc7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbsc7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbsc8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxit7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxit7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxit8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxsc7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxsc7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxsc8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposbxsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmit7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmit7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmit8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmsc7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmsc7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmsc8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkposmsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpospmit7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpospmsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbn8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbn8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbnc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbne.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsc7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsc7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsc8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsc8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsc8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsce.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsl8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbslc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbsle.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxn8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxnc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxne.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsc7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsc7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsc8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsc8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsce.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsl8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxslc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssbxsle.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmn8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmn8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmnc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmne.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsc7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsc7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsc8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsc8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsc8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsce.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsl8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmslc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpssmsle.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpsy.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpsya.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpsyb.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpsyc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpsyd.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbn8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbn8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbnc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbne.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbsl8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbslc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttbsle.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmn7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmn7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmn8a.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmn8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmn8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmnc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmne.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmsl7c.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmsl7t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmsl8r.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmsl8t.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmslc.tfm
+ texmf-dist/fonts/tfm/public/kpfonts/jkpttmsle.tfm
+ texmf-dist/fonts/type1/public/kpfonts/jkpbex.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbexa.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbit8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbitc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbite.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbmi.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbmia.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbn8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbnc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbne.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbsc8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbsce.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbsy.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbsya.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbsyb.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbsyc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpbsyd.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpex.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpexa.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmi.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmia.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmit8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmitc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmite.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmn8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmnc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmne.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmsc8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpmsce.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssbn8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssbnc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssbne.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssbsc8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssbsce.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssmn8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssmnc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssmne.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssmsc8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpssmsce.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpsy.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpsya.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpsyb.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpsyc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpsyd.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpttbn8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpttbnc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpttbne.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpttmn8a.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpttmnc.pfb
+ texmf-dist/fonts/type1/public/kpfonts/jkpttmne.pfb
+ texmf-dist/fonts/vf/public/kpfonts/jkpbit7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbit7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbit8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbmif.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbsc7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbsc7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbsc8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxit7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxit7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxit8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxsc7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxsc7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxsc8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpbxsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmif.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmit7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmit7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmit8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmsc7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmsc7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmsc8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpmsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbit7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbit7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbit8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbsc7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbsc7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbsc8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxit7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxit7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxit8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxsc7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxsc7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxsc8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposbxsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmit7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmit7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmit8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmsc7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmsc7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmsc8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkposmsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpospmit7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpospmsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbsc7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbsc7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbsc8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbxn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbxn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbxn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbxsc7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbxsc7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbxsc8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbxsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbxsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssbxsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssmn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssmn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssmn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssmsc7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssmsc7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssmsc8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssmsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssmsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpssmsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttbn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttbn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttbn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttbsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttbsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttbsl8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttmn7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttmn7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttmn8t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttmsl7c.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttmsl7t.vf
+ texmf-dist/fonts/vf/public/kpfonts/jkpttmsl8t.vf
+ texmf-dist/tex/latex/kpfonts/kpfonts.sty
+ texmf-dist/tex/latex/kpfonts/omljkp.fd
+ texmf-dist/tex/latex/kpfonts/omsjkp.fd
+ texmf-dist/tex/latex/kpfonts/omxjkp.fd
+ texmf-dist/tex/latex/kpfonts/ot1jkp.fd
+ texmf-dist/tex/latex/kpfonts/ot1jkpos.fd
+ texmf-dist/tex/latex/kpfonts/ot1jkpss.fd
+ texmf-dist/tex/latex/kpfonts/ot1jkptt.fd
+ texmf-dist/tex/latex/kpfonts/t1jkp.fd
+ texmf-dist/tex/latex/kpfonts/t1jkpos.fd
+ texmf-dist/tex/latex/kpfonts/t1jkpss.fd
+ texmf-dist/tex/latex/kpfonts/t1jkptt.fd
+ texmf-dist/tex/latex/kpfonts/ts1jkp.fd
+ texmf-dist/tex/latex/kpfonts/ts1jkpos.fd
+ texmf-dist/tex/latex/kpfonts/ts1jkpss.fd
+ texmf-dist/tex/latex/kpfonts/ts1jkptt.fd
+ texmf-dist/tex/latex/kpfonts/ujkpexa.fd
+ texmf-dist/tex/latex/kpfonts/ujkpmia.fd
+ texmf-dist/tex/latex/kpfonts/ujkpsya.fd
+ texmf-dist/tex/latex/kpfonts/ujkpsyb.fd
+ texmf-dist/tex/latex/kpfonts/ujkpsyc.fd
+ texmf-dist/tex/latex/kpfonts/ujkpsyd.fd
+catalogue-version 1.12
+catalogue-date 2007-11-09 10:20:33 +0100
+catalogue-ctan /fonts/kpfonts
+catalogue-license gpl
+
+name kurier
+category Package
+revision 5482
+shortdesc A two-element sans-serif typeface.
+longdesc Kurier is a two-element sans-serif typeface. It was designed
+longdesc for a diploma in typeface design at the Warsaw Academy of Fine
+longdesc Arts under the supervision of Roman Tomaszewski. This
+longdesc distribution contains a significantly extended set of
+longdesc characters covering the following modern alphabets: latin
+longdesc (including Vietnamese), Cyrillic and Greek as well as a number
+longdesc of additional symbols (including mathematical symbols). The
+longdesc fonts are prepared in Type 1 and OpenType formats. For use with
+longdesc TeX the following encoding files have been prepared: T1 (ec),
+longdesc T2 (abc), and OT2—Cyrillic, T5 (Vietnamese), OT4, QX, texansi
+longdesc and—nonstandard (IL2 for the Czech fonts), as well as
+longdesc supporting macros and files defining fonts for LaTeX.
+execute addMap kurier.map
+docfiles size=41806
+ texmf-dist/doc/fonts/kurier/00readme.eng details="Outline in English" language="en"
+ texmf-dist/doc/fonts/kurier/00readme.pol details="Outline in Polish" language="pl"
+ texmf-dist/doc/fonts/kurier/GUST-FONT-NOSOURCE-LICENSE.txt
+ texmf-dist/doc/fonts/kurier/MANIFEST.txt
+ texmf-dist/doc/fonts/kurier/kurier-latex-cyr.tex
+ texmf-dist/doc/fonts/kurier/kurier-latex-math.tex
+ texmf-dist/doc/fonts/kurier/kurier-latex-pl.tex
+ texmf-dist/doc/fonts/kurier/kurier-latex-t2a.tex
+ texmf-dist/doc/fonts/kurier/kurier-latex-t5.tex
+ texmf-dist/doc/fonts/kurier/kurier-mathtest.tex
+ texmf-dist/doc/fonts/kurier/kurier-table.tex
+runfiles size=17709534
+ texmf-dist/fonts/afm/public/kurier/kurierb.afm
+ texmf-dist/fonts/afm/public/kurier/kurierbi.afm
+ texmf-dist/fonts/afm/public/kurier/kuriercb.afm
+ texmf-dist/fonts/afm/public/kurier/kuriercbi.afm
+ texmf-dist/fonts/afm/public/kurier/kurierch.afm
+ texmf-dist/fonts/afm/public/kurier/kurierchi.afm
+ texmf-dist/fonts/afm/public/kurier/kuriercl.afm
+ texmf-dist/fonts/afm/public/kurier/kuriercli.afm
+ texmf-dist/fonts/afm/public/kurier/kuriercm.afm
+ texmf-dist/fonts/afm/public/kurier/kuriercmi.afm
+ texmf-dist/fonts/afm/public/kurier/kuriercr.afm
+ texmf-dist/fonts/afm/public/kurier/kuriercri.afm
+ texmf-dist/fonts/afm/public/kurier/kurierh.afm
+ texmf-dist/fonts/afm/public/kurier/kurierhi.afm
+ texmf-dist/fonts/afm/public/kurier/kurierl.afm
+ texmf-dist/fonts/afm/public/kurier/kurierli.afm
+ texmf-dist/fonts/afm/public/kurier/kurierm.afm
+ texmf-dist/fonts/afm/public/kurier/kuriermi.afm
+ texmf-dist/fonts/afm/public/kurier/kurierr.afm
+ texmf-dist/fonts/afm/public/kurier/kurierri.afm
+ texmf-dist/fonts/enc/dvips/kurier/kurier-cs.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-ec.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-el.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-ex.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-exp.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-greek.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-mi.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-qx.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-rm.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-sy.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-t2a.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-t2b.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-t2c.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-t5.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-texnansi.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-ts1.enc
+ texmf-dist/fonts/enc/dvips/kurier/kurier-wncy.enc
+ texmf-dist/fonts/enc/dvips/kurier/kuriercap-cs.enc
+ texmf-dist/fonts/enc/dvips/kurier/kuriercap-ec.enc
+ texmf-dist/fonts/enc/dvips/kurier/kuriercap-qx.enc
+ texmf-dist/fonts/enc/dvips/kurier/kuriercap-t5.enc
+ texmf-dist/fonts/enc/dvips/kurier/kuriercap-texnansi.enc
+ texmf-dist/fonts/map/dvips/kurier/kurier-cs.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-ec.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-el.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-ex.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-exp.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-greek.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-mi.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-qx.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-rm.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-sy.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-t2a.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-t2b.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-t2c.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-t5.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-texnansi.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-ts1.map
+ texmf-dist/fonts/map/dvips/kurier/kurier-wncy.map
+ texmf-dist/fonts/map/dvips/kurier/kurier.map
+ texmf-dist/fonts/opentype/public/kurier/Kurier-Bold.otf
+ texmf-dist/fonts/opentype/public/kurier/Kurier-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/kurier/Kurier-Italic.otf
+ texmf-dist/fonts/opentype/public/kurier/Kurier-Regular.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCond-Bold.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCond-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCond-Italic.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCond-Regular.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCondHeavy-Italic.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCondHeavy-Regular.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCondLight-Italic.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCondLight-Regular.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCondMedium-Italic.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierCondMedium-Regular.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierHeavy-Italic.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierHeavy-Regular.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierLight-Italic.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierLight-Regular.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierMedium-Italic.otf
+ texmf-dist/fonts/opentype/public/kurier/KurierMedium-Regular.otf
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierchcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierchicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierclcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierclicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercmcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercmicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriercricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierhcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierhicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierlcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierlicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriermcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kuriermicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/cs-kurierricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierchcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierchicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierclcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierclicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercmcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercmicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriercricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierhcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierhicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierlcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierlicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriermcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kuriermicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/ec-kurierricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/el-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/ex-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/exp-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/greek-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/mi-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierchcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierchicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierclcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierclicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercmcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercmicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriercricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierhcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierhicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierlcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierlicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriermcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kuriermicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/qx-kurierricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/rm-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kurierbz.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kuriercbz.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kurierchz.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kurierclz.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kuriercmz.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kuriercrz.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kurierhz.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kurierlz.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kuriermz.tfm
+ texmf-dist/fonts/tfm/public/kurier/sy-kurierrz.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2a-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2b-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/t2c-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierchcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierchicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierclcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierclicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercmcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercmicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriercricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierhcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierhicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierlcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierlicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriermcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kuriermicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/t5-kurierricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercbcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercbicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierchcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierchicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierclcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierclicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercmcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercmicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriercricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierhcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierhicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierlcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierlicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriermcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kuriermicap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierrcap.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/texnansi-kurierricap.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/ts1-kurierri.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierb.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kuriercb.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kuriercbi.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierch.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierchi.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kuriercl.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kuriercli.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kuriercm.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kuriercmi.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kuriercr.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kuriercri.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierh.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierhi.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierl.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierli.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierm.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kuriermi.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierr.tfm
+ texmf-dist/fonts/tfm/public/kurier/wncy-kurierri.tfm
+ texmf-dist/fonts/type1/public/kurier/kurierb.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierbi.pfb
+ texmf-dist/fonts/type1/public/kurier/kuriercb.pfb
+ texmf-dist/fonts/type1/public/kurier/kuriercbi.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierch.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierchi.pfb
+ texmf-dist/fonts/type1/public/kurier/kuriercl.pfb
+ texmf-dist/fonts/type1/public/kurier/kuriercli.pfb
+ texmf-dist/fonts/type1/public/kurier/kuriercm.pfb
+ texmf-dist/fonts/type1/public/kurier/kuriercmi.pfb
+ texmf-dist/fonts/type1/public/kurier/kuriercr.pfb
+ texmf-dist/fonts/type1/public/kurier/kuriercri.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierh.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierhi.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierl.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierli.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierm.pfb
+ texmf-dist/fonts/type1/public/kurier/kuriermi.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierr.pfb
+ texmf-dist/fonts/type1/public/kurier/kurierri.pfb
+ texmf-dist/tex/latex/kurier/il2kurier.fd
+ texmf-dist/tex/latex/kurier/il2kurierc.fd
+ texmf-dist/tex/latex/kurier/il2kurierl.fd
+ texmf-dist/tex/latex/kurier/il2kurierlc.fd
+ texmf-dist/tex/latex/kurier/kurier.sty
+ texmf-dist/tex/latex/kurier/ly1kurier.fd
+ texmf-dist/tex/latex/kurier/ly1kurierc.fd
+ texmf-dist/tex/latex/kurier/ly1kurierl.fd
+ texmf-dist/tex/latex/kurier/ly1kurierlc.fd
+ texmf-dist/tex/latex/kurier/omlkurier.fd
+ texmf-dist/tex/latex/kurier/omlkurierc.fd
+ texmf-dist/tex/latex/kurier/omlkurierl.fd
+ texmf-dist/tex/latex/kurier/omlkurierlc.fd
+ texmf-dist/tex/latex/kurier/omskurier.fd
+ texmf-dist/tex/latex/kurier/omskurierc.fd
+ texmf-dist/tex/latex/kurier/omskurierl.fd
+ texmf-dist/tex/latex/kurier/omskurierlc.fd
+ texmf-dist/tex/latex/kurier/omxkurier.fd
+ texmf-dist/tex/latex/kurier/omxkurierc.fd
+ texmf-dist/tex/latex/kurier/omxkurierl.fd
+ texmf-dist/tex/latex/kurier/omxkurierlc.fd
+ texmf-dist/tex/latex/kurier/ot1kurier.fd
+ texmf-dist/tex/latex/kurier/ot1kurierc.fd
+ texmf-dist/tex/latex/kurier/ot1kuriercm.fd
+ texmf-dist/tex/latex/kurier/ot1kurierl.fd
+ texmf-dist/tex/latex/kurier/ot1kurierlc.fd
+ texmf-dist/tex/latex/kurier/ot1kurierlcm.fd
+ texmf-dist/tex/latex/kurier/ot1kurierlm.fd
+ texmf-dist/tex/latex/kurier/ot1kurierm.fd
+ texmf-dist/tex/latex/kurier/ot2kurier.fd
+ texmf-dist/tex/latex/kurier/ot2kurierc.fd
+ texmf-dist/tex/latex/kurier/ot2kurierl.fd
+ texmf-dist/tex/latex/kurier/ot2kurierlc.fd
+ texmf-dist/tex/latex/kurier/ot4kurier.fd
+ texmf-dist/tex/latex/kurier/ot4kurierc.fd
+ texmf-dist/tex/latex/kurier/ot4kurierl.fd
+ texmf-dist/tex/latex/kurier/ot4kurierlc.fd
+ texmf-dist/tex/latex/kurier/qxkurier.fd
+ texmf-dist/tex/latex/kurier/qxkurierc.fd
+ texmf-dist/tex/latex/kurier/qxkurierl.fd
+ texmf-dist/tex/latex/kurier/qxkurierlc.fd
+ texmf-dist/tex/latex/kurier/t1kurier.fd
+ texmf-dist/tex/latex/kurier/t1kurierc.fd
+ texmf-dist/tex/latex/kurier/t1kurierl.fd
+ texmf-dist/tex/latex/kurier/t1kurierlc.fd
+ texmf-dist/tex/latex/kurier/t2akurier.fd
+ texmf-dist/tex/latex/kurier/t2akurierc.fd
+ texmf-dist/tex/latex/kurier/t2akurierl.fd
+ texmf-dist/tex/latex/kurier/t2akurierlc.fd
+ texmf-dist/tex/latex/kurier/t2bkurier.fd
+ texmf-dist/tex/latex/kurier/t2bkurierc.fd
+ texmf-dist/tex/latex/kurier/t2bkurierl.fd
+ texmf-dist/tex/latex/kurier/t2bkurierlc.fd
+ texmf-dist/tex/latex/kurier/t2ckurier.fd
+ texmf-dist/tex/latex/kurier/t2ckurierc.fd
+ texmf-dist/tex/latex/kurier/t2ckurierl.fd
+ texmf-dist/tex/latex/kurier/t2ckurierlc.fd
+ texmf-dist/tex/latex/kurier/t5kurier.fd
+ texmf-dist/tex/latex/kurier/t5kurierc.fd
+ texmf-dist/tex/latex/kurier/t5kurierl.fd
+ texmf-dist/tex/latex/kurier/t5kurierlc.fd
+ texmf-dist/tex/latex/kurier/ts1kurier.fd
+ texmf-dist/tex/latex/kurier/ts1kurierc.fd
+ texmf-dist/tex/latex/kurier/ts1kurierl.fd
+ texmf-dist/tex/latex/kurier/ts1kurierlc.fd
+ texmf-dist/tex/plain/kurier/kurier-math.tex
+catalogue-version 0.991
+catalogue-date 2007-10-06 14:07:33 +0200
+catalogue-ctan /fonts/kurier
+catalogue-license gfsl
+
+name l2picfaq
+category Documentation
+revision 5060
+shortdesc LaTeX pictures "how-to" (German).
+longdesc The document (in German) is a collection of questions about
+longdesc LaTeX and pictures. The aim of the document is to provide a
+longdesc solution, in the form of some sample code, for every problem.
+docfiles size=530084
+ texmf-doc/doc/german/l2picfaq/README details="Package README" language="de"
+ texmf-doc/doc/german/l2picfaq/gfdl.tex
+ texmf-doc/doc/german/l2picfaq/l2picfaq.pdf details="The document itself" language="de"
+ texmf-doc/doc/german/l2picfaq/l2picfaq.tex
+catalogue-version 1.30
+catalogue-date 2007-09-26 22:41:29 +0200
+catalogue-ctan /info/l2picfaq/german
+catalogue-license fdl
+
+name l2tabu
+category Documentation
+revision 16
+shortdesc Obsolete packages and commands.
+longdesc Sins of LaTeX users. A list of obsolete packages and commands
+longdesc (in German; has been translated into English, French and
+longdesc Italian).
+docfiles size=184563
+ texmf-doc/doc/german/l2tabu/l2tabu.pdf details="The document itself" language="de"
+ texmf-doc/doc/german/l2tabu/l2tabu.tex
+catalogue-version 1.8
+catalogue-date 2006-12-15 14:14:43 +0100
+catalogue-ctan /info/l2tabu/german
+catalogue-license gpl
+
+name l2tabu-english
+category Documentation
+revision 4807
+shortdesc English translation of "Obsolete packages and commands".
+longdesc English translation of the l2tabu practical guide to LaTeX2e by
+longdesc Mark Trettin. A list of obsolete packages and commands.
+docfiles size=386704
+ texmf-doc/doc/english/l2tabu-english/l2tabuen.pdf
+ texmf-doc/doc/english/l2tabu-english/l2tabuen.tex
+catalogue-version 1.8.5.7
+catalogue-date 2007-06-18 09:20:49 +0200
+catalogue-ctan /info/l2tabu/english
+catalogue-license gpl
+
+name l2tabu-french
+category Documentation
+revision 16
+shortdesc French translation of l2tabu.
+longdesc French translation of l2tabu.
+docfiles size=461340
+ texmf-doc/doc/french/l2tabu-french/README details="The document itself" language="fr"
+ texmf-doc/doc/french/l2tabu-french/l2tabufr-heavy.pdf
+ texmf-doc/doc/french/l2tabu-french/l2tabufr-light.pdf
+ texmf-doc/doc/french/l2tabu-french/l2tabufr.tex
+catalogue-version
+catalogue-date 2006-12-15 14:14:43 +0100
+catalogue-ctan /info/l2tabu/french
+catalogue-license gpl
+
+name l2tabu-it
+category Documentation
+revision 14
+docfiles size=221060
+ texmf-doc/doc/italian/l2tabu-it/l2tabuit.pdf
+ texmf-doc/doc/italian/l2tabu-it/l2tabuit.tex
+
+name labbook
+category Package
+revision 1487
+shortdesc Typeset laboratory journals.
+longdesc This class is designed to typeset laboratory journals that
+longdesc contain chronologically ordered records about experiments. From
+longdesc the sectioning commands, an experiment index is generated. The
+longdesc class is based on the KOMA-Script class scrbook.cls. There can
+longdesc be several index entries for one experiment.
+docfiles size=75218
+ texmf-dist/doc/latex/labbook/README
+ texmf-dist/doc/latex/labbook/examplde.dvi
+ texmf-dist/doc/latex/labbook/examplde.tex
+ texmf-dist/doc/latex/labbook/examplen.dvi
+ texmf-dist/doc/latex/labbook/examplen.tex
+ texmf-dist/doc/latex/labbook/labboode.dvi
+ texmf-dist/doc/latex/labbook/labboode.tex
+srcfiles size=84732
+ texmf-dist/source/latex/labbook/labbook.dtx
+ texmf-dist/source/latex/labbook/labbook.el
+ texmf-dist/source/latex/labbook/labbook.ins
+runfiles size=21571
+ texmf-dist/tex/latex/labbook/boilerplates.tex
+ texmf-dist/tex/latex/labbook/labbook.cls
+catalogue-version
+catalogue-date 2006-12-15 14:14:43 +0100
+catalogue-ctan /macros/latex/contrib/labbook
+catalogue-license lppl
+
+name labelcas
+category Package
+revision 2514
+shortdesc Check the existence of labels, and fork accordingly.
+longdesc The package defines two commands: – \eachlabelcase, which
+longdesc distinguishes whether a set of labels is defined, and for each
+longdesc label either queues action accordingly, or appends the action
+longdesc to a macro; and – \lotlabelcase, which takes a comma-
+longdesc separated list of label names, and distinguishes the resulting
+longdesc action on whether all were defined, whether none were defined,
+longdesc whether not all were defined, or whether the lest is empty
+longdesc (again, the action resulting from \lotlabelcase may be written
+longdesc to a macro).
+docfiles size=295493
+ texmf-dist/doc/latex/labelcas/README
+ texmf-dist/doc/latex/labelcas/labelcas.pdf
+srcfiles size=75350
+ texmf-dist/source/latex/labelcas/labelcas.dtx
+ texmf-dist/source/latex/labelcas/labelcas.ins
+runfiles size=6735
+ texmf-dist/tex/latex/labelcas/labelcas.sty
+catalogue-version 1.12
+catalogue-date 2007-03-08 21:58:53 +0100
+catalogue-ctan /macros/latex/contrib/labelcas
+catalogue-license lppl
+
+name labels
+category Package
+revision 4614
+shortdesc Print sheets of sticky labels.
+longdesc A LaTeX package to print a regular grid of ragged-right labels
+longdesc on a page, suitable for sheets of labels which can be fed
+longdesc through a printer. Macros are provided to allow easy input of
+longdesc names and addresses in a form free of TeX markup. Equally
+longdesc useful is a feature for making multiple copies of a single
+longdesc label, e.g., return address stickers to go with the labels.
+longdesc Rows, columns, borders can all be specified to match the label
+longdesc sheet being used.
+docfiles size=228773
+ texmf-dist/doc/latex/labels/README
+ texmf-dist/doc/latex/labels/labels.pdf
+ texmf-dist/doc/latex/labels/test/avery5162.tex
+ texmf-dist/doc/latex/labels/test/badge.tex
+ texmf-dist/doc/latex/labels/test/beebe.tex
+ texmf-dist/doc/latex/labels/test/door.tex
+ texmf-dist/doc/latex/labels/test/door209.tex
+ texmf-dist/doc/latex/labels/test/names.dat
+ texmf-dist/doc/latex/labels/test/news.tex
+ texmf-dist/doc/latex/labels/test/test.tex
+ texmf-dist/doc/latex/labels/test/test1.tex
+ texmf-dist/doc/latex/labels/test/test10.tex
+ texmf-dist/doc/latex/labels/test/test11.tex
+ texmf-dist/doc/latex/labels/test/test12.tex
+ texmf-dist/doc/latex/labels/test/test2.tex
+ texmf-dist/doc/latex/labels/test/test3.tex
+ texmf-dist/doc/latex/labels/test/test4.tex
+ texmf-dist/doc/latex/labels/test/test5.tex
+ texmf-dist/doc/latex/labels/test/test6.tex
+ texmf-dist/doc/latex/labels/test/test7.tex
+ texmf-dist/doc/latex/labels/test/test8.tex
+ texmf-dist/doc/latex/labels/test/test9.tex
+ texmf-dist/doc/latex/labels/test/testnew.tex
+ texmf-dist/doc/latex/labels/test/testnew1.tex
+ texmf-dist/doc/latex/labels/test/testnew10.tex
+ texmf-dist/doc/latex/labels/test/testnew11.tex
+ texmf-dist/doc/latex/labels/test/testnew12.tex
+ texmf-dist/doc/latex/labels/test/testnew13.tex
+ texmf-dist/doc/latex/labels/test/testnew2.tex
+ texmf-dist/doc/latex/labels/test/testnew3.tex
+ texmf-dist/doc/latex/labels/test/testnew4.tex
+ texmf-dist/doc/latex/labels/test/testnew5.tex
+ texmf-dist/doc/latex/labels/test/testnew6.tex
+ texmf-dist/doc/latex/labels/test/testnew7.tex
+ texmf-dist/doc/latex/labels/test/testnew8.tex
+ texmf-dist/doc/latex/labels/test/testnew9.tex
+ texmf-dist/doc/latex/labels/test/zwekform.tex
+srcfiles size=48666
+ texmf-dist/source/latex/labels/labels.dtx
+ texmf-dist/source/latex/labels/labels.ins
+runfiles size=20089
+ texmf-dist/tex/latex/labels/labels.sty
+ texmf-dist/tex/latex/labels/olabels.sty
+catalogue-version .13
+catalogue-date 2007-07-06 10:34:23 +0200
+catalogue-ctan /macros/latex/contrib/labels
+catalogue-license lppl
+
+name lambda
+category Package
+revision 615
+runfiles size=280401
+ texmf-dist/tex/lambda/base/UT1cmr.fd
+ texmf-dist/tex/lambda/base/UT1omlgc.fd
+ texmf-dist/tex/lambda/base/elhyph16.tex
+ texmf-dist/tex/lambda/base/french.bgd
+ texmf-dist/tex/lambda/base/french.lay
+ texmf-dist/tex/lambda/base/grcodes.tex
+ texmf-dist/tex/lambda/base/greek.bgd
+ texmf-dist/tex/lambda/base/greek.lay
+ texmf-dist/tex/lambda/base/grmhyph.tex
+ texmf-dist/tex/lambda/base/inuit.hpn
+ texmf-dist/tex/lambda/base/lambda.tex
+ texmf-dist/tex/lambda/base/lchcmr.fd
+ texmf-dist/tex/lambda/base/lchenc.def
+ texmf-dist/tex/lambda/base/litcmr.fd
+ texmf-dist/tex/lambda/base/litenc.def
+ texmf-dist/tex/lambda/base/ocherokee.sty
+ texmf-dist/tex/lambda/base/odev.sty
+ texmf-dist/tex/lambda/base/ojapan.sty
+ texmf-dist/tex/lambda/base/omarab.cfg
+ texmf-dist/tex/lambda/base/omega.sty
+ texmf-dist/tex/lambda/base/omlgc.cfg
+ texmf-dist/tex/lambda/base/ot1omarb.fd
+ texmf-dist/tex/lambda/base/ot1omlgc.fd
+ texmf-dist/tex/lambda/base/ot1uctt.fd
+ texmf-dist/tex/lambda/base/usenglish.bgd
+ texmf-dist/tex/lambda/base/usenglish.lay
+ texmf-dist/tex/lambda/base/ut1enc.def
+ texmf-dist/tex/lambda/config/lambda.ini
+ texmf-dist/tex/lambda/config/language.dat
+
+name lastpage
+category Package
+revision 1023
+shortdesc Reference last page for Page N of M type footers.
+longdesc Reference the number of pages in your LaTeX document through
+longdesc the introduction of a new label which can be referenced like
+longdesc \pageref{LastPage} to give a reference to the last page of a
+longdesc document. It is particularly useful in the page footer that
+longdesc says: Page N of M.
+docfiles size=782
+ texmf-dist/doc/latex/lastpage/README.lastpage details="Package Readme"
+srcfiles size=12563
+ texmf-dist/source/latex/lastpage/lastpage.drv
+ texmf-dist/source/latex/lastpage/lastpage.dtx
+ texmf-dist/source/latex/lastpage/lastpage.ins
+runfiles size=2007
+ texmf-dist/tex/latex/lastpage/lastpage.sty
+catalogue-version 0.1b
+catalogue-date 2006-12-15 14:14:43 +0100
+catalogue-ctan /macros/latex/contrib/lastpage
+catalogue-license gpl
+
+name latex
+category Package
+revision 3004
+shortdesc A TeX macro package that defines LaTeX.
+longdesc LaTeX is a widely-used macro package for TeX, providing many
+longdesc basic document formating commands extended by a wide range of
+longdesc packages. It is a development of Leslie Lamport's original
+longdesc LaTeX 2.09, and superseded the older system in June 1994. The
+longdesc basic distribution is catalogued separately, at latex-base;
+longdesc apart from a large set of contributed packages and third-party
+longdesc documentation (elsewhere on the archive), the distribution
+longdesc includes: – a bunch of required packages, which LaTeX authors
+longdesc are “entitled to assume” will be present on any system
+longdesc running LaTeX; and – a minimal set of documentation detailing
+longdesc differences from the ‘old’ version of LaTeX in the areas of
+longdesc user commands, font selection and control, class and package
+longdesc writing, font encodings, configuration options and modification
+longdesc of LaTeX. For downloading details, see the linked catalogue
+longdesc entries above.
+docfiles size=12861719
+ texmf-dist/doc/latex/base/00readme.txt
+ texmf-dist/doc/latex/base/alltt.pdf
+ texmf-dist/doc/latex/base/autoload.txt
+ texmf-dist/doc/latex/base/bugs.txt
+ texmf-dist/doc/latex/base/cfgguide.pdf
+ texmf-dist/doc/latex/base/changes.txt
+ texmf-dist/doc/latex/base/classes.pdf
+ texmf-dist/doc/latex/base/clsguide.pdf
+ texmf-dist/doc/latex/base/cmfonts.pdf
+ texmf-dist/doc/latex/base/cyrguide.pdf
+ texmf-dist/doc/latex/base/doc.pdf
+ texmf-dist/doc/latex/base/docstrip.pdf
+ texmf-dist/doc/latex/base/encguide.pdf
+ texmf-dist/doc/latex/base/exscale.pdf
+ texmf-dist/doc/latex/base/fixltx2e.pdf
+ texmf-dist/doc/latex/base/fntguide.pdf
+ texmf-dist/doc/latex/base/graphpap.pdf
+ texmf-dist/doc/latex/base/grphcomp.pdf
+ texmf-dist/doc/latex/base/ifthen.pdf
+ texmf-dist/doc/latex/base/inputenc.pdf
+ texmf-dist/doc/latex/base/latex209.pdf
+ texmf-dist/doc/latex/base/latexsym.pdf
+ texmf-dist/doc/latex/base/lb2.pdf
+ texmf-dist/doc/latex/base/legal.txt
+ texmf-dist/doc/latex/base/letter.pdf
+ texmf-dist/doc/latex/base/lppl-1-0.txt
+ texmf-dist/doc/latex/base/lppl-1-1.txt
+ texmf-dist/doc/latex/base/lppl-1-2.txt
+ texmf-dist/doc/latex/base/lppl.pdf
+ texmf-dist/doc/latex/base/lppl.txt
+ texmf-dist/doc/latex/base/ltnews.pdf
+ texmf-dist/doc/latex/base/ltx3info.pdf
+ texmf-dist/doc/latex/base/ltxcheck.pdf
+ texmf-dist/doc/latex/base/ltxdoc.pdf
+ texmf-dist/doc/latex/base/makeindx.pdf
+ texmf-dist/doc/latex/base/manifest.txt
+ texmf-dist/doc/latex/base/manual.pdf
+ texmf-dist/doc/latex/base/modguide.pdf
+ texmf-dist/doc/latex/base/newlfont.pdf
+ texmf-dist/doc/latex/base/oldlfont.pdf
+ texmf-dist/doc/latex/base/patches.txt
+ texmf-dist/doc/latex/base/proc.pdf
+ texmf-dist/doc/latex/base/slides.pdf
+ texmf-dist/doc/latex/base/slifonts.pdf
+ texmf-dist/doc/latex/base/source2e.pdf
+ texmf-dist/doc/latex/base/syntonly.pdf
+ texmf-dist/doc/latex/base/tex2.txt
+ texmf-dist/doc/latex/base/texpert.txt
+ texmf-dist/doc/latex/base/tlc2.pdf
+ texmf-dist/doc/latex/base/usrguide.pdf
+ texmf-dist/doc/latex/base/utf8ienc.pdf
+ texmf-dist/doc/latex/base/webcomp.pdf
+ texmf-dist/doc/latex/base/webcompg.pdf
+srcfiles size=2910701
+ texmf-dist/source/latex/base/alltt.dtx
+ texmf-dist/source/latex/base/alltt.ins
+ texmf-dist/source/latex/base/autoload.ins
+ texmf-dist/source/latex/base/cfgguide.tex
+ texmf-dist/source/latex/base/classes.dtx
+ texmf-dist/source/latex/base/classes.ins
+ texmf-dist/source/latex/base/clsguide.tex
+ texmf-dist/source/latex/base/cmextra.ins
+ texmf-dist/source/latex/base/cmfonts.fdd
+ texmf-dist/source/latex/base/cmfonts.ins
+ texmf-dist/source/latex/base/cyrguide.tex
+ texmf-dist/source/latex/base/doc.dtx
+ texmf-dist/source/latex/base/docstrip.dtx
+ texmf-dist/source/latex/base/docstrip.ins
+ texmf-dist/source/latex/base/ec.ins
+ texmf-dist/source/latex/base/encguide.tex
+ texmf-dist/source/latex/base/exscale.dtx
+ texmf-dist/source/latex/base/exscale.ins
+ texmf-dist/source/latex/base/fixltx2e.dtx
+ texmf-dist/source/latex/base/fixltx2e.ins
+ texmf-dist/source/latex/base/fntguide.tex
+ texmf-dist/source/latex/base/fontdef.dtx
+ texmf-dist/source/latex/base/format.ins
+ texmf-dist/source/latex/base/graphpap.dtx
+ texmf-dist/source/latex/base/graphpap.ins
+ texmf-dist/source/latex/base/ifthen.dtx
+ texmf-dist/source/latex/base/ifthen.ins
+ texmf-dist/source/latex/base/inputenc.dtx
+ texmf-dist/source/latex/base/inputenc.ins
+ texmf-dist/source/latex/base/latex209.dtx
+ texmf-dist/source/latex/base/latex209.ins
+ texmf-dist/source/latex/base/latexbug.el
+ texmf-dist/source/latex/base/latexsym.dtx
+ texmf-dist/source/latex/base/latexsym.ins
+ texmf-dist/source/latex/base/letter.dtx
+ texmf-dist/source/latex/base/letter.ins
+ texmf-dist/source/latex/base/ltalloc.dtx
+ texmf-dist/source/latex/base/ltbibl.dtx
+ texmf-dist/source/latex/base/ltboxes.dtx
+ texmf-dist/source/latex/base/ltclass.dtx
+ texmf-dist/source/latex/base/ltcntrl.dtx
+ texmf-dist/source/latex/base/ltcounts.dtx
+ texmf-dist/source/latex/base/ltdefns.dtx
+ texmf-dist/source/latex/base/ltdirchk.dtx
+ texmf-dist/source/latex/base/lterror.dtx
+ texmf-dist/source/latex/base/ltfiles.dtx
+ texmf-dist/source/latex/base/ltfinal.dtx
+ texmf-dist/source/latex/base/ltfloat.dtx
+ texmf-dist/source/latex/base/ltfntcmd.dtx
+ texmf-dist/source/latex/base/ltfssbas.dtx
+ texmf-dist/source/latex/base/ltfsscmp.dtx
+ texmf-dist/source/latex/base/ltfssdcl.dtx
+ texmf-dist/source/latex/base/ltfssini.dtx
+ texmf-dist/source/latex/base/ltfsstrc.dtx
+ texmf-dist/source/latex/base/lthyphen.dtx
+ texmf-dist/source/latex/base/ltidxglo.dtx
+ texmf-dist/source/latex/base/ltlength.dtx
+ texmf-dist/source/latex/base/ltlists.dtx
+ texmf-dist/source/latex/base/ltlogos.dtx
+ texmf-dist/source/latex/base/ltmath.dtx
+ texmf-dist/source/latex/base/ltmiscen.dtx
+ texmf-dist/source/latex/base/ltnews01.tex
+ texmf-dist/source/latex/base/ltnews02.tex
+ texmf-dist/source/latex/base/ltnews03.tex
+ texmf-dist/source/latex/base/ltnews04.tex
+ texmf-dist/source/latex/base/ltnews05.tex
+ texmf-dist/source/latex/base/ltnews06.tex
+ texmf-dist/source/latex/base/ltnews07.tex
+ texmf-dist/source/latex/base/ltnews08.tex
+ texmf-dist/source/latex/base/ltnews09.tex
+ texmf-dist/source/latex/base/ltnews10.tex
+ texmf-dist/source/latex/base/ltnews11.tex
+ texmf-dist/source/latex/base/ltnews12.tex
+ texmf-dist/source/latex/base/ltnews13.tex
+ texmf-dist/source/latex/base/ltnews14.tex
+ texmf-dist/source/latex/base/ltnews15.tex
+ texmf-dist/source/latex/base/ltnews16.tex
+ texmf-dist/source/latex/base/ltnews17.tex
+ texmf-dist/source/latex/base/ltoutenc.dtx
+ texmf-dist/source/latex/base/ltoutenc.ins
+ texmf-dist/source/latex/base/ltoutput.dtx
+ texmf-dist/source/latex/base/ltpage.dtx
+ texmf-dist/source/latex/base/ltpageno.dtx
+ texmf-dist/source/latex/base/ltpar.dtx
+ texmf-dist/source/latex/base/ltpictur.dtx
+ texmf-dist/source/latex/base/ltplain.dtx
+ texmf-dist/source/latex/base/ltsect.dtx
+ texmf-dist/source/latex/base/ltspace.dtx
+ texmf-dist/source/latex/base/lttab.dtx
+ texmf-dist/source/latex/base/ltthm.dtx
+ texmf-dist/source/latex/base/ltvers.dtx
+ texmf-dist/source/latex/base/ltx3info.tex
+ texmf-dist/source/latex/base/ltxdoc.dtx
+ texmf-dist/source/latex/base/ltxref.dtx
+ texmf-dist/source/latex/base/makeindx.dtx
+ texmf-dist/source/latex/base/makeindx.ins
+ texmf-dist/source/latex/base/modguide.tex
+ texmf-dist/source/latex/base/newdc.ins
+ texmf-dist/source/latex/base/newlfont.dtx
+ texmf-dist/source/latex/base/nfssfont.dtx
+ texmf-dist/source/latex/base/nfssfont.ins
+ texmf-dist/source/latex/base/olddc.ins
+ texmf-dist/source/latex/base/oldlfont.dtx
+ texmf-dist/source/latex/base/preload.dtx
+ texmf-dist/source/latex/base/proc.dtx
+ texmf-dist/source/latex/base/proc.ins
+ texmf-dist/source/latex/base/slides.dtx
+ texmf-dist/source/latex/base/slides.ins
+ texmf-dist/source/latex/base/slifonts.fdd
+ texmf-dist/source/latex/base/source2e.tex
+ texmf-dist/source/latex/base/syntonly.dtx
+ texmf-dist/source/latex/base/syntonly.ins
+ texmf-dist/source/latex/base/unpack.ins
+ texmf-dist/source/latex/base/usrguide.tex
+ texmf-dist/source/latex/base/utf8ienc.dtx
+runfiles size=1182573
+ texmf-dist/makeindex/latex/gglo.ist
+ texmf-dist/makeindex/latex/gind.ist
+ texmf-dist/tex/latex/base/alltt.sty
+ texmf-dist/tex/latex/base/ansinew.def
+ texmf-dist/tex/latex/base/applemac.def
+ texmf-dist/tex/latex/base/article.cls
+ texmf-dist/tex/latex/base/article.sty
+ texmf-dist/tex/latex/base/ascii.def
+ texmf-dist/tex/latex/base/bezier.sty
+ texmf-dist/tex/latex/base/bk10.clo
+ texmf-dist/tex/latex/base/bk11.clo
+ texmf-dist/tex/latex/base/bk12.clo
+ texmf-dist/tex/latex/base/book.cls
+ texmf-dist/tex/latex/base/book.sty
+ texmf-dist/tex/latex/base/cp1250.def
+ texmf-dist/tex/latex/base/cp1252.def
+ texmf-dist/tex/latex/base/cp1257.def
+ texmf-dist/tex/latex/base/cp437.def
+ texmf-dist/tex/latex/base/cp437de.def
+ texmf-dist/tex/latex/base/cp850.def
+ texmf-dist/tex/latex/base/cp852.def
+ texmf-dist/tex/latex/base/cp858.def
+ texmf-dist/tex/latex/base/cp865.def
+ texmf-dist/tex/latex/base/decmulti.def
+ texmf-dist/tex/latex/base/doc.sty
+ texmf-dist/tex/latex/base/docstrip.tex
+ texmf-dist/tex/latex/base/exscale.sty
+ texmf-dist/tex/latex/base/fix-cm.sty
+ texmf-dist/tex/latex/base/fixltx2e.sty
+ texmf-dist/tex/latex/base/flafter.sty
+ texmf-dist/tex/latex/base/fleqn.clo
+ texmf-dist/tex/latex/base/fleqn.sty
+ texmf-dist/tex/latex/base/fontenc.sty
+ texmf-dist/tex/latex/base/fontmath.cfg
+ texmf-dist/tex/latex/base/fontmath.ltx
+ texmf-dist/tex/latex/base/fonttext.cfg
+ texmf-dist/tex/latex/base/fonttext.ltx
+ texmf-dist/tex/latex/base/graphpap.sty
+ texmf-dist/tex/latex/base/hyphen.ltx
+ texmf-dist/tex/latex/base/idx.tex
+ texmf-dist/tex/latex/base/ifthen.sty
+ texmf-dist/tex/latex/base/inputenc.sty
+ texmf-dist/tex/latex/base/lablst.tex
+ texmf-dist/tex/latex/base/latex.ltx
+ texmf-dist/tex/latex/base/latex209.def
+ texmf-dist/tex/latex/base/latexbug.tex
+ texmf-dist/tex/latex/base/latexsym.sty
+ texmf-dist/tex/latex/base/latin1.def
+ texmf-dist/tex/latex/base/latin10.def
+ texmf-dist/tex/latex/base/latin2.def
+ texmf-dist/tex/latex/base/latin3.def
+ texmf-dist/tex/latex/base/latin4.def
+ texmf-dist/tex/latex/base/latin5.def
+ texmf-dist/tex/latex/base/latin9.def
+ texmf-dist/tex/latex/base/lcyenc.dfu
+ texmf-dist/tex/latex/base/leqno.clo
+ texmf-dist/tex/latex/base/leqno.sty
+ texmf-dist/tex/latex/base/letter.cls
+ texmf-dist/tex/latex/base/letter.sty
+ texmf-dist/tex/latex/base/lppl.tex
+ texmf-dist/tex/latex/base/ltnews.cls
+ texmf-dist/tex/latex/base/ltpatch.ltx
+ texmf-dist/tex/latex/base/ltxcheck.tex
+ texmf-dist/tex/latex/base/ltxdoc.cls
+ texmf-dist/tex/latex/base/ltxguide.cls
+ texmf-dist/tex/latex/base/ly1enc.dfu
+ texmf-dist/tex/latex/base/macce.def
+ texmf-dist/tex/latex/base/makeidx.sty
+ texmf-dist/tex/latex/base/minimal.cls
+ texmf-dist/tex/latex/base/newlfont.sty
+ texmf-dist/tex/latex/base/next.def
+ texmf-dist/tex/latex/base/nfssfont.tex
+ texmf-dist/tex/latex/base/oldlfont.sty
+ texmf-dist/tex/latex/base/omlcmm.fd
+ texmf-dist/tex/latex/base/omlcmr.fd
+ texmf-dist/tex/latex/base/omlenc.def
+ texmf-dist/tex/latex/base/omllcmm.fd
+ texmf-dist/tex/latex/base/omscmr.fd
+ texmf-dist/tex/latex/base/omscmsy.fd
+ texmf-dist/tex/latex/base/omsenc.def
+ texmf-dist/tex/latex/base/omsenc.dfu
+ texmf-dist/tex/latex/base/omslcmsy.fd
+ texmf-dist/tex/latex/base/omxcmex.fd
+ texmf-dist/tex/latex/base/omxlcmex.fd
+ texmf-dist/tex/latex/base/openbib.sty
+ texmf-dist/tex/latex/base/ot1cmdh.fd
+ texmf-dist/tex/latex/base/ot1cmfib.fd
+ texmf-dist/tex/latex/base/ot1cmfr.fd
+ texmf-dist/tex/latex/base/ot1cmr.fd
+ texmf-dist/tex/latex/base/ot1cmss.fd
+ texmf-dist/tex/latex/base/ot1cmtt.fd
+ texmf-dist/tex/latex/base/ot1cmvtt.fd
+ texmf-dist/tex/latex/base/ot1enc.def
+ texmf-dist/tex/latex/base/ot1enc.dfu
+ texmf-dist/tex/latex/base/ot1lcmss.fd
+ texmf-dist/tex/latex/base/ot1lcmtt.fd
+ texmf-dist/tex/latex/base/ot2enc.dfu
+ texmf-dist/tex/latex/base/ot4enc.def
+ texmf-dist/tex/latex/base/preload.cfg
+ texmf-dist/tex/latex/base/preload.ltx
+ texmf-dist/tex/latex/base/proc.cls
+ texmf-dist/tex/latex/base/proc.sty
+ texmf-dist/tex/latex/base/report.cls
+ texmf-dist/tex/latex/base/report.sty
+ texmf-dist/tex/latex/base/sample2e.tex
+ texmf-dist/tex/latex/base/sfonts.def
+ texmf-dist/tex/latex/base/shortvrb.sty
+ texmf-dist/tex/latex/base/showidx.sty
+ texmf-dist/tex/latex/base/size10.clo
+ texmf-dist/tex/latex/base/size11.clo
+ texmf-dist/tex/latex/base/size12.clo
+ texmf-dist/tex/latex/base/slides.cls
+ texmf-dist/tex/latex/base/slides.def
+ texmf-dist/tex/latex/base/slides.sty
+ texmf-dist/tex/latex/base/small2e.tex
+ texmf-dist/tex/latex/base/syntonly.sty
+ texmf-dist/tex/latex/base/t1cmdh.fd
+ texmf-dist/tex/latex/base/t1cmfib.fd
+ texmf-dist/tex/latex/base/t1cmfr.fd
+ texmf-dist/tex/latex/base/t1cmr.fd
+ texmf-dist/tex/latex/base/t1cmss.fd
+ texmf-dist/tex/latex/base/t1cmtt.fd
+ texmf-dist/tex/latex/base/t1cmvtt.fd
+ texmf-dist/tex/latex/base/t1enc.def
+ texmf-dist/tex/latex/base/t1enc.dfu
+ texmf-dist/tex/latex/base/t1enc.sty
+ texmf-dist/tex/latex/base/t1lcmss.fd
+ texmf-dist/tex/latex/base/t1lcmtt.fd
+ texmf-dist/tex/latex/base/t2aenc.dfu
+ texmf-dist/tex/latex/base/t2benc.dfu
+ texmf-dist/tex/latex/base/t2cenc.dfu
+ texmf-dist/tex/latex/base/testpage.tex
+ texmf-dist/tex/latex/base/texsys.cfg
+ texmf-dist/tex/latex/base/textcomp.sty
+ texmf-dist/tex/latex/base/tracefnt.sty
+ texmf-dist/tex/latex/base/ts1cmr.fd
+ texmf-dist/tex/latex/base/ts1cmss.fd
+ texmf-dist/tex/latex/base/ts1cmtt.fd
+ texmf-dist/tex/latex/base/ts1cmvtt.fd
+ texmf-dist/tex/latex/base/ts1enc.def
+ texmf-dist/tex/latex/base/ts1enc.dfu
+ texmf-dist/tex/latex/base/ucmr.fd
+ texmf-dist/tex/latex/base/ucmss.fd
+ texmf-dist/tex/latex/base/ucmtt.fd
+ texmf-dist/tex/latex/base/ulasy.fd
+ texmf-dist/tex/latex/base/ullasy.fd
+ texmf-dist/tex/latex/base/utf8-test.tex
+ texmf-dist/tex/latex/base/utf8.def
+ texmf-dist/tex/latex/base/utf8enc.dfu
+ texmf-dist/tex/latex/base/utf8test.tex
+ texmf-dist/tex/latex/base/x2enc.dfu
+catalogue-version
+catalogue-date 2007-01-25 11:19:09 +0100
+catalogue-ctan
+catalogue-license lppl
+
+name latex-fonts
+category Package
+revision 2026
+shortdesc A collection of fonts used in LaTeX distributions.
+longdesc These fonts are mostly variations of CM fonts, but the line and
+longdesc circle fonts used in LaTeX picture mode area also included. The
+longdesc distribution is based on the MetaFont sources.
+execute addMixedMap latex-bsr.map
+runfiles size=338369
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lasy10.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lasy5.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lasy6.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lasy7.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lasy8.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lasy9.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lasyb10.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lcircle1.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lcirclew.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lcmss8.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lcmssb8.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/lcmssi8.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/line10.afm
+ texmf-dist/fonts/afm/bluesky/latex-fonts/linew10.afm
+ texmf-dist/fonts/map/dvips/latex-fonts/latex-bsr.map
+ texmf-dist/fonts/source/public/latex-fonts/circle.mf
+ texmf-dist/fonts/source/public/latex-fonts/icmcsc10.mf
+ texmf-dist/fonts/source/public/latex-fonts/icmex10.mf
+ texmf-dist/fonts/source/public/latex-fonts/icmmi8.mf
+ texmf-dist/fonts/source/public/latex-fonts/icmsy8.mf
+ texmf-dist/fonts/source/public/latex-fonts/icmtt8.mf
+ texmf-dist/fonts/source/public/latex-fonts/ilasy8.mf
+ texmf-dist/fonts/source/public/latex-fonts/ilcmss8.mf
+ texmf-dist/fonts/source/public/latex-fonts/ilcmssb8.mf
+ texmf-dist/fonts/source/public/latex-fonts/ilcmssi8.mf
+ texmf-dist/fonts/source/public/latex-fonts/lasy.mf
+ texmf-dist/fonts/source/public/latex-fonts/lasy10.mf
+ texmf-dist/fonts/source/public/latex-fonts/lasy5.mf
+ texmf-dist/fonts/source/public/latex-fonts/lasy6.mf
+ texmf-dist/fonts/source/public/latex-fonts/lasy7.mf
+ texmf-dist/fonts/source/public/latex-fonts/lasy8.mf
+ texmf-dist/fonts/source/public/latex-fonts/lasy9.mf
+ texmf-dist/fonts/source/public/latex-fonts/lasyb10.mf
+ texmf-dist/fonts/source/public/latex-fonts/lcircle.mf
+ texmf-dist/fonts/source/public/latex-fonts/lcircle10.mf
+ texmf-dist/fonts/source/public/latex-fonts/lcirclew10.mf
+ texmf-dist/fonts/source/public/latex-fonts/lcmss8.mf
+ texmf-dist/fonts/source/public/latex-fonts/lcmssb8.mf
+ texmf-dist/fonts/source/public/latex-fonts/lcmssi8.mf
+ texmf-dist/fonts/source/public/latex-fonts/legal.txt
+ texmf-dist/fonts/source/public/latex-fonts/line.mf
+ texmf-dist/fonts/source/public/latex-fonts/line10.mf
+ texmf-dist/fonts/source/public/latex-fonts/linew10.mf
+ texmf-dist/fonts/source/public/latex-fonts/sroman.mf
+ texmf-dist/fonts/source/public/latex-fonts/sromanu.mf
+ texmf-dist/fonts/tfm/public/latex-fonts/icmcsc10.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/icmex10.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/icmmi8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/icmsy8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/icmtt8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/ilasy8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/ilcmss8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/ilcmssb8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/ilcmssi8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lasy10.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lasy5.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lasy6.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lasy7.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lasy8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lasy9.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lasyb10.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lcircle10.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lcirclew10.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lcmss8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lcmssb8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/lcmssi8.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/line10.tfm
+ texmf-dist/fonts/tfm/public/latex-fonts/linew10.tfm
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lasy10.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lasy5.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lasy6.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lasy7.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lasy8.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lasy9.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lasyb10.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lcircle1.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lcirclew.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lcmss8.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lcmssb8.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/lcmssi8.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/line10.pfb
+ texmf-dist/fonts/type1/bluesky/latex-fonts/linew10.pfb
+catalogue-version
+catalogue-date 2006-12-15 14:14:43 +0100
+catalogue-ctan /fonts/latex
+catalogue-license lppl
+
+name latex-graphics-companion
+category Documentation
+revision 21
+docfiles size=283254
+ texmf-doc/doc/english/latex-graphics-companion/1-4-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/1-4-10.pic
+ texmf-doc/doc/english/latex-graphics-companion/1-4-11.pic
+ texmf-doc/doc/english/latex-graphics-companion/1-4-12.ltx
+ texmf-doc/doc/english/latex-graphics-companion/1-4-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/1-4-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/1-4-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/1-4-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/1-4-6.ltx
+ texmf-doc/doc/english/latex-graphics-companion/1-4-7.ltx
+ texmf-doc/doc/english/latex-graphics-companion/1-4-8.ltx
+ texmf-doc/doc/english/latex-graphics-companion/1-4-9.pic
+ texmf-doc/doc/english/latex-graphics-companion/10-1-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/10-1-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/10-1-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/10-1-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/10-1-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/10-5-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/11-3-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/11-6-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/12-0-1.mp
+ texmf-doc/doc/english/latex-graphics-companion/12-0-10.ltx
+ texmf-doc/doc/english/latex-graphics-companion/12-0-11.ltx
+ texmf-doc/doc/english/latex-graphics-companion/12-0-12.ltx
+ texmf-doc/doc/english/latex-graphics-companion/12-0-2.mp
+ texmf-doc/doc/english/latex-graphics-companion/12-0-3.mp
+ texmf-doc/doc/english/latex-graphics-companion/12-0-4.mp
+ texmf-doc/doc/english/latex-graphics-companion/12-0-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/12-0-6.ltx
+ texmf-doc/doc/english/latex-graphics-companion/12-0-7.ltx
+ texmf-doc/doc/english/latex-graphics-companion/12-0-8.ltx
+ texmf-doc/doc/english/latex-graphics-companion/12-0-9.ltx
+ texmf-doc/doc/english/latex-graphics-companion/2-2-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-10.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-11.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-12.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-13.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-14.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-15.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-16.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-17.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-18.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-19.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-20.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-3.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-6.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-7.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-8.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-2-9.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-10.ltx
+ texmf-doc/doc/english/latex-graphics-companion/2-3-11.ltx
+ texmf-doc/doc/english/latex-graphics-companion/2-3-12.ltx
+ texmf-doc/doc/english/latex-graphics-companion/2-3-13.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-14.ltx
+ texmf-doc/doc/english/latex-graphics-companion/2-3-15.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-16.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-17.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-3.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-6.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-7.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-8.inl
+ texmf-doc/doc/english/latex-graphics-companion/2-3-9.inl
+ texmf-doc/doc/english/latex-graphics-companion/3-1-1.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-1-2.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-1-3.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-1-4.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-1-5.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-1-6.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-1-7.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-1-8.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-1-9.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-2-1.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-2-2.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-2-3.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-1.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-10.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-11.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-12.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-13.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-14.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-15.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-16.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-17.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-18.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-19.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-2.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-3.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-4.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-5.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-6.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-7.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-8.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-3-9.mp
+ texmf-doc/doc/english/latex-graphics-companion/3-4-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/3-4-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/3-4-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/3-4-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/3-4-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/3-4-6.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-10-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-10-10.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-10-11.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-10-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-10-3.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-10-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-10-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-10-6.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-10-7.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-10-8.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-10-9.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-2-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-2-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-2-3.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-2-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-2-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-3-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-3-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-10.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-11.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-12.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-3.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-6.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-7.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-8.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-4-9.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-10.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-11.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-12.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-13.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-5-14.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-5-15.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-5-16.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-5-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-5-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-6.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-7.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-8.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-5-9.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-10.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-11.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-12.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-13.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-14.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-15.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-16.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-17.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-18.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-19.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-20.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-21.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-22.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-23.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-24.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-25.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-26.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-6-27.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-28.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-29.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-3.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-30.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-31.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-6-32.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-6-33.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-34.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-35.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-36.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-37.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-38.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-39.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-6-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-40.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-6-41.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-42.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-43.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-44.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-45.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-46.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-6.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-7.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-8.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-6-9.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-7-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-7-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-7-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-7-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-8-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-8-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-8-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-8-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-8-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-9-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/4-9-10.ltx
+ texmf-doc/doc/english/latex-graphics-companion/4-9-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/5-2-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-3-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-3-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-3-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-3-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-3-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-3-6.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-3-7.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-3-8.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-3-9.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-4-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-4-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-4-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-4-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-10.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-11.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-12.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-13.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-14.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-15.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-16.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-17.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-18.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-19.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-20.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-21.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-22.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-23.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-24.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-25.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-26.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-27.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-28.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-29.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-30.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-31.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-32.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-33.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-34.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-35.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-6.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-7.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-8.ltx
+ texmf-doc/doc/english/latex-graphics-companion/5-5-9.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-10.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-11.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-12.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-13.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-14.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-15.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-16.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-17.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-18.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-19.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-20.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-21.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-22.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-23.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-24.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-6.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-7.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-8.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-2-9.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-10.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-11.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-12.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-13.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-14.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-6.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-7.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-8.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-3-9.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-4-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-4-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-4-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-5-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-6-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-6-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-6-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-6-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-6-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-6-6.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-6-7.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-7-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-7-1.m4
+ texmf-doc/doc/english/latex-graphics-companion/6-7-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-7-2.m4
+ texmf-doc/doc/english/latex-graphics-companion/6-7-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-7-3.m4
+ texmf-doc/doc/english/latex-graphics-companion/6-7-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/6-7-4.m4
+ texmf-doc/doc/english/latex-graphics-companion/7-2-1.mx1
+ texmf-doc/doc/english/latex-graphics-companion/7-2-1.mx2
+ texmf-doc/doc/english/latex-graphics-companion/7-2-1.ptx
+ texmf-doc/doc/english/latex-graphics-companion/7-2-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/7-2-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/7-2-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/7-2-5.ltx
+ texmf-doc/doc/english/latex-graphics-companion/7-2-6.ltx
+ texmf-doc/doc/english/latex-graphics-companion/7-3-1.abc
+ texmf-doc/doc/english/latex-graphics-companion/7-3-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/7-3-3.abc
+ texmf-doc/doc/english/latex-graphics-companion/7-3-4.abc
+ texmf-doc/doc/english/latex-graphics-companion/7-3-5.abc
+ texmf-doc/doc/english/latex-graphics-companion/7-3-6.abc
+ texmf-doc/doc/english/latex-graphics-companion/7-3-7.abc
+ texmf-doc/doc/english/latex-graphics-companion/7-3-8.abc
+ texmf-doc/doc/english/latex-graphics-companion/7-3-9.abc
+ texmf-doc/doc/english/latex-graphics-companion/7-4-1.mpp
+ texmf-doc/doc/english/latex-graphics-companion/7-4-10.mx1
+ texmf-doc/doc/english/latex-graphics-companion/7-4-10.mx2
+ texmf-doc/doc/english/latex-graphics-companion/7-4-10.ptx
+ texmf-doc/doc/english/latex-graphics-companion/7-4-2.mpp
+ texmf-doc/doc/english/latex-graphics-companion/7-4-3.mpp
+ texmf-doc/doc/english/latex-graphics-companion/7-4-4.mpp
+ texmf-doc/doc/english/latex-graphics-companion/7-4-5.mpp
+ texmf-doc/doc/english/latex-graphics-companion/7-4-6.mpp
+ texmf-doc/doc/english/latex-graphics-companion/7-4-7.mpp
+ texmf-doc/doc/english/latex-graphics-companion/7-4-8.mpp
+ texmf-doc/doc/english/latex-graphics-companion/7-4-9.mpp
+ texmf-doc/doc/english/latex-graphics-companion/8-1-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-1-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-1-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-1-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-2-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-2-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-2-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-3-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-3-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-3-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-4-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-4-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-5-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/8-6-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/8-6-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/8-6-3.inl
+ texmf-doc/doc/english/latex-graphics-companion/8-6-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/8-6-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/8-6-6.inl
+ texmf-doc/doc/english/latex-graphics-companion/8-6-7.inl
+ texmf-doc/doc/english/latex-graphics-companion/8-6-8.inl
+ texmf-doc/doc/english/latex-graphics-companion/8-7-1.acr
+ texmf-doc/doc/english/latex-graphics-companion/8-7-1.dwn
+ texmf-doc/doc/english/latex-graphics-companion/8-7-1.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-7-2.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-7-3.ltx
+ texmf-doc/doc/english/latex-graphics-companion/8-7-4.ltx
+ texmf-doc/doc/english/latex-graphics-companion/9-2-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-2-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-2-3.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-2-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-2-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-2-6.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-2-7.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-2-8.ltx
+ texmf-doc/doc/english/latex-graphics-companion/9-2-9.ltx
+ texmf-doc/doc/english/latex-graphics-companion/9-3-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-10.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-11.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-12.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-13.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-14.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-15.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-16.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-17.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-18.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-19.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-2.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-20.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-3.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-4.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-5.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-6.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-7.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-8.inl
+ texmf-doc/doc/english/latex-graphics-companion/9-3-9.inl
+ texmf-doc/doc/english/latex-graphics-companion/A-1-1.inl
+ texmf-doc/doc/english/latex-graphics-companion/Makefile
+ texmf-doc/doc/english/latex-graphics-companion/README
+ texmf-doc/doc/english/latex-graphics-companion/ages.dat
+ texmf-doc/doc/english/latex-graphics-companion/bar.ini
+ texmf-doc/doc/english/latex-graphics-companion/chap.dat
+ texmf-doc/doc/english/latex-graphics-companion/clef.ini
+ texmf-doc/doc/english/latex-graphics-companion/config.ps.gz
+ texmf-doc/doc/english/latex-graphics-companion/decade.dat
+ texmf-doc/doc/english/latex-graphics-companion/feature.ini
+ texmf-doc/doc/english/latex-graphics-companion/graves.dat
+ texmf-doc/doc/english/latex-graphics-companion/inputs/graphics.cfg
+ texmf-doc/doc/english/latex-graphics-companion/inputs/header.tex
+ texmf-doc/doc/english/latex-graphics-companion/inputs/mfpic.sty
+ texmf-doc/doc/english/latex-graphics-companion/inputs/ppex.cls
+ texmf-doc/doc/english/latex-graphics-companion/key.ini
+ texmf-doc/doc/english/latex-graphics-companion/langs.dat
+ texmf-doc/doc/english/latex-graphics-companion/langs2.dat
+ texmf-doc/doc/english/latex-graphics-companion/langs3.dat
+ texmf-doc/doc/english/latex-graphics-companion/macro.ini
+ texmf-doc/doc/english/latex-graphics-companion/mpp.tex
+ texmf-doc/doc/english/latex-graphics-companion/note.ini
+ texmf-doc/doc/english/latex-graphics-companion/notecc.ini
+ texmf-doc/doc/english/latex-graphics-companion/pot.dat
+ texmf-doc/doc/english/latex-graphics-companion/script.ini
+ texmf-doc/doc/english/latex-graphics-companion/scriptcc.ini
+ texmf-doc/doc/english/latex-graphics-companion/stones.dat
+ texmf-doc/doc/english/latex-graphics-companion/students.dat
+ texmf-doc/doc/english/latex-graphics-companion/veracx.mx1
+ texmf-doc/doc/english/latex-graphics-companion/veracx.tex
+ texmf-doc/doc/english/latex-graphics-companion/yearm.dat
+ texmf-doc/doc/english/latex-graphics-companion/years.dat
+ texmf-doc/doc/english/latex-graphics-companion/years.men
+ texmf-doc/doc/english/latex-graphics-companion/years.wom
+ texmf-doc/doc/english/latex-graphics-companion/yearw.dat
+
+name latex-tds
+category Package
+revision 3492
+srcfiles size=145168
+ texmf-dist/source/latex/latex-tds/build.pl
+ texmf-dist/source/latex/latex-tds/lib/adjust_checksum.pl
+ texmf-dist/source/latex/latex-tds/lib/ziptimetree.pl
+ texmf-dist/source/latex/latex-tds/license/lppl.txt
+ texmf-dist/source/latex/latex-tds/license/ziptimetree/lgpl.txt
+ texmf-dist/source/latex/latex-tds/patch/albanian.dtx.diff
+ texmf-dist/source/latex/latex-tds/patch/athnum.dtx.diff
+ texmf-dist/source/latex/latex-tds/patch/bbcompat.dtx.diff
+ texmf-dist/source/latex/latex-tds/patch/classes.dtx.diff
+ texmf-dist/source/latex/latex-tds/patch/finnish.dtx.diff
+ texmf-dist/source/latex/latex-tds/patch/frenchb.dtx.diff
+ texmf-dist/source/latex/latex-tds/patch/greek.ins.diff
+ texmf-dist/source/latex/latex-tds/readme.txt
+ texmf-dist/source/latex/latex-tds/tex/ams.drv
+ texmf-dist/source/latex/latex-tds/tex/babel.tex
+ texmf-dist/source/latex/latex-tds/tex/doc_lppl.tex
+ texmf-dist/source/latex/latex-tds/tex/docstrip.cfg
+ texmf-dist/source/latex/latex-tds/tex/errata.cfg
+ texmf-dist/source/latex/latex-tds/tex/greek-usage.tex
+ texmf-dist/source/latex/latex-tds/tex/hyperref.cfg
+ texmf-dist/source/latex/latex-tds/tex/ltnews.cfg
+ texmf-dist/source/latex/latex-tds/tex/ltnews.tex
+ texmf-dist/source/latex/latex-tds/tex/ltxcheck.drv
+ texmf-dist/source/latex/latex-tds/tex/ltxdoc.cfg
+ texmf-dist/source/latex/latex-tds/tex/ltxguide.cfg
+ texmf-dist/source/latex/latex-tds/tex/manual.cfg
+ texmf-dist/source/latex/latex-tds/tex/psnfss2e.drv
+ texmf-dist/source/latex/latex-tds/tex/tdsguide.cfg
+ texmf-dist/source/latex/latex-tds/tex/tools-overview.cls
+ texmf-dist/source/latex/latex-tds/tex/tools.tex
+
+name latex-tipps-und-tricks
+category Documentation
+revision 16
+docfiles size=126710
+ texmf-doc/doc/german/latex-tipps-und-tricks/adr.dat
+ texmf-doc/doc/german/latex-tipps-und-tricks/agate.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/annotate.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/ariadne.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/backpic.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/buch.cls
+ texmf-doc/doc/german/latex-tipps-und-tricks/buch.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/bulgakov.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/celg.clo
+ texmf-doc/doc/german/latex-tipps-und-tricks/chaptoc.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/chemtex.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/colorps.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/colortab.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/conv.pl
+ texmf-doc/doc/german/latex-tipps-und-tricks/deleq.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/disk.mp
+ texmf-doc/doc/german/latex-tipps-und-tricks/dvips.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/echem.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/echem.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/echem1.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/echem2.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/elegant.ist
+ texmf-doc/doc/german/latex-tipps-und-tricks/enumcont.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/eqno.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/eqno.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/erdapfel.mp
+ texmf-doc/doc/german/latex-tipps-und-tricks/faltblat.cls
+ texmf-doc/doc/german/latex-tipps-und-tricks/faltblat.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/folie.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/fontinst.pl
+ texmf-doc/doc/german/latex-tipps-und-tricks/footup.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/formular.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/fraktur.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/further.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/gamma.eps
+ texmf-doc/doc/german/latex-tipps-und-tricks/glossar.ist
+ texmf-doc/doc/german/latex-tipps-und-tricks/glossar.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/hoffmann.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/idx1.ist
+ texmf-doc/doc/german/latex-tipps-und-tricks/idx2.ist
+ texmf-doc/doc/german/latex-tipps-und-tricks/kasten.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/kyril.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/lexikon.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/liste1.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/liste2.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/listgls.ist
+ texmf-doc/doc/german/latex-tipps-und-tricks/listgls.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/literat.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/lstfloat.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/lstfloat.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/m2verb.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/mfpic.pl
+ texmf-doc/doc/german/latex-tipps-und-tricks/mfpic.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/mfpict.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/minijour.cls
+ texmf-doc/doc/german/latex-tipps-und-tricks/minijour.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/mod1.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/mod2.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/mptest.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/multibib.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/multibox.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/multicp.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/mycap.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/nofloat.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/ochem1.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/ochem2.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/ot1cyr.fd
+ texmf-doc/doc/german/latex-tipps-und-tricks/ot1cyrs.fd
+ texmf-doc/doc/german/latex-tipps-und-tricks/overpic.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/partpic.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/parttoc.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/poem.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/polyind.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/privat.cls
+ texmf-doc/doc/german/latex-tipps-und-tricks/ps.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/ps.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/pse.eps
+ texmf-doc/doc/german/latex-tipps-und-tricks/psfrag1.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/psfrag2.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/pstrick1.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/pstrick2.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/pstrick3.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/pstrick4.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/pstrick5.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/question.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/question.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/rescnt.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/rgray.eps
+ texmf-doc/doc/german/latex-tipps-und-tricks/rheingol.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/rosette.eps
+ texmf-doc/doc/german/latex-tipps-und-tricks/rotb1.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/rotb2.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/rotb3.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/sect.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/sheet.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/sheet.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/sidefig.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/simple.mp
+ texmf-doc/doc/german/latex-tipps-und-tricks/simple2.mp
+ texmf-doc/doc/german/latex-tipps-und-tricks/subfigur.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/such.pl
+ texmf-doc/doc/german/latex-tipps-und-tricks/synopsis.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/t1bsb.fd
+ texmf-doc/doc/german/latex-tipps-und-tricks/texdr.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/texdr1.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/texdr2.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/textarr.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/textmerg.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/thumb.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/tocart.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/tocart.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/tocbel.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/tocelg.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/underbr.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/underlin.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/verscnt.sty
+ texmf-doc/doc/german/latex-tipps-und-tricks/verscnt.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/vokabel.tex
+ texmf-doc/doc/german/latex-tipps-und-tricks/xref.sty
+
+name latex-web-companion
+category Documentation
+revision 1487
+docfiles size=1249898
+ texmf-doc/doc/english/latex-web-companion/apa/README.apa
+ texmf-doc/doc/english/latex-web-companion/apa/latexexa-raw.xml
+ texmf-doc/doc/english/latex-web-companion/apa/latexexa.dtd
+ texmf-doc/doc/english/latex-web-companion/apa/latexexa.ltx
+ texmf-doc/doc/english/latex-web-companion/apa/latexexa.tex
+ texmf-doc/doc/english/latex-web-companion/apa/latexexa.xml
+ texmf-doc/doc/english/latex-web-companion/apa/phys332-1.eps
+ texmf-doc/doc/english/latex-web-companion/apa/phys332-2.eps
+ texmf-doc/doc/english/latex-web-companion/apa/teched.html
+ texmf-doc/doc/english/latex-web-companion/apa/teched.java
+ texmf-doc/doc/english/latex-web-companion/apb/InvitationSAX.class
+ texmf-doc/doc/english/latex-web-companion/apb/InvitationSAX.java
+ texmf-doc/doc/english/latex-web-companion/apb/MySAXApp.class
+ texmf-doc/doc/english/latex-web-companion/apb/MySAXApp.java
+ texmf-doc/doc/english/latex-web-companion/apb/README.apb
+ texmf-doc/doc/english/latex-web-companion/apb/bibliotest1.xml
+ texmf-doc/doc/english/latex-web-companion/apb/bibliotest2.xml
+ texmf-doc/doc/english/latex-web-companion/apb/biblioxml1.dtd
+ texmf-doc/doc/english/latex-web-companion/apb/biblioxml2.dtd
+ texmf-doc/doc/english/latex-web-companion/apb/colorcir.eps
+ texmf-doc/doc/english/latex-web-companion/apb/inv2.tex
+ texmf-doc/doc/english/latex-web-companion/apb/invitation.sty
+ texmf-doc/doc/english/latex-web-companion/apb/invitation2.dtd
+ texmf-doc/doc/english/latex-web-companion/apb/invitation2.xml
+ texmf-doc/doc/english/latex-web-companion/apb/latexmath.dtd
+ texmf-doc/doc/english/latex-web-companion/apb/latexmml.dtd
+ texmf-doc/doc/english/latex-web-companion/apb/minilatex.dtd
+ texmf-doc/doc/english/latex-web-companion/apb/minilatex.xsl
+ texmf-doc/doc/english/latex-web-companion/apb/minilatexexa.tex
+ texmf-doc/doc/english/latex-web-companion/apb/minilatexexa.xml
+ texmf-doc/doc/english/latex-web-companion/apb/mybiblio.dtd
+ texmf-doc/doc/english/latex-web-companion/apb/utf82latin1.sh
+ texmf-doc/doc/english/latex-web-companion/apc/ISOcyr1.pen
+ texmf-doc/doc/english/latex-web-companion/apc/README.apc
+ texmf-doc/doc/english/latex-web-companion/apc/invitation.sty
+ texmf-doc/doc/english/latex-web-companion/apc/invitationfr.dtd
+ texmf-doc/doc/english/latex-web-companion/apc/invitationfr.sty
+ texmf-doc/doc/english/latex-web-companion/apc/invitationfr.tex
+ texmf-doc/doc/english/latex-web-companion/apc/invitationfr.xml
+ texmf-doc/doc/english/latex-web-companion/apc/invlat1fr.xsl
+ texmf-doc/doc/english/latex-web-companion/apc/utf8.html
+ texmf-doc/doc/english/latex-web-companion/apc/utf8.xml
+ texmf-doc/doc/english/latex-web-companion/apc/utf8.xsl
+ texmf-doc/doc/english/latex-web-companion/apc/utf8tei.xml
+ texmf-doc/doc/english/latex-web-companion/ch3bis/Makefile
+ texmf-doc/doc/english/latex-web-companion/ch3bis/Makefile.ex2
+ texmf-doc/doc/english/latex-web-companion/ch3bis/Makefile.ex3
+ texmf-doc/doc/english/latex-web-companion/ch3bis/README.ch3
+ texmf-doc/doc/english/latex-web-companion/ch3bis/colorcir.eps
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex20.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex21.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex22.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex2bib.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.dvi
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.idx
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.ilg
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.ind
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.lof
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.lot
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30.toc
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30/contents.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30/ex30.css
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30/ex30.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30/index.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30/index.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30/internals.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30/labels.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex30/sections.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31.ptr
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/Timg1.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/WARNINGS
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/contents.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/ex31.css
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/ex31.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/figure.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/images.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/images.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/images.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/images.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/img1.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/index.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/internals.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/labels.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex31/sections.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32.ptr
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32/contents.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32/ex32.css
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32/ex32.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32/index.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32/internals.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32/labels.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32/sections.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex32/table.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/ex3bib.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.dvi
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.idx
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.ilg
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.ind
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.lof
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.lot
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa.toc
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/images.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/images.idx
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/images.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/images.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/images.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/img1.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/img2.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/index.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/internals.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/l2hexa.css
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/l2hexa.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/labels.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/node1.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/node2.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/node3.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/node4.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/node5.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/node6.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/node7.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/l2hexa/node8.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/myinit.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS.css
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS.dvi
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/WARNINGS
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/images.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/images.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/images.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/images.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img1.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img10.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img11.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img12.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img13.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img14.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img15.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img16.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img17.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img18.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img19.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img2.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img20.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img21.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img3.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img4.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img5.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img6.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img7.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img8.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/img9.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/index.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/internals.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/labels.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/node1.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/sampleAMS.css
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleAMS/sampleAMS.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath.dvi
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/WARNINGS
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/images.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/images.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/images.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/images.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img1.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img10.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img11.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img12.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img13.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img14.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img15.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img16.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img17.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img18.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img19.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img2.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img20.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img3.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img4.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img5.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img6.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img7.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img8.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/img9.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/index.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/internals.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/labels.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/node1.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/sampleMath.css
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMath/sampleMath.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages.dvi
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/WARNINGS
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/images.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/images.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/images.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/images.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/img1.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/img2.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/img3.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/img4.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/img5.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/img6.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/img7.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/img8.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/img9.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/index.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/internals.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/labels.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/node1.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/sampleMathImages.css
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathImages/sampleMathImages.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb.dvi
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/Timg8.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/Timg9.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/WARNINGS
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/images.aux
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/images.log
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/images.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/images.tex
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/img1.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/img2.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/img3.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/img4.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/img5.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/img6.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/img7.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/img8.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/img9.gif
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/index.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/internals.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/labels.pl
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/node1.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/sampleMathThumb.css
+ texmf-doc/doc/english/latex-web-companion/ch3bis/sampleMathThumb/sampleMathThumb.html
+ texmf-doc/doc/english/latex-web-companion/ch3bis/tac2dim.eps
+ texmf-doc/doc/english/latex-web-companion/intro/lwc.eepic
+ texmf-doc/doc/english/latex-web-companion/intro/lwc.fig
+ texmf-doc/doc/english/latex-web-companion/latex2html/Makefile.ex2
+ texmf-doc/doc/english/latex-web-companion/latex2html/Makefile.ex3
+ texmf-doc/doc/english/latex-web-companion/latex2html/README.ch3
+ texmf-doc/doc/english/latex-web-companion/latex2html/colorcir.eps
+ texmf-doc/doc/english/latex-web-companion/latex2html/ex20.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/ex21.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/ex22.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/ex2bib.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/ex30.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/ex31.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/ex32.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/ex3bib.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/l2hexa.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/myinit.pl
+ texmf-doc/doc/english/latex-web-companion/latex2html/sampleAMS.css
+ texmf-doc/doc/english/latex-web-companion/latex2html/sampleAMS.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/sampleMath.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/sampleMathImages.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/sampleMathThumb.tex
+ texmf-doc/doc/english/latex-web-companion/latex2html/tac2dim.eps
+ texmf-doc/doc/english/latex-web-companion/latex2xml/amaya.mml
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isoamsae.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isoamsbe.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isoamsce.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isoamsne.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isoamsoe.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isoamsre.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isogrk3e.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isomfrke.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isomopfe.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isomscre.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isonume.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/isoteche.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/l2xdemo.cfg
+ texmf-doc/doc/english/latex-web-companion/latex2xml/l2xdemo.tex
+ texmf-doc/doc/english/latex-web-companion/latex2xml/l2xdemo.xml
+ texmf-doc/doc/english/latex-web-companion/latex2xml/l2xmath.cfg
+ texmf-doc/doc/english/latex-web-companion/latex2xml/mathml.dsl
+ texmf-doc/doc/english/latex-web-companion/latex2xml/mathml.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/mathmltools.dsl
+ texmf-doc/doc/english/latex-web-companion/latex2xml/mathmlx.dsl
+ texmf-doc/doc/english/latex-web-companion/latex2xml/mmaliase.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/mmlent.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/mtdemo.tex
+ texmf-doc/doc/english/latex-web-companion/latex2xml/stix.mml
+ texmf-doc/doc/english/latex-web-companion/latex2xml/techexpl.mml
+ texmf-doc/doc/english/latex-web-companion/latex2xml/test.dtd
+ texmf-doc/doc/english/latex-web-companion/latex2xml/test.xml
+ texmf-doc/doc/english/latex-web-companion/latex2xml/tmp.tmp
+ texmf-doc/doc/english/latex-web-companion/latex2xml/try.cfg
+ texmf-doc/doc/english/latex-web-companion/latex2xml/try2.cfg
+ texmf-doc/doc/english/latex-web-companion/latex2xml/try3.cfg
+ texmf-doc/doc/english/latex-web-companion/latex2xml/try4.cfg
+ texmf-doc/doc/english/latex-web-companion/latex2xml/try5.cfg
+ texmf-doc/doc/english/latex-web-companion/latex2xml/webeq.mml
+ texmf-doc/doc/english/latex-web-companion/latex2xml/xml.dcl
+ texmf-doc/doc/english/latex-web-companion/xml/README.ch6
+ texmf-doc/doc/english/latex-web-companion/xml/catalog
+ texmf-doc/doc/english/latex-web-companion/xml/emptyexample.xml
+ texmf-doc/doc/english/latex-web-companion/xml/invitation.dtd
+ texmf-doc/doc/english/latex-web-companion/xml/invitation.xml
+ texmf-doc/doc/english/latex-web-companion/xml/wrong.xml
+ texmf-doc/doc/english/latex-web-companion/xml/xml.dcl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/README.ch7
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/SGMLS.pm
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/SGMLS/Output.pm
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/SGMLS/Refs.pm
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/SGMLS/SGMLS.pm
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/catalog
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/catalog.dsssl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/catalog.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/dsssl.cat
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/dsssl.dtd
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/empty.dsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/empty.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/emptyexample.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/entable-alt.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/entable.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/fot.dtd
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/frisotab1exa1.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/frisotab1exa2.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/inv1html.pl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/inv2css.html.save
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/inv2html.pl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/inv2lat.pl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/inv3.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invcss.html.save
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invfo1.fo
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invfo1.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invfop.pdf
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invhtml.dsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invhtml2.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invit.css
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation.dsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation.dtd
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation.out
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation.sty
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation.tex.save
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation1.tex
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation2.dtd
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation2.html
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitation2.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invitationfr.sty
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invlat1.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invptex.pdf
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invtab1.dsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/invtab2.dsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/isotab1to2-bis.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/isotab1to2.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/isotabexa1.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/isotabexa2.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/sectionexa.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/sectionexa.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/sgmlspl.pl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/skel.pl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/style-sheet.dtd
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/templatest.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/templatest.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/templatestnok.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/templatestok.xsl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/test-SGMLS.pl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/writefiles.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/wrong.xml
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/xml.dcl
+ texmf-doc/doc/english/latex-web-companion/xmlstyle/xslexa1.xsl
+
+name latexconfig
+category Package
+revision 2175
+runfiles size=873
+ texmf-dist/tex/latex/latexconfig/latex.ini
+ texmf-dist/tex/latex/latexconfig/mllatex.ini
+ texmf-dist/tex/latex/latexconfig/pdflatex.ini
+ texmf-dist/tex/latex/latexconfig/xelatex.ini
+
+name latexmp
+category Package
+revision 4720
+docfiles size=174478
+ texmf-dist/doc/metapost/latexmp/README
+ texmf-dist/doc/metapost/latexmp/latexmp.pdf
+runfiles size=15848
+ texmf-dist/metapost/latexmp/latexmp.mp
+
+name layouts
+category Package
+revision 1024
+shortdesc Display various elements of a document's layout.
+longdesc Display information about a document, including: text
+longdesc positioning on a page; disposition of floats; layout of
+longdesc paragraphs, lists, footnotes, table of contents, and sectional
+longdesc headings; font boxes. Facilities are provided for a document
+longdesc designer to experiment with the layout parameters.
+docfiles size=358760
+ texmf-dist/doc/latex/layouts/README details="Readme"
+ texmf-dist/doc/latex/layouts/layman.pdf details="Package documentation"
+ texmf-dist/doc/latex/layouts/layman.tex
+srcfiles size=174359
+ texmf-dist/source/latex/layouts/layouts.dtx
+ texmf-dist/source/latex/layouts/layouts.ins
+runfiles size=103692
+ texmf-dist/tex/latex/layouts/layouts.sty
+catalogue-version 2.4
+catalogue-date 2007-01-08 13:31:52 +0100
+catalogue-ctan /macros/latex/contrib/layouts
+catalogue-license lppl
+
+name lazylist
+category Package
+revision 1487
+shortdesc Lists in TeX's "mouth".
+longdesc This package provides a pile of lambda-calculus and list-
+longdesc handling macros of an incredibly obtuse nature. The TUGboat
+longdesc paper serves as a manual for the macros. This TeX code was
+longdesc formally verified.
+docfiles size=88033
+ texmf-dist/doc/latex/lazylist/lazylist.dvi
+ texmf-dist/doc/latex/lazylist/lazylist.tex
+runfiles size=2645
+ texmf-dist/tex/latex/lazylist/lazylist.sty
+catalogue-version 1.0a
+catalogue-date 2006-12-30 10:59:01 +0100
+catalogue-ctan /macros/latex/contrib/lazylist
+catalogue-license lppl
+
+name lcd
+category Package
+revision 2411
+shortdesc Alphanumerical LCD-style displays.
+longdesc A LaTeX package that will display text as on an LCD display.
+longdesc Assumes 8-bit input in its internal verbatim-style environment.
+docfiles size=76910
+ texmf-dist/doc/latex/lcd/00readme details="Package README"
+ texmf-dist/doc/latex/lcd/example.pdf details="Examples"
+ texmf-dist/doc/latex/lcd/example.tex
+srcfiles size=41764
+ texmf-dist/source/latex/lcd/lcd.dtx
+ texmf-dist/source/latex/lcd/lcd.ins
+runfiles size=11603
+ texmf-dist/tex/latex/lcd/lcd.sty
+catalogue-version 0.3
+catalogue-date 2006-11-14 20:05:17 +0100
+catalogue-ctan /macros/latex/contrib/lcd
+catalogue-license lppl
+
+name lcg
+category Package
+revision 1027
+shortdesc Generate random integers.
+longdesc The lcg package generates random numbers (integers) via a
+longdesc linear congruential generator (Schrage’s method). The random
+longdesc numbers are written to a counter. The keyval package is used to
+longdesc set values for the range, a seed, and the name of the counter.
+srcfiles size=21845
+ texmf-dist/source/latex/lcg/lcg.dtx
+ texmf-dist/source/latex/lcg/lcg.ins
+runfiles size=7434
+ texmf-dist/tex/latex/lcg/lcg.sty
+catalogue-version
+catalogue-date 2006-12-30 10:59:01 +0100
+catalogue-ctan /macros/latex/contrib/lcg
+catalogue-license lppl
+
+name leading
+category Package
+revision 4267
+shortdesc Define leading with a length.
+longdesc The package defines a command \leading, whose argument is a
+longdesc <length> that specifies the nominal distance between
+longdesc consecutive baselines of typeset text. The command replaces the
+longdesc rather more difficult LaTeX command \linespread{<ratio>}, where
+longdesc the leading is specified by reference to the font size.
+docfiles size=92575
+ texmf-dist/doc/latex/leading/README details="Readme"
+ texmf-dist/doc/latex/leading/README.txt
+ texmf-dist/doc/latex/leading/dtx-style.sty
+ texmf-dist/doc/latex/leading/leading.pdf details="Package documentation"
+srcfiles size=11734
+ texmf-dist/source/latex/leading/leading.dtx
+ texmf-dist/source/latex/leading/leading.ins
+runfiles size=1126
+ texmf-dist/tex/latex/leading/leading.sty
+catalogue-version 0.2
+catalogue-date 2007-05-14 12:20:50 +0200
+catalogue-ctan /macros/latex/contrib/leading
+catalogue-license lppl
+
+name leaflet
+category Package
+revision 1029
+shortdesc Create small handouts (flyers).
+longdesc A document class to create small hand-outs (flyers) that fit on
+longdesc a single sheet of paper which is then folded twice. Pages are
+longdesc rearranged by LaTeX so that they print correctly on a single
+longdesc sheet — no external script is necessary. (Works with
+longdesc PostScript and PDF.) This is a complete reimplementation with
+longdesc permission of the original author Jürgen Schlegelmilch.
+docfiles size=265799
+ texmf-dist/doc/latex/leaflet/README details="Readme"
+ texmf-dist/doc/latex/leaflet/leaflet-manual.pdf details="Package manual (as a leaflet)"
+ texmf-dist/doc/latex/leaflet/leaflet-manual.tex
+ texmf-dist/doc/latex/leaflet/leaflet.pdf details="Documented source"
+srcfiles size=45463
+ texmf-dist/source/latex/leaflet/leaflet.dtx
+ texmf-dist/source/latex/leaflet/leaflet.ins
+runfiles size=17872
+ texmf-dist/tex/latex/leaflet/leaflet.cls
+catalogue-version 1.0c
+catalogue-date 2006-12-30 11:07:46 +0100
+catalogue-ctan /macros/latex/contrib/leaflet
+catalogue-license lppl
+
+name ledmac
+category Package
+revision 1031
+shortdesc Typeset scholarly editions in parallel texts.
+longdesc A macro package for typesetting scholarly critical editions.
+longdesc The ledmac package is a LaTeX port of the plain TeX EDMAC
+longdesc macros. It supports indexing by page and line number and simple
+longdesc tabular- and array-style environments.
+docfiles size=3064338
+ texmf-dist/doc/latex/ledmac/README details="Readme"
+ texmf-dist/doc/latex/ledmac/djd17nov.tex
+ texmf-dist/doc/latex/ledmac/djd17novL.eps
+ texmf-dist/doc/latex/ledmac/djd17novR.eps
+ texmf-dist/doc/latex/ledmac/djdpoems.tex
+ texmf-dist/doc/latex/ledmac/djdpoems1.eps
+ texmf-dist/doc/latex/ledmac/djdpoems2.eps
+ texmf-dist/doc/latex/ledmac/djdpoems3.eps
+ texmf-dist/doc/latex/ledmac/djdpoems4.eps
+ texmf-dist/doc/latex/ledmac/egarab.eps
+ texmf-dist/doc/latex/ledmac/egarab.tex
+ texmf-dist/doc/latex/ledmac/egarabpar.eps
+ texmf-dist/doc/latex/ledmac/egarabpar.tex
+ texmf-dist/doc/latex/ledmac/ledarab.pdf
+ texmf-dist/doc/latex/ledmac/ledarden.eps
+ texmf-dist/doc/latex/ledmac/ledarden.tex
+ texmf-dist/doc/latex/ledmac/ledbraonain.eps
+ texmf-dist/doc/latex/ledmac/ledbraonain.tex
+ texmf-dist/doc/latex/ledmac/ledeasy.eps
+ texmf-dist/doc/latex/ledmac/ledeasy.tex
+ texmf-dist/doc/latex/ledmac/ledekker.eps
+ texmf-dist/doc/latex/ledmac/ledekker.tex
+ texmf-dist/doc/latex/ledmac/ledfeat.eps
+ texmf-dist/doc/latex/ledmac/ledfeat.tex
+ texmf-dist/doc/latex/ledmac/ledioc.eps
+ texmf-dist/doc/latex/ledmac/ledioc.tex
+ texmf-dist/doc/latex/ledmac/ledmac.pdf details="Package documentation"
+ texmf-dist/doc/latex/ledmac/ledmixed.eps
+ texmf-dist/doc/latex/ledmac/ledmixed.tex
+ texmf-dist/doc/latex/ledmac/ledpar.pdf
+ texmf-dist/doc/latex/ledmac/villon.eps
+ texmf-dist/doc/latex/ledmac/villon.tex
+srcfiles size=690586
+ texmf-dist/source/latex/ledmac/ledarab.dtx
+ texmf-dist/source/latex/ledmac/ledarab.ins
+ texmf-dist/source/latex/ledmac/ledmac.dtx
+ texmf-dist/source/latex/ledmac/ledmac.ins
+ texmf-dist/source/latex/ledmac/ledpar.dtx
+ texmf-dist/source/latex/ledmac/ledpar.ins
+runfiles size=172529
+ texmf-dist/tex/latex/ledmac/afoot.sty
+ texmf-dist/tex/latex/ledmac/ledarab.sty
+ texmf-dist/tex/latex/ledmac/ledmac.sty
+ texmf-dist/tex/latex/ledmac/ledpar.sty
+ texmf-dist/tex/latex/ledmac/ledparpatch.sty
+ texmf-dist/tex/latex/ledmac/ledpatch.sty
+catalogue-version 0.7, patch 0.4
+catalogue-date 2007-01-08 22:21:56 +0100
+catalogue-ctan /macros/latex/contrib/ledmac
+catalogue-license lppl
+
+name leftidx
+category Package
+revision 3273
+shortdesc Left and right subscripts and superscripts in math mode.
+longdesc Left and right subscripts and superscripts are automatically
+longdesc raised for better fitting to the symbol they belong to.
+docfiles size=69028
+ texmf-dist/doc/latex/leftidx/README details="Readme"
+ texmf-dist/doc/latex/leftidx/leftidx.pdf details="Package documentation"
+srcfiles size=7949
+ texmf-dist/source/latex/leftidx/Makefile
+ texmf-dist/source/latex/leftidx/leftidx.dtx
+ texmf-dist/source/latex/leftidx/leftidx.ins
+runfiles size=832
+ texmf-dist/tex/latex/leftidx/leftidx.sty
+catalogue-version
+catalogue-date 2007-01-08 22:21:56 +0100
+catalogue-ctan /macros/latex/contrib/leftidx
+catalogue-license lppl
+
+name lettre
+category Package
+revision 1487
+shortdesc Letters and faxes in French.
+longdesc Developed from the ancestor of the standard letter class, at
+longdesc the Observatoire de Genève.
+docfiles size=417505
+ texmf-dist/doc/latex/lettre/LICENSE
+ texmf-dist/doc/latex/lettre/README details="Readme"
+ texmf-dist/doc/latex/lettre/letdoc1.dvi
+ texmf-dist/doc/latex/lettre/letdoc2.dvi
+ texmf-dist/doc/latex/lettre/letex1.dvi
+ texmf-dist/doc/latex/lettre/letex1.tex
+ texmf-dist/doc/latex/lettre/letex2.dvi
+ texmf-dist/doc/latex/lettre/letex2.tex
+ texmf-dist/doc/latex/lettre/letex3.dvi
+ texmf-dist/doc/latex/lettre/letex3.tex
+ texmf-dist/doc/latex/lettre/letex4.dvi
+ texmf-dist/doc/latex/lettre/letex4.tex
+ texmf-dist/doc/latex/lettre/letex5.dvi
+ texmf-dist/doc/latex/lettre/letex5.tex
+ texmf-dist/doc/latex/lettre/letex6.dvi
+ texmf-dist/doc/latex/lettre/letex6.tex
+ texmf-dist/doc/latex/lettre/letex7.dvi
+ texmf-dist/doc/latex/lettre/letex7.tex
+ texmf-dist/doc/latex/lettre/letex8.dvi
+ texmf-dist/doc/latex/lettre/letex8.tex
+ texmf-dist/doc/latex/lettre/lppl.txt
+ texmf-dist/doc/latex/lettre/testfaxd.dvi
+ texmf-dist/doc/latex/lettre/testfaxd.tex
+ texmf-dist/doc/latex/lettre/testfaxe.dvi
+ texmf-dist/doc/latex/lettre/testfaxe.tex
+ texmf-dist/doc/latex/lettre/testfaxf.dvi
+ texmf-dist/doc/latex/lettre/testfaxf.tex
+runfiles size=53038
+ texmf-dist/tex/latex/lettre/default.ins
+ texmf-dist/tex/latex/lettre/lettre.cls
+ texmf-dist/tex/latex/lettre/obs.ins
+catalogue-version 2.346
+catalogue-date 2007-01-08 22:21:56 +0100
+catalogue-ctan /macros/latex/contrib/lettre
+catalogue-license lppl
+
+name lettrgth
+category Package
+revision 90
+runfiles size=42932
+ texmf-dist/fonts/tfm/cg/lettrgth/clgb.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/clgb8t.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/clgr.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/clgr8t.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/clgri.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/clgri8t.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgb10u.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgb2n.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgb6j.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgb7j.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgb8u.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgb9t.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgi10u.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgi2n.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgi6j.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgi7j.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgi8u.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgi9t.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgr10u.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgr2n.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgr6j.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgr7j.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgr8u.tfm
+ texmf-dist/fonts/tfm/cg/lettrgth/lgr9t.tfm
+ texmf-dist/fonts/vf/cg/lettrgth/clgb.vf
+ texmf-dist/fonts/vf/cg/lettrgth/clgb8t.vf
+ texmf-dist/fonts/vf/cg/lettrgth/clgr.vf
+ texmf-dist/fonts/vf/cg/lettrgth/clgr8t.vf
+ texmf-dist/fonts/vf/cg/lettrgth/clgri.vf
+ texmf-dist/fonts/vf/cg/lettrgth/clgri8t.vf
+
+name lettrine
+category Package
+revision 1034
+shortdesc Typeset dropped capitals.
+longdesc The lettrine package supports various dropped capitals styles,
+longdesc typically those described in the French typographic books. In
+longdesc particular, it has facilities for the paragraph text's left
+longdesc edge to follow the outline of capitals that have a regular
+longdesc shape (such as "A" and "V").
+docfiles size=462878
+ texmf-dist/doc/latex/lettrine/README details="Readme"
+ texmf-dist/doc/latex/lettrine/W.eps
+ texmf-dist/doc/latex/lettrine/W.pdf
+ texmf-dist/doc/latex/lettrine/demo-de.pdf
+ texmf-dist/doc/latex/lettrine/demo-de.tex
+ texmf-dist/doc/latex/lettrine/demo.pdf
+ texmf-dist/doc/latex/lettrine/demo.tex
+ texmf-dist/doc/latex/lettrine/lettrine.pdf
+srcfiles size=28055
+ texmf-dist/source/latex/lettrine/lettrine.dtx
+ texmf-dist/source/latex/lettrine/lettrine.ins
+runfiles size=19651
+ texmf-dist/tex/latex/lettrine/lettrine.cfg
+ texmf-dist/tex/latex/lettrine/lettrine.sty
+ texmf-dist/tex/latex/lettrine/optfile.cfl
+ texmf-dist/tex/latex/lettrine/pacl.cfl
+ texmf-dist/tex/latex/lettrine/padl.cfl
+catalogue-version 1.6
+catalogue-date 2007-01-09 18:22:13 +0100
+catalogue-ctan /macros/latex/contrib/lettrine
+catalogue-license lppl
+
+name levy
+category Package
+revision 1035
+docfiles size=52811
+ texmf-dist/doc/fonts/levy/00readme.txt
+ texmf-dist/doc/fonts/levy/greekhist.tex
+ texmf-dist/doc/fonts/levy/greekuse.tex
+ texmf-dist/doc/fonts/levy/grinstall.tex
+ texmf-dist/doc/fonts/levy/grtestfont.tex
+ texmf-dist/doc/fonts/levy/makeall
+ texmf-dist/doc/fonts/levy/makefont
+ texmf-dist/doc/fonts/levy/testfont
+ texmf-dist/doc/fonts/levy/todo.txt
+runfiles size=172722
+ texmf-dist/fonts/source/public/levy/a.mf
+ texmf-dist/fonts/source/public/levy/b.mf
+ texmf-dist/fonts/source/public/levy/d.mf
+ texmf-dist/fonts/source/public/levy/digits.mf
+ texmf-dist/fonts/source/public/levy/e.mf
+ texmf-dist/fonts/source/public/levy/f.mf
+ texmf-dist/fonts/source/public/levy/g.mf
+ texmf-dist/fonts/source/public/levy/gen_acc.mf
+ texmf-dist/fonts/source/public/levy/gen_sigma.mf
+ texmf-dist/fonts/source/public/levy/graccent.mf
+ texmf-dist/fonts/source/public/levy/grbase.mf
+ texmf-dist/fonts/source/public/levy/grbld10.mf
+ texmf-dist/fonts/source/public/levy/grbld8.mf
+ texmf-dist/fonts/source/public/levy/grbld9.mf
+ texmf-dist/fonts/source/public/levy/greek.mf
+ texmf-dist/fonts/source/public/levy/grpunct.mf
+ texmf-dist/fonts/source/public/levy/grreg10.mf
+ texmf-dist/fonts/source/public/levy/grreg8.mf
+ texmf-dist/fonts/source/public/levy/grreg9.mf
+ texmf-dist/fonts/source/public/levy/grtt10.mf
+ texmf-dist/fonts/source/public/levy/h.mf
+ texmf-dist/fonts/source/public/levy/i.mf
+ texmf-dist/fonts/source/public/levy/j.mf
+ texmf-dist/fonts/source/public/levy/k.mf
+ texmf-dist/fonts/source/public/levy/l.mf
+ texmf-dist/fonts/source/public/levy/lig.mf
+ texmf-dist/fonts/source/public/levy/lower.mf
+ texmf-dist/fonts/source/public/levy/m.mf
+ texmf-dist/fonts/source/public/levy/n.mf
+ texmf-dist/fonts/source/public/levy/o.mf
+ texmf-dist/fonts/source/public/levy/p.mf
+ texmf-dist/fonts/source/public/levy/q.mf
+ texmf-dist/fonts/source/public/levy/r.mf
+ texmf-dist/fonts/source/public/levy/s.mf
+ texmf-dist/fonts/source/public/levy/t.mf
+ texmf-dist/fonts/source/public/levy/u.mf
+ texmf-dist/fonts/source/public/levy/upper.mf
+ texmf-dist/fonts/source/public/levy/w.mf
+ texmf-dist/fonts/source/public/levy/x.mf
+ texmf-dist/fonts/source/public/levy/y.mf
+ texmf-dist/fonts/source/public/levy/z.mf
+ texmf-dist/tex/latex/levy/slgreek.sty
+ texmf-dist/tex/plain/levy/greekmacros.tex
+
+name lewis
+category Package
+revision 1611
+shortdesc Draw Lewis structures.
+longdesc The package provides rudimentary support for drawing Lewis
+longdesc Structures. Support is limited to elements that support the
+longdesc octet rule.
+docfiles size=47489
+ texmf-dist/doc/latex/lewis/README details="Readme"
+ texmf-dist/doc/latex/lewis/lewis.pdf details="Package documentation"
+runfiles size=1417
+ texmf-dist/tex/latex/lewis/lewis.sty
+catalogue-version 0.1
+catalogue-date 2007-03-08 21:58:53 +0100
+catalogue-ctan /macros/latex/contrib/lewis
+catalogue-license pd
+
+name lexikon
+category Package
+revision 1487
+shortdesc Macros for a two language dictionary.
+docfiles size=6330
+ texmf-dist/doc/latex/lexikon/lexikon.dvi
+ texmf-dist/doc/latex/lexikon/lexikon.tex
+srcfiles size=909
+ texmf-dist/source/latex/lexikon/lexikon.upl
+runfiles size=4938
+ texmf-dist/tex/latex/lexikon/lexikon.sty
+catalogue-version 1.0c
+catalogue-date 2007-03-08 21:58:53 +0100
+catalogue-ctan /macros/latex/contrib/lexikon
+catalogue-license lppl
+
+name lfb
+category Package
+revision 101
+shortdesc A Greek font with normal and bold variants.
+longdesc This is a Greek font written in MetaFont, with inspiration from
+longdesc the Bodoni typefaces in old books. It is stylistically a little
+longdesc more exotic than the standard textbook Greek fonts,
+longdesc particularly in glyphs like the lowercase rho and kappa. It
+longdesc aims for a rather calligraphic feel, but seems to blend well
+longdesc with Computer Modern. There is a ligature scheme which
+longdesc automatically inserts the breathings required for ancient
+longdesc texts, making the input text more readable than in some
+longdesc schemes.
+docfiles size=63160
+ texmf-dist/doc/fonts/lfb/README details="Package README"
+ texmf-dist/doc/fonts/lfb/example.pdf details="Example of text in lfb" language="el"
+ texmf-dist/doc/fonts/lfb/example.tex
+ texmf-dist/doc/fonts/lfb/lfb.make
+ texmf-dist/doc/fonts/lfb/lfbacc.tex
+runfiles size=235725
+ texmf-dist/fonts/source/public/lfb/accents.mf
+ texmf-dist/fonts/source/public/lfb/alpha.mf
+ texmf-dist/fonts/source/public/lfb/beta.mf
+ texmf-dist/fonts/source/public/lfb/capitals.mf
+ texmf-dist/fonts/source/public/lfb/charmap.mf
+ texmf-dist/fonts/source/public/lfb/delta.mf
+ texmf-dist/fonts/source/public/lfb/epsilon.mf
+ texmf-dist/fonts/source/public/lfb/eta.mf
+ texmf-dist/fonts/source/public/lfb/gamma.mf
+ texmf-dist/fonts/source/public/lfb/iota.mf
+ texmf-dist/fonts/source/public/lfb/kappa.mf
+ texmf-dist/fonts/source/public/lfb/khi.mf
+ texmf-dist/fonts/source/public/lfb/lambda.mf
+ texmf-dist/fonts/source/public/lfb/lfb.mf
+ texmf-dist/fonts/source/public/lfb/lfb10.mf
+ texmf-dist/fonts/source/public/lfb/lfb11.mf
+ texmf-dist/fonts/source/public/lfb/lfb12.mf
+ texmf-dist/fonts/source/public/lfb/lfb5.mf
+ texmf-dist/fonts/source/public/lfb/lfb6.mf
+ texmf-dist/fonts/source/public/lfb/lfb7.mf
+ texmf-dist/fonts/source/public/lfb/lfb8.mf
+ texmf-dist/fonts/source/public/lfb/lfb9.mf
+ texmf-dist/fonts/source/public/lfb/lfbb10.mf
+ texmf-dist/fonts/source/public/lfb/lfbb11.mf
+ texmf-dist/fonts/source/public/lfb/lfbb12.mf
+ texmf-dist/fonts/source/public/lfb/lfbb5.mf
+ texmf-dist/fonts/source/public/lfb/lfbb6.mf
+ texmf-dist/fonts/source/public/lfb/lfbb7.mf
+ texmf-dist/fonts/source/public/lfb/lfbb8.mf
+ texmf-dist/fonts/source/public/lfb/lfbb9.mf
+ texmf-dist/fonts/source/public/lfb/ligature.mf
+ texmf-dist/fonts/source/public/lfb/mu.mf
+ texmf-dist/fonts/source/public/lfb/nu.mf
+ texmf-dist/fonts/source/public/lfb/omega.mf
+ texmf-dist/fonts/source/public/lfb/omikron.mf
+ texmf-dist/fonts/source/public/lfb/others.mf
+ texmf-dist/fonts/source/public/lfb/phi.mf
+ texmf-dist/fonts/source/public/lfb/pi.mf
+ texmf-dist/fonts/source/public/lfb/psi.mf
+ texmf-dist/fonts/source/public/lfb/rho.mf
+ texmf-dist/fonts/source/public/lfb/serifs.mf
+ texmf-dist/fonts/source/public/lfb/sigma.mf
+ texmf-dist/fonts/source/public/lfb/sigmafin.mf
+ texmf-dist/fonts/source/public/lfb/tau.mf
+ texmf-dist/fonts/source/public/lfb/theta.mf
+ texmf-dist/fonts/source/public/lfb/upsilon.mf
+ texmf-dist/fonts/source/public/lfb/xi.mf
+ texmf-dist/fonts/source/public/lfb/zeta.mf
+ texmf-dist/fonts/tfm/public/lfb/lfb10.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfb11.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfb12.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfb5.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfb6.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfb7.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfb8.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfb9.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfbb10.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfbb11.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfbb12.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfbb5.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfbb6.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfbb7.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfbb8.tfm
+ texmf-dist/fonts/tfm/public/lfb/lfbb9.tfm
+catalogue-version 1.0
+catalogue-date 2006-10-18 08:58:01 +0200
+catalogue-ctan /fonts/greek/lfb
+catalogue-license lppl
+
+name lgreek
+category Package
+revision 1037
+shortdesc Macros for using Silvio Levy's Greek fonts.
+longdesc A conversion of Silvio Levy’s Plain TeX macros for use with
+longdesc LaTeX.
+docfiles size=8534
+ texmf-dist/doc/latex/lgreek/README
+ texmf-dist/doc/latex/lgreek/lgreekuse.tex
+runfiles size=3952
+ texmf-dist/tex/latex/lgreek/LGcmr.fd
+ texmf-dist/tex/latex/lgreek/LGcmtt.fd
+ texmf-dist/tex/latex/lgreek/LGenc.def
+ texmf-dist/tex/latex/lgreek/lgreek.sty
+catalogue-version
+catalogue-date 2007-02-25 09:46:56 +0100
+catalogue-ctan /macros/latex/contrib/lgreek
+catalogue-license unknown
+
+name lh
+category Package
+revision 2249
+shortdesc CyrTUG Cyrillic alphabet fonts ("LH") with support of LaTeX standard encodings.
+longdesc The LH fonts address the problem of the wide variety of
+longdesc alphabets that are written with Cyrillic-style characters. The
+longdesc fonts are the original basis of the set of T2* and X2 encodings
+longdesc that are now used when LaTeX users need to write in Cyrillic
+longdesc languages. LH offers the latex/lhfonts bundle of packages for
+longdesc standard LaTeX Cyrillic and traditional encodings. The fonts
+longdesc are available in Adobe Type 1 format, in the CM-Super family of
+longdesc fonts.
+docfiles size=268734
+ texmf-dist/doc/fonts/lh/beresta/beresta.tex
+ texmf-dist/doc/fonts/lh/beresta/berestax.tex
+ texmf-dist/doc/fonts/lh/beresta/lacodes.tex
+ texmf-dist/doc/fonts/lh/beresta/lbcodes.tex
+ texmf-dist/doc/fonts/lh/beresta/lccodes.tex
+ texmf-dist/doc/fonts/lh/beresta/ldcodes.tex
+ texmf-dist/doc/fonts/lh/beresta/rxcodes.tex
+ texmf-dist/doc/fonts/lh/beresta/txcodes.tex
+ texmf-dist/doc/fonts/lh/beresta/yycodes.tex
+ texmf-dist/doc/fonts/lh/fonttest/allenc.tex
+ texmf-dist/doc/fonts/lh/fonttest/allenc0.tex
+ texmf-dist/doc/fonts/lh/fonttest/allenc1.tex
+ texmf-dist/doc/fonts/lh/fonttest/allenc2.tex
+ texmf-dist/doc/fonts/lh/fonttest/allenc3.tex
+ texmf-dist/doc/fonts/lh/fonttest/allenc4.tex
+ texmf-dist/doc/fonts/lh/fonttest/katalog-beresta.tex
+ texmf-dist/doc/fonts/lh/fonttest/katalog-short.t2
+ texmf-dist/doc/fonts/lh/fonttest/katalog.lh
+ texmf-dist/doc/fonts/lh/fonttest/katalog.t2
+ texmf-dist/doc/fonts/lh/fonttest/katalog1.lh
+ texmf-dist/doc/fonts/lh/fonttest/katalog1.t2
+ texmf-dist/doc/fonts/lh/fonttest/katalog2.lh
+ texmf-dist/doc/fonts/lh/fonttest/katalog2.t2
+ texmf-dist/doc/fonts/lh/fonttest/katalog3.t2
+ texmf-dist/doc/fonts/lh/fonttest/katalog4.t2
+ texmf-dist/doc/fonts/lh/fonttest/katalog5.t2
+ texmf-dist/doc/fonts/lh/fonttest/katalog6.t2
+ texmf-dist/doc/fonts/lh/fonttest/katalog7.t2
+ texmf-dist/doc/fonts/lh/fonttest/lh-fmap.tex
+ texmf-dist/doc/fonts/lh/fonttest/lh-text.tex
+ texmf-dist/doc/fonts/lh/fonttest/lh-texx.tex
+ texmf-dist/doc/fonts/lh/fonttest/lh-texy.tex
+ texmf-dist/doc/fonts/lh/fonttest/t2a-fmap-short.tex
+ texmf-dist/doc/fonts/lh/fonttest/t2a-fmap.tex
+ texmf-dist/doc/fonts/lh/fonttest/t2a-text.tex
+ texmf-dist/doc/fonts/lh/fonttest/t2b-fmap.tex
+ texmf-dist/doc/fonts/lh/fonttest/t2b-text.tex
+ texmf-dist/doc/fonts/lh/fonttest/t2c-fmap.tex
+ texmf-dist/doc/fonts/lh/fonttest/t2c-text.tex
+ texmf-dist/doc/fonts/lh/fonttest/t2d-fmap.tex
+ texmf-dist/doc/fonts/lh/fonttest/t2d-text.tex
+ texmf-dist/doc/fonts/lh/fonttest/testfox.tex
+ texmf-dist/doc/fonts/lh/fonttest/testkern.tex
+ texmf-dist/doc/fonts/lh/fonttest/testtext.tex
+ texmf-dist/doc/fonts/lh/fonttest/uc-fmap.tex
+ texmf-dist/doc/fonts/lh/fonttest/wn-comp.tex
+ texmf-dist/doc/fonts/lh/fonttest/wn-fmap.tex
+ texmf-dist/doc/fonts/lh/fonttest/wn-text.tex
+ texmf-dist/doc/fonts/lh/fonttest/x2-fmap.tex
+ texmf-dist/doc/fonts/lh/fonttest/x2-text.tex
+ texmf-dist/doc/fonts/lh/fonttest/xsl-fmap.tex
+ texmf-dist/doc/fonts/lh/fonttest/xsl-text.tex
+ texmf-dist/doc/fonts/lh/lhfonts/T1inT2.en
+ texmf-dist/doc/fonts/lh/lhfonts/fonttest.en
+ texmf-dist/doc/fonts/lh/lhfonts/lhfont35.en
+ texmf-dist/doc/fonts/lh/lhfonts/lhfont35.ru
+ texmf-dist/doc/fonts/lh/lhfonts/lhfonts.hst
+ texmf-dist/doc/fonts/lh/samples/lh-lcy.tex
+ texmf-dist/doc/fonts/lh/samples/lh-lcytext.tex
+ texmf-dist/doc/fonts/lh/samples/lh-ot2.tex
+ texmf-dist/doc/fonts/lh/samples/lh-ot2text.tex
+ texmf-dist/doc/fonts/lh/samples/lh-t2a.tex
+ texmf-dist/doc/fonts/lh/samples/lh-t2atext.tex
+srcfiles size=321971
+ texmf-dist/source/fonts/lh/dvidrv.mfj
+ texmf-dist/source/fonts/lh/dvidrvlh.mfj
+ texmf-dist/source/fonts/lh/tex/00readme.txt
+ texmf-dist/source/fonts/lh/tex/01cm-lh.tex
+ texmf-dist/source/fonts/lh/tex/03cm-wn.tex
+ texmf-dist/source/fonts/lh/tex/04cm-vf.tex
+ texmf-dist/source/fonts/lh/tex/11ex-rs.tex
+ texmf-dist/source/fonts/lh/tex/11ex-rx.tex
+ texmf-dist/source/fonts/lh/tex/12ex-la.tex
+ texmf-dist/source/fonts/lh/tex/13ex-lb.tex
+ texmf-dist/source/fonts/lh/tex/14ex-lc.tex
+ texmf-dist/source/fonts/lh/tex/15ex-ld.tex
+ texmf-dist/source/fonts/lh/tex/20cm-ct.tex
+ texmf-dist/source/fonts/lh/tex/21cm-ic.tex
+ texmf-dist/source/fonts/lh/tex/22cm-wc.tex
+ texmf-dist/source/fonts/lh/tex/23cm-mc.tex
+ texmf-dist/source/fonts/lh/tex/24cm-kc.tex
+ texmf-dist/source/fonts/lh/tex/25cm-uc.tex
+ texmf-dist/source/fonts/lh/tex/30cm-lx.tex
+ texmf-dist/source/fonts/lh/tex/31cm-ix.tex
+ texmf-dist/source/fonts/lh/tex/32cm-wx.tex
+ texmf-dist/source/fonts/lh/tex/33cm-mx.tex
+ texmf-dist/source/fonts/lh/tex/34cm-kx.tex
+ texmf-dist/source/fonts/lh/tex/46cm-ly.tex
+ texmf-dist/source/fonts/lh/tex/46cm-lz.tex
+ texmf-dist/source/fonts/lh/tex/47ex-tx.tex
+ texmf-dist/source/fonts/lh/tex/91berest.tex
+ texmf-dist/source/fonts/lh/tex/92check.tex
+ texmf-dist/source/fonts/lh/tex/92cm-xx.tex
+ texmf-dist/source/fonts/lh/tex/99-CMstd.tex
+ texmf-dist/source/fonts/lh/tex/99-T2enc.tex
+ texmf-dist/source/fonts/lh/tex/99allenc.tex
+ texmf-dist/source/fonts/lh/tex/99tstenc.tex
+ texmf-dist/source/fonts/lh/tex/cfhead.tex
+ texmf-dist/source/fonts/lh/tex/cfstdedt.tex
+ texmf-dist/source/fonts/lh/tex/cod-edt.tex
+ texmf-dist/source/fonts/lh/tex/enc-t2.tex
+ texmf-dist/source/fonts/lh/tex/fntaddcm.tex
+ texmf-dist/source/fonts/lh/tex/fntaddec.tex
+ texmf-dist/source/fonts/lh/tex/fntallcm.tex
+ texmf-dist/source/fonts/lh/tex/fntallec.tex
+ texmf-dist/source/fonts/lh/tex/fntbasec.tex
+ texmf-dist/source/fonts/lh/tex/fntbercm.tex
+ texmf-dist/source/fonts/lh/tex/fntberec.tex
+ texmf-dist/source/fonts/lh/tex/fntbricm.tex
+ texmf-dist/source/fonts/lh/tex/fntbriec.tex
+ texmf-dist/source/fonts/lh/tex/fntconcm.tex
+ texmf-dist/source/fonts/lh/tex/fntconec.tex
+ texmf-dist/source/fonts/lh/tex/fntinvcm.tex
+ texmf-dist/source/fonts/lh/tex/fntinvec.tex
+ texmf-dist/source/fonts/lh/tex/fntmincm.tex
+ texmf-dist/source/fonts/lh/tex/fntminec.tex
+ texmf-dist/source/fonts/lh/tex/fnttstcm.tex
+ texmf-dist/source/fonts/lh/tex/fnttstec.tex
+ texmf-dist/source/fonts/lh/tex/likerdat.tex
+ texmf-dist/source/fonts/lh/tex/likergrp.tex
+ texmf-dist/source/fonts/lh/tex/likermac.tex
+ texmf-dist/source/fonts/lh/tex/rliker.tex
+ texmf-dist/source/fonts/lh/tex/setter.tex
+ texmf-dist/source/latex/lh/00readme.txt
+ texmf-dist/source/latex/lh/lcyfonts.fdd
+ texmf-dist/source/latex/lh/lcyfonts.ins
+ texmf-dist/source/latex/lh/nfssfox.dtx
+ texmf-dist/source/latex/lh/nfssfox.ins
+ texmf-dist/source/latex/lh/ot2fonts.fdd
+ texmf-dist/source/latex/lh/ot2fonts.ins
+ texmf-dist/source/latex/lh/t2ccfonts.fdd
+ texmf-dist/source/latex/lh/t2ccfonts.ins
+runfiles size=2161733
+ texmf-dist/fonts/source/lh/base/fikparm.mf
+ texmf-dist/fonts/source/lh/base/lcyrbeg.mf
+ texmf-dist/fonts/source/lh/base/lcyrdefs.mf
+ texmf-dist/fonts/source/lh/base/ldbroman.mf
+ texmf-dist/fonts/source/lh/base/ldcsc.mf
+ texmf-dist/fonts/source/lh/base/ldroman.mf
+ texmf-dist/fonts/source/lh/base/ldtexset.mf
+ texmf-dist/fonts/source/lh/base/ldtextit.mf
+ texmf-dist/fonts/source/lh/base/ldtitle.mf
+ texmf-dist/fonts/source/lh/base/lebroman.mf
+ texmf-dist/fonts/source/lh/base/lecsc.mf
+ texmf-dist/fonts/source/lh/base/leroman.mf
+ texmf-dist/fonts/source/lh/base/letextit.mf
+ texmf-dist/fonts/source/lh/base/lgcspl.mf
+ texmf-dist/fonts/source/lh/base/lgcyracc.mf
+ texmf-dist/fonts/source/lh/base/lgcyri.mf
+ texmf-dist/fonts/source/lh/base/lgcyrl.mf
+ texmf-dist/fonts/source/lh/base/lgcyrsp.mf
+ texmf-dist/fonts/source/lh/base/lgcyrsym.mf
+ texmf-dist/fonts/source/lh/base/lgcyru.mf
+ texmf-dist/fonts/source/lh/base/lgengsym.mf
+ texmf-dist/fonts/source/lh/base/lgidigit.mf
+ texmf-dist/fonts/source/lh/base/lgilig.mf
+ texmf-dist/fonts/source/lh/base/lgitalp.mf
+ texmf-dist/fonts/source/lh/base/lgocyrac.mf
+ texmf-dist/fonts/source/lh/base/lgpunct.mf
+ texmf-dist/fonts/source/lh/base/lgrdigit.mf
+ texmf-dist/fonts/source/lh/base/lgrlig.mf
+ texmf-dist/fonts/source/lh/base/lgromp.mf
+ texmf-dist/fonts/source/lh/base/lgrusi.mf
+ texmf-dist/fonts/source/lh/base/lgrusl.mf
+ texmf-dist/fonts/source/lh/base/lgrusu.mf
+ texmf-dist/fonts/source/lh/base/lgt2comi.mf
+ texmf-dist/fonts/source/lh/base/lgt2coml.mf
+ texmf-dist/fonts/source/lh/base/lgt2comu.mf
+ texmf-dist/fonts/source/lh/base/lgt2loi.mf
+ texmf-dist/fonts/source/lh/base/lgt2lol.mf
+ texmf-dist/fonts/source/lh/base/lgt2lou.mf
+ texmf-dist/fonts/source/lh/base/lgt2slvi.mf
+ texmf-dist/fonts/source/lh/base/lgt2slvl.mf
+ texmf-dist/fonts/source/lh/base/lgt2slvu.mf
+ texmf-dist/fonts/source/lh/base/lgt2upi.mf
+ texmf-dist/fonts/source/lh/base/lgt2upl.mf
+ texmf-dist/fonts/source/lh/base/lgt2upu.mf
+ texmf-dist/fonts/source/lh/base/lkligtbl.mf
+ texmf-dist/fonts/source/lh/base/llbligtb.mf
+ texmf-dist/fonts/source/lh/base/llcligtb.mf
+ texmf-dist/fonts/source/lh/base/lliligtb.mf
+ texmf-dist/fonts/source/lh/base/llmligtb.mf
+ texmf-dist/fonts/source/lh/base/llrligtb.mf
+ texmf-dist/fonts/source/lh/base/llvligtb.mf
+ texmf-dist/fonts/source/lh/base/lwnligs.mf
+ texmf-dist/fonts/source/lh/base/lxpseudo.mf
+ texmf-dist/fonts/source/lh/base/lycyracc.mf
+ texmf-dist/fonts/source/lh/base/lypseudo.mf
+ texmf-dist/fonts/source/lh/base/nodraw.mf
+ texmf-dist/fonts/source/lh/lh-conc/00readme.txt
+ texmf-dist/fonts/source/lh/lh-conc/ccb10.mf
+ texmf-dist/fonts/source/lh/lh-conc/ccbx10.mf
+ texmf-dist/fonts/source/lh/lh-conc/ccbx5.mf
+ texmf-dist/fonts/source/lh/lh-conc/ccbx6.mf
+ texmf-dist/fonts/source/lh/lh-conc/ccbx7.mf
+ texmf-dist/fonts/source/lh/lh-conc/ccbx8.mf
+ texmf-dist/fonts/source/lh/lh-conc/ccbx9.mf
+ texmf-dist/fonts/source/lh/lh-conc/ccbxsl10.mf
+ texmf-dist/fonts/source/lh/lh-conc/ccbxti10.mf
+ texmf-dist/fonts/source/lh/lh-conc/concb10pt.mf
+ texmf-dist/fonts/source/lh/lh-conc/concbx10pt.mf
+ texmf-dist/fonts/source/lh/lh-conc/concbx12pt.mf
+ texmf-dist/fonts/source/lh/lh-conc/concbx5pt.mf
+ texmf-dist/fonts/source/lh/lh-conc/concbx6pt.mf
+ texmf-dist/fonts/source/lh/lh-conc/concbx7pt.mf
+ texmf-dist/fonts/source/lh/lh-conc/concbx8pt.mf
+ texmf-dist/fonts/source/lh/lh-conc/concbx9pt.mf
+ texmf-dist/fonts/source/lh/lh-conc/concbxti10.mf
+ texmf-dist/fonts/source/lh/lh-conc/concc9pt.mf
+ texmf-dist/fonts/source/lh/lh-conc/eob10.mf
+ texmf-dist/fonts/source/lh/lh-conc/eobx10.mf
+ texmf-dist/fonts/source/lh/lh-conc/eobx5.mf
+ texmf-dist/fonts/source/lh/lh-conc/eobx6.mf
+ texmf-dist/fonts/source/lh/lh-conc/eobx7.mf
+ texmf-dist/fonts/source/lh/lh-conc/eobx8.mf
+ texmf-dist/fonts/source/lh/lh-conc/eobx9.mf
+ texmf-dist/fonts/source/lh/lh-conc/eobxsl10.mf
+ texmf-dist/fonts/source/lh/lh-conc/eobxti10.mf
+ texmf-dist/fonts/source/lh/lh-conc/eoslc9.mf
+ texmf-dist/fonts/source/lh/lh-lcy/ilhcsc10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/ilhtt8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/illhss8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/illhssb8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/illhssi8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhbr10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhbr17.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhbr8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhbr9.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhbrbx10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhbrsl10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhbrsl17.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhbrsl8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhbrsl9.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcb10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcbx10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcbx5.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcbx6.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcbx7.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcbx8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcbx9.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcbxsl10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcbxti10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhccsc10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcodes.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcr10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcr5.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcr6.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcr7.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcr8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcr9.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcsl10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcsl9.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcslc9.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhcti10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhliker.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhsltl10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/lhtl10.mf
+ texmf-dist/fonts/source/lh/lh-lcy/llhss8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/llhssb8.mf
+ texmf-dist/fonts/source/lh/lh-lcy/llhssi8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/ilwnss8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/ilwnssb8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/ilwnssi8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/iwncsc10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/iwntt8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/lwnss8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/lwnssb8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/lwnssi8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnbr10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnbr17.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnbr8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnbr9.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnbrbx10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnbrsl10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnbrsl17.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnbrsl8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnbrsl9.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncb10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncbx10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncbx5.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncbx6.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncbx7.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncbx8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncbx9.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncbxsl10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncbxti10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnccsc10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncodes.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncr10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncr5.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncr6.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncr7.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncr8.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncr9.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncsl10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncsl9.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncslc9.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wncti10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnliker.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wnsltl10.mf
+ texmf-dist/fonts/source/lh/lh-ot2/wntl10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/ilalb8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/ilali8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/ilalo8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/ilalq8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/ilaltt8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labbx10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labmo10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labmo17.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labmo8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labmo9.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labmr10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labmr17.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labmr8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labmr9.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labso10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labso17.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labso8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labso9.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labsr10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labsr17.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labsr8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labsr9.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labtl10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/labto10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/lacodes.mf
+ texmf-dist/fonts/source/lh/lh-t2a/lalb8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/lali8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laliker.mf
+ texmf-dist/fonts/source/lh/lh-t2a/lalo8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/lalq8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laltt8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laob10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laobx10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laobx5.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laobx6.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laobx7.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laobx8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laobx9.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laobxsl10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laobxti10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laocc10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laorm10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laorm5.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laorm6.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laorm7.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laorm8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laorm9.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laosl10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laosl5.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laosl6.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laosl7.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laosl8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laosl9.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laoslc9.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laoti10.mf
+ texmf-dist/fonts/source/lh/lh-t2a/laqi8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/lasq8.mf
+ texmf-dist/fonts/source/lh/lh-t2a/lassdc10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/ilblb8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/ilbli8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/ilblo8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/ilblq8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/ilbltt8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbbx10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbmo10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbmo17.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbmo8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbmo9.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbmr10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbmr17.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbmr8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbmr9.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbso10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbso17.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbso8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbso9.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbsr10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbsr17.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbsr8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbsr9.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbtl10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbbto10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbcodes.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lblb8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbli8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbliker.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lblo8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lblq8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbltt8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbob10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbobx10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbobx5.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbobx6.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbobx7.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbobx8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbobx9.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbobxsl10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbobxti10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbocc10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lborm10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lborm5.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lborm6.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lborm7.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lborm8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lborm9.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbosl10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbosl5.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbosl6.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbosl7.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbosl8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbosl9.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lboslc9.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lboti10.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbqi8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbsq8.mf
+ texmf-dist/fonts/source/lh/lh-t2b/lbssdc10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/ilclb8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/ilcli8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/ilclo8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/ilclq8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/ilcltt8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbbx10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbmo10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbmo17.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbmo8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbmo9.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbmr10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbmr17.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbmr8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbmr9.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbso10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbso17.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbso8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbso9.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbsr10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbsr17.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbsr8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbsr9.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbtl10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcbto10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lccodes.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lclb8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcli8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcliker.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lclo8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lclq8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcltt8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcob10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcobx10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcobx5.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcobx6.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcobx7.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcobx8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcobx9.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcobxsl10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcobxti10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcocc10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcorm10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcorm5.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcorm6.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcorm7.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcorm8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcorm9.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcosl10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcosl5.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcosl6.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcosl7.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcosl8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcosl9.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcoslc9.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcoti10.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcqi8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcsq8.mf
+ texmf-dist/fonts/source/lh/lh-t2c/lcssdc10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ildlb8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ildli8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ildlo8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ildlq8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ildltt8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbbx10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbmo10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbmo17.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbmo8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbmo9.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbmr10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbmr17.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbmr8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbmr9.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbso10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbso17.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbso8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbso9.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbsr10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbsr17.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbsr8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbsr9.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbtl10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldbto10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldcodes.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldlb8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldli8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldliker.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldlo8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldlq8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldltt8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldob10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldobx10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldobx5.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldobx6.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldobx7.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldobx8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldobx9.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldobxsl10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldobxti10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldocc10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldorm10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldorm5.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldorm6.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldorm7.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldorm8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldorm9.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldosl10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldosl5.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldosl6.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldosl7.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldosl8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldosl9.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldoslc9.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldoti10.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldqi8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldsq8.mf
+ texmf-dist/fonts/source/lh/lh-t2d/ldssdc10.mf
+ texmf-dist/fonts/source/lh/lh-x2/irxlb8.mf
+ texmf-dist/fonts/source/lh/lh-x2/irxli8.mf
+ texmf-dist/fonts/source/lh/lh-x2/irxlo8.mf
+ texmf-dist/fonts/source/lh/lh-x2/irxlq8.mf
+ texmf-dist/fonts/source/lh/lh-x2/irxltt8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbbx10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbmo10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbmo17.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbmo8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbmo9.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbmr10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbmr17.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbmr8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbmr9.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbso10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbso17.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbso8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbso9.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbsr10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbsr17.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbsr8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbsr9.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbtl10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxbto10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxcodes.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxlb8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxli8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxliker.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxlo8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxlq8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxltt8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxob10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxobx10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxobx5.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxobx6.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxobx7.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxobx8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxobx9.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxobxsl10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxobxti10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxocc10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxorm10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxorm5.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxorm6.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxorm7.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxorm8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxorm9.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxosl10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxosl5.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxosl6.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxosl7.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxosl8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxosl9.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxoslc9.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxoti10.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxqi8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxsq8.mf
+ texmf-dist/fonts/source/lh/lh-x2/rxssdc10.mf
+ texmf-dist/fonts/source/lh/nont2/lgbersta.mf
+ texmf-dist/fonts/source/lh/nont2/lgberstb.mf
+ texmf-dist/fonts/source/lh/nont2/lgberstc.mf
+ texmf-dist/fonts/source/lh/nont2/lgcacci.mf
+ texmf-dist/fonts/source/lh/nont2/lgcaccl.mf
+ texmf-dist/fonts/source/lh/nont2/lgcaccu.mf
+ texmf-dist/fonts/source/lh/nont2/lgcmodi.mf
+ texmf-dist/fonts/source/lh/nont2/lgcmodl.mf
+ texmf-dist/fonts/source/lh/nont2/lgcmodu.mf
+ texmf-dist/fonts/source/lh/nont2/lgcvaci.mf
+ texmf-dist/fonts/source/lh/nont2/lgcvacl.mf
+ texmf-dist/fonts/source/lh/nont2/lgcvacu.mf
+ texmf-dist/fonts/source/lh/nont2/lgt2slxi.mf
+ texmf-dist/fonts/source/lh/nont2/lgt2slxl.mf
+ texmf-dist/fonts/source/lh/nont2/lgt2slxu.mf
+ texmf-dist/fonts/source/lh/nont2/lgunici.mf
+ texmf-dist/fonts/source/lh/nont2/lgunicl.mf
+ texmf-dist/fonts/source/lh/nont2/lgunicu.mf
+ texmf-dist/fonts/source/lh/nont2/lhberest.mf
+ texmf-dist/fonts/source/lh/specific/lgcrusl.mf
+ texmf-dist/fonts/source/lh/specific/lgcyrcl.mf
+ texmf-dist/fonts/source/lh/specific/lgcyrcu.mf
+ texmf-dist/fonts/source/lh/specific/lgnoncl.mf
+ texmf-dist/fonts/source/lh/specific/lgnoncu.mf
+ texmf-dist/fonts/source/lh/specific/lgrucl.mf
+ texmf-dist/fonts/source/lh/specific/lgrucu.mf
+catalogue-version 3.5f
+catalogue-date 2007-01-08 22:21:56 +0100
+catalogue-ctan /fonts/cyrillic/lh
+catalogue-license lppl
+
+name lhcyr
+category Package
+revision 1038
+shortdesc A non-standard Cyrillic input scheme.
+longdesc A collection of three LaTeX 2e styles intended for typesetting
+longdesc Russian and bilingual English-Russian documents, using the lh
+longdesc fonts and without the benefit of babel's language-switching
+longdesc mechanisms. The packages (lhcyralt and lhcyrwin for use under
+longdesc emTeX, and lhcyrkoi for use under teTeX) provide mappings
+longdesc between the input encoding and the font encoding (which is
+longdesc described as OT1). The way this is done does not match the way
+longdesc inputenc would do the job, for output via fontenc to one of the
+longdesc T2 series of font encodings.
+srcfiles size=5766
+ texmf-dist/source/latex/lhcyr/README
+ texmf-dist/source/latex/lhcyr/dvidrv.mfj
+ texmf-dist/source/latex/lhcyr/lhjob.mfj
+ texmf-dist/source/latex/lhcyr/wcjob.mfj
+runfiles size=184949
+ texmf-dist/tex/latex/lhcyr/karabas.tex
+ texmf-dist/tex/latex/lhcyr/kniga.tex
+ texmf-dist/tex/latex/lhcyr/lhcyralt/README
+ texmf-dist/tex/latex/lhcyr/lhcyralt/lhcyralt-hyphen.cfg
+ texmf-dist/tex/latex/lhcyr/lhcyralt/lhcyralt-rhyphen.tex
+ texmf-dist/tex/latex/lhcyr/lhcyralt/lhcyralt.sty
+ texmf-dist/tex/latex/lhcyr/lhcyralt/ot1lhdh.fd
+ texmf-dist/tex/latex/lhcyr/lhcyralt/ot1lhfib.fd
+ texmf-dist/tex/latex/lhcyr/lhcyralt/ot1lhfr.fd
+ texmf-dist/tex/latex/lhcyr/lhcyralt/ot1lhr.fd
+ texmf-dist/tex/latex/lhcyr/lhcyralt/ot1lhss.fd
+ texmf-dist/tex/latex/lhcyr/lhcyralt/ot1lhtt.fd
+ texmf-dist/tex/latex/lhcyr/lhcyralt/ot1lhvtt.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/README
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/kcmf.tgz
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi-hyphen.cfg
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi-rhyphen.tex
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi.sty
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/maketfms.sh
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/ot1kcdh.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/ot1kcfib.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/ot1kcfr.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/ot1kcr.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/ot1kcss.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/ot1kctt.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/ot1kcvtt.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrkoi/special.kc
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/README
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/lhcyrwin-hyphen.cfg
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/lhcyrwin-rhyphen.tex
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/lhcyrwin.sty
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/ot1wcdh.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/ot1wcfib.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/ot1wcfr.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/ot1wcr.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/ot1wcss.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/ot1wctt.fd
+ texmf-dist/tex/latex/lhcyr/lhcyrwin/ot1wcvtt.fd
+ texmf-dist/tex/latex/lhcyr/otchet.tex
+ texmf-dist/tex/latex/lhcyr/pismo.tex
+ texmf-dist/tex/latex/lhcyr/rusfonts.tex
+ texmf-dist/tex/latex/lhcyr/statya.tex
+catalogue-version
+catalogue-date 2007-01-08 22:21:56 +0100
+catalogue-ctan /macros/latex/contrib/lhcyr
+catalogue-license other
+
+name lhelp
+category Package
+revision 1039
+shortdesc Miscellaneous helper packages.
+longdesc This package defines macros which are useful for many
+longdesc documents. It is a large collection of simple ‘little
+longdesc helpers’ which do not really warrant a separate package on
+longdesc their own. Included are, among other things, definitions of
+longdesc common units with preceeding thinspaces, framed boxes where
+longdesc both width and height can be specified, starting new odd or
+longdesc even pages, draft markers, notes, conditional includes,
+longdesc including EPS files, and versions of enumerate and itemize
+longdesc which allow the horizontal and vertical spacing to be changed.
+docfiles size=256695
+ texmf-dist/doc/latex/lhelp/lhelp.pdf
+srcfiles size=83980
+ texmf-dist/source/latex/lhelp/Makefile
+ texmf-dist/source/latex/lhelp/lhelp.drv
+ texmf-dist/source/latex/lhelp/lhelp.dtx
+ texmf-dist/source/latex/lhelp/lhelp.ins
+runfiles size=16865
+ texmf-dist/tex/latex/lhelp/lhelp.sty
+catalogue-version 2.0
+catalogue-date 2007-01-08 22:21:56 +0100
+catalogue-ctan /macros/latex/contrib/lhelp
+catalogue-license gpl
+
+name lib-freetype2
+category TLCore
+revision 5403
+binfiles arch=win32 size=204800
+ bin/win32/tl90freetype2.dll
+
+name lib-geturl
+category TLCore
+revision 5403
+binfiles arch=win32 size=16384
+ bin/win32/tl90geturl.dll
+
+name lib-gnu
+category TLCore
+revision 5403
+binfiles arch=win32 size=51200
+ bin/win32/tl90gnu.dll
+
+name lib-md5
+category TLCore
+revision 5403
+binfiles arch=win32 size=8192
+ bin/win32/tl90md5.dll
+
+name lib-regex
+category TLCore
+revision 5403
+binfiles arch=win32 size=47104
+ bin/win32/tl90regex.dll
+
+name lib-texmfmp
+category TLCore
+revision 5403
+binfiles arch=win32 size=12800
+ bin/win32/tl90texmfmp.dll
+
+name lib-zlib
+category TLCore
+revision 5403
+binfiles arch=win32 size=73728
+ bin/win32/tl90zlib.dll
+
+name libertine
+category Package
+revision 5062
+shortdesc Use the font Libertine with LaTeX.
+longdesc The Linux-Libertine project offers a font family with a wide
+longdesc range of shapes, and support of several alphabets (including
+longdesc Latin, Cyrillic, Greek and Hebrew). This is the first package
+longdesc (alpha version) to use the font LinLibertine with LaTeX.
+execute addMap libertine.map
+docfiles size=6694859
+ texmf-dist/doc/fonts/libertine/Bugs
+ texmf-dist/doc/fonts/libertine/ChangeLog.txt
+ texmf-dist/doc/fonts/libertine/GPL.txt
+ texmf-dist/doc/fonts/libertine/LICENCE.txt
+ texmf-dist/doc/fonts/libertine/OFL.txt
+ texmf-dist/doc/fonts/libertine/README details="Readme"
+ texmf-dist/doc/fonts/libertine/libertinedoku.pdf
+ texmf-dist/doc/fonts/libertine/version
+runfiles size=10175343
+ texmf-dist/fonts/afm/public/libertine/fxlb.afm
+ texmf-dist/fonts/afm/public/libertine/fxlbi.afm
+ texmf-dist/fonts/afm/public/libertine/fxlbu.afm
+ texmf-dist/fonts/afm/public/libertine/fxlr.afm
+ texmf-dist/fonts/afm/public/libertine/fxlrc.afm
+ texmf-dist/fonts/afm/public/libertine/fxlri.afm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-8r.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-t1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-t1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-ts1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-ts1o.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-ts1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-00.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-01.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-02.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-03.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-04.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-05.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-06.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-07.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-09.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-1e.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-1f.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-20.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-21.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-22.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-23.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-24.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-25.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-26.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-27.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-2c.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-8x.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-a7.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-circle.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-e0.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-e1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-f6.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-fb.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-ff.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlb-xl-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbc-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbc-t1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbc-t1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbc-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbc-ts1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbc-ts1o.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbc-ts1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-8r.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-t1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-t1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-ts1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-ts1o.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-ts1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-00.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-01.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-02.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-03.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-04.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-05.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-06.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-07.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-09.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-1e.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-1f.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-20.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-21.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-22.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-23.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-24.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-25.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-26.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-27.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-2c.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-8x.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-a7.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-circle.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-e0.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-e1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-f6.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-fb.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-ff.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbi-xl-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbic-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbic-t1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbic-t1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbic-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbic-ts1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbic-ts1o.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbic-ts1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-8r.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-00.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-01.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-02.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-03.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-04.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-05.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-06.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-07.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-09.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-1e.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-1f.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-20.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-21.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-22.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-23.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-24.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-25.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-26.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-27.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-2c.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-8x.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-a7.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-circle.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-e0.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-e1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-f6.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-fb.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-ff.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlbu-xl-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-8r.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-t1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-t1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-ts1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-ts1o.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-ts1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-00.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-01.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-02.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-03.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-04.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-05.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-06.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-07.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-09.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-1e.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-1f.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-20.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-21.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-22.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-23.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-24.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-25.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-26.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-27.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-2c.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-8x.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-a7.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-circle.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-e0.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-e1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-f6.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-fb.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-ff.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlr-xl-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-8r.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-t1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-t1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-ts1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-ts1o.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-ts1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-00.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-01.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-02.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-03.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-04.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-05.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-06.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-07.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-09.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-1e.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-1f.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-20.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-21.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-22.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-23.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-24.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-25.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-26.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-27.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-2c.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-8x.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-a7.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-circle.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-e0.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-e1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-f6.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-fb.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-ff.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlrc-xl-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-8r.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-t1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-t1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-ts1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-ts1o.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-ts1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-00.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-01.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-02.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-03.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-04.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-05.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-06.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-07.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-09.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-1e.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-1f.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-20.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-21.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-22.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-23.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-24.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-25.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-26.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-27.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-2c.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-8x.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-a7.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-circle.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-e0.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-e1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-f6.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-fb.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-ff.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlri-xl-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlric-t1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlric-t1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlric-t1os.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlric-ts1.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlric-ts1fitted.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlric-ts1o.tfm
+ texmf-dist/fonts/tfm/public/libertine/fxlric-ts1os.tfm
+ texmf-dist/fonts/type1/public/libertine/fxlb.pfb
+ texmf-dist/fonts/type1/public/libertine/fxlbi.pfb
+ texmf-dist/fonts/type1/public/libertine/fxlbu.pfb
+ texmf-dist/fonts/type1/public/libertine/fxlr.pfb
+ texmf-dist/fonts/type1/public/libertine/fxlrc.pfb
+ texmf-dist/fonts/type1/public/libertine/fxlri.pfb
+ texmf-dist/fonts/vf/public/libertine/fxlb-t1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlb-t1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlb-t1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlb-ts1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlb-ts1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlb-ts1o.vf
+ texmf-dist/fonts/vf/public/libertine/fxlb-ts1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbc-t1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbc-t1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbc-t1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbc-ts1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbc-ts1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbc-ts1o.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbc-ts1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbi-t1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbi-t1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbi-t1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbi-ts1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbi-ts1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbi-ts1o.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbi-ts1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbic-t1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbic-t1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbic-t1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbic-ts1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbic-ts1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbic-ts1o.vf
+ texmf-dist/fonts/vf/public/libertine/fxlbic-ts1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlr-t1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlr-t1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlr-t1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlr-ts1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlr-ts1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlr-ts1o.vf
+ texmf-dist/fonts/vf/public/libertine/fxlr-ts1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlrc-t1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlrc-t1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlrc-t1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlrc-ts1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlrc-ts1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlrc-ts1o.vf
+ texmf-dist/fonts/vf/public/libertine/fxlrc-ts1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlri-t1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlri-t1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlri-t1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlri-ts1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlri-ts1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlri-ts1o.vf
+ texmf-dist/fonts/vf/public/libertine/fxlri-ts1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlric-t1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlric-t1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlric-t1os.vf
+ texmf-dist/fonts/vf/public/libertine/fxlric-ts1.vf
+ texmf-dist/fonts/vf/public/libertine/fxlric-ts1fitted.vf
+ texmf-dist/fonts/vf/public/libertine/fxlric-ts1o.vf
+ texmf-dist/fonts/vf/public/libertine/fxlric-ts1os.vf
+ texmf-dist/tex/latex/libertine/fxl.inc
+ texmf-dist/tex/latex/libertine/libertine.sty
+ texmf-dist/tex/latex/libertine/t1fxl.fd
+ texmf-dist/tex/latex/libertine/t1fxlf.fd
+ texmf-dist/tex/latex/libertine/t1fxlj.fd
+ texmf-dist/tex/latex/libertine/ts1fxl.fd
+ texmf-dist/tex/latex/libertine/ts1fxlf.fd
+ texmf-dist/tex/latex/libertine/ts1fxlj.fd
+ texmf-dist/tex/latex/libertine/ts1fxlo.fd
+ texmf-dist/tex/latex/libertine/ufxl00.fd
+ texmf-dist/tex/latex/libertine/ufxl01.fd
+ texmf-dist/tex/latex/libertine/ufxl02.fd
+ texmf-dist/tex/latex/libertine/ufxl03.fd
+ texmf-dist/tex/latex/libertine/ufxl04.fd
+ texmf-dist/tex/latex/libertine/ufxl05.fd
+ texmf-dist/tex/latex/libertine/ufxl06.fd
+ texmf-dist/tex/latex/libertine/ufxl07.fd
+ texmf-dist/tex/latex/libertine/ufxl09.fd
+ texmf-dist/tex/latex/libertine/ufxl1e.fd
+ texmf-dist/tex/latex/libertine/ufxl1f.fd
+ texmf-dist/tex/latex/libertine/ufxl20.fd
+ texmf-dist/tex/latex/libertine/ufxl21.fd
+ texmf-dist/tex/latex/libertine/ufxl22.fd
+ texmf-dist/tex/latex/libertine/ufxl23.fd
+ texmf-dist/tex/latex/libertine/ufxl24.fd
+ texmf-dist/tex/latex/libertine/ufxl25.fd
+ texmf-dist/tex/latex/libertine/ufxl26.fd
+ texmf-dist/tex/latex/libertine/ufxl27.fd
+ texmf-dist/tex/latex/libertine/ufxl2c.fd
+ texmf-dist/tex/latex/libertine/ufxla7.fd
+ texmf-dist/tex/latex/libertine/ufxlc.fd
+ texmf-dist/tex/latex/libertine/ufxle0.fd
+ texmf-dist/tex/latex/libertine/ufxle1.fd
+ texmf-dist/tex/latex/libertine/ufxlf6.fd
+ texmf-dist/tex/latex/libertine/ufxlfb.fd
+ texmf-dist/tex/latex/libertine/ufxlff.fd
+catalogue-version
+catalogue-date 2007-06-21 11:03:40 +0200
+catalogue-ctan /fonts/libertine
+catalogue-license gpl
+
+name limap
+category Package
+revision 1040
+shortdesc Typeset maps and blocks according to the Information Mapping method.
+longdesc The Information Mapping method provides a methodology for
+longdesc structuring and presenting information. It claims to be useful
+longdesc for readers who are more concerned about finding the right
+longdesc information than reading the document as a whole. Thus short,
+longdesc highly structured, and context free pieces of information are
+longdesc used. A LaTeX style and a LaTeX class are provided. The style
+longdesc contains definitions to typeset maps and blocks according to
+longdesc the Information Mapping method. The class provides all
+longdesc definitions to typeset a whole document.
+srcfiles size=45689
+ texmf-dist/source/latex/limap/Makefile
+ texmf-dist/source/latex/limap/limap.dtx
+ texmf-dist/source/latex/limap/limap.ins
+runfiles size=21372
+ texmf-dist/tex/latex/limap/limap.cls
+ texmf-dist/tex/latex/limap/limap.sty
+catalogue-version
+catalogue-date 2007-01-08 23:14:30 +0100
+catalogue-ctan /macros/latex/contrib/gene/limap
+catalogue-license lppl
+
+name linearA
+category Package
+revision 1870
+shortdesc Linear A script fonts.
+longdesc The linearA package provides a simple interface to two fonts
+longdesc which include all known symbols, simple and complex, of the
+longdesc Linear A script. This way one can easily replicate Linear A
+longdesc “texts” using modern typographic technology. Note that the
+longdesc Linear A script has not been deciphered yet and probably never
+longdesc will be deciphered.
+execute addMap linearA.map
+docfiles size=186240
+ texmf-dist/doc/latex/linearA/README
+ texmf-dist/doc/latex/linearA/linearA_glyphs.pdf
+srcfiles size=27800
+ texmf-dist/source/latex/linearA/linearA.dtx
+ texmf-dist/source/latex/linearA/linearA.ins
+runfiles size=202158
+ texmf-dist/fonts/afm/public/linearA/LinearA.afm
+ texmf-dist/fonts/afm/public/linearA/LinearACmplxSigns.afm
+ texmf-dist/fonts/map/dvips/linearA/linearA.map
+ texmf-dist/fonts/tfm/public/linearA/LinearA.tfm
+ texmf-dist/fonts/tfm/public/linearA/LinearACmplxSigns.tfm
+ texmf-dist/fonts/type1/public/linearA/LinearA.pfb
+ texmf-dist/fonts/type1/public/linearA/LinearACmplxSigns.pfb
+ texmf-dist/tex/latex/linearA/linearA.sty
+catalogue-version
+catalogue-date 2006-12-01 16:33:32 +0100
+catalogue-ctan /fonts/archaic/linearA
+catalogue-license lppl
+
+name lineno
+category Package
+revision 2240
+shortdesc Line numbers on paragraphs.
+longdesc Adds line numbers to selected paragraphs with reference
+longdesc possible through the LaTeX \ref and \pageref cross reference
+longdesc mechanism.
+docfiles size=755276
+ texmf-dist/doc/latex/lineno/CHANGES.txt
+ texmf-dist/doc/latex/lineno/COPYING.txt
+ texmf-dist/doc/latex/lineno/README.txt
+ texmf-dist/doc/latex/lineno/lineno.pdf details="Package documentation:"
+ texmf-dist/doc/latex/lineno/lineno.tex
+ texmf-dist/doc/latex/lineno/lnosuppl.pdf details="Supplementary files as pdf:"
+ texmf-dist/doc/latex/lineno/lnosuppl.tex
+ texmf-dist/doc/latex/lineno/ulineno.pdf details="User manual:"
+ texmf-dist/doc/latex/lineno/ulineno.tex
+runfiles size=186293
+ texmf-dist/tex/latex/lineno/ednmath0.sty
+ texmf-dist/tex/latex/lineno/edtable.sty
+ texmf-dist/tex/latex/lineno/lineno.sty
+ texmf-dist/tex/latex/lineno/vplref.sty
+catalogue-version 4.41
+catalogue-date 2006-12-08 20:57:43 +0100
+catalogue-ctan /macros/latex/contrib/lineno
+catalogue-license lppl
+
+name linguex
+category Package
+revision 1487
+shortdesc Format linguists' examples.
+longdesc This bundle comprises two packages: – The linguex package
+longdesc facilitates the formatting of linguist examples, automatically
+longdesc taking care of example numbering, indentations, indexed
+longdesc brackets, and the ‘*’ in grammaticality judgments. – The
+longdesc ps-trees package provides linguistic trees, building on the
+longdesc macros of tree-dvips, but overcoming some of the older
+longdesc package’s shortcomings.
+docfiles size=95300
+ texmf-dist/doc/latex/linguex/linguex-doc.dvi
+ texmf-dist/doc/latex/linguex/linguex-doc.tex
+ texmf-dist/doc/latex/linguex/ps-trees-doc.dvi
+ texmf-dist/doc/latex/linguex/ps-trees-doc.tex
+runfiles size=27856
+ texmf-dist/tex/latex/linguex/cgloss4e.sty
+ texmf-dist/tex/latex/linguex/linguex.sty
+ texmf-dist/tex/latex/linguex/linguho.sty
+ texmf-dist/tex/latex/linguex/ps-trees.sty
+catalogue-version 3.1
+catalogue-date 2006-12-08 22:20:56 +0100
+catalogue-ctan /macros/latex/contrib/linguex
+catalogue-license lppl
+
+name lipsum
+category Package
+revision 1043
+shortdesc Easy access to the Lorem Ipsum dummy text.
+longdesc This package gives you easy access to the Lorem Ipsum dummy
+longdesc text. All the paragraphs are taken with permission from
+longdesc http://lipsum.com/.
+docfiles size=333679
+ texmf-dist/doc/latex/lipsum/README.1st
+ texmf-dist/doc/latex/lipsum/lipsum.pdf
+srcfiles size=105087
+ texmf-dist/source/latex/lipsum/lipsum.dtx
+ texmf-dist/source/latex/lipsum/lipsum.ins
+runfiles size=100814
+ texmf-dist/tex/latex/lipsum/lipsum.sty
+catalogue-version v1.0
+catalogue-date 2006-12-08 20:57:43 +0100
+catalogue-ctan /macros/latex/contrib/lipsum
+catalogue-license lppl
+
+name listbib
+category Package
+revision 1487
+shortdesc Lists contents of BibTeX files.
+longdesc Generates listings of bibliographic data bases in BibTeX format
+longdesc — for example for archival purposes. Included is a
+longdesc listbib.bst which is better suited for this purpose than the
+longdesc standard styles.
+docfiles size=66235
+ texmf-dist/doc/latex/listbib/listbib.doc
+ texmf-dist/doc/latex/listbib/listbib.dvi
+ texmf-dist/doc/latex/listbib/listbib.tex
+srcfiles size=49790
+ texmf-dist/source/latex/listbib/listbib
+ texmf-dist/source/latex/listbib/listbib.drv
+ texmf-dist/source/latex/listbib/listbib.dtx
+ texmf-dist/source/latex/listbib/listbib.ins
+runfiles size=4760
+ texmf-dist/tex/latex/listbib/listbib.cfg
+ texmf-dist/tex/latex/listbib/listbib.sty
+catalogue-version 2.2
+catalogue-date 2006-09-21 15:43:06 +0200
+catalogue-ctan /macros/latex/contrib/listbib
+catalogue-license gpl
+
+name listings
+category Package
+revision 4002
+shortdesc Typeset source code listings using LaTeX.
+longdesc Typeset programs (programming code) within LaTeX. The source
+longdesc code is read directly by TeX. Keywords, comments and strings
+longdesc can be typeset using different styles (default is bold for
+longdesc keywords, italic for comments and no special style for
+longdesc strings). Includes support for hyperref. To use, simply
+longdesc \usepackage{listings}, identify the language with
+longdesc \lstset{language=Python}, then employ the \begin{lstlisting}
+longdesc ... \end{lstlisting} environment or the
+longdesc \lstinputlisting{filename.py} command. Short (in-line) listings
+longdesc are also available, using either \lstinline|...| or | ... |
+longdesc (after defining the | token with the \lstMakeShortInline
+longdesc command).
+docfiles size=716565
+ texmf-dist/doc/latex/listings/README details="Package Readme"
+ texmf-dist/doc/latex/listings/listings.pdf details="Package documentation"
+srcfiles size=930434
+ texmf-dist/source/latex/listings/Makefile
+ texmf-dist/source/latex/listings/listings.dtx
+ texmf-dist/source/latex/listings/listings.ins
+ texmf-dist/source/latex/listings/lstdrvrs.dtx
+ texmf-dist/source/latex/listings/lstdrvrs.ins
+runfiles size=429913
+ texmf-dist/tex/latex/listings/listings.cfg
+ texmf-dist/tex/latex/listings/listings.sty
+ texmf-dist/tex/latex/listings/lstdoc.sty
+ texmf-dist/tex/latex/listings/lstlang1.sty
+ texmf-dist/tex/latex/listings/lstlang2.sty
+ texmf-dist/tex/latex/listings/lstlang3.sty
+ texmf-dist/tex/latex/listings/lstmisc.sty
+catalogue-version 1.4
+catalogue-date 2007-03-12 20:45:12 +0100
+catalogue-ctan /macros/latex/contrib/listings
+catalogue-license lppl
+
+name listliketab
+category Package
+revision 1046
+shortdesc Typeset lists as tables.
+longdesc The listliketab package helps the user make list-like tabulars,
+longdesc i.e., a tabular that is indistinguishable from an itemize or
+longdesc enumerate environment. The advantage of using a tabular is that
+longdesc the user can add additional columns to each entry in the list.
+docfiles size=144560
+ texmf-dist/doc/latex/listliketab/README details="Package Readme"
+ texmf-dist/doc/latex/listliketab/listliketab.pdf details="Package documentation"
+srcfiles size=21894
+ texmf-dist/source/latex/listliketab/listliketab.dtx
+ texmf-dist/source/latex/listliketab/listliketab.ins
+runfiles size=2249
+ texmf-dist/tex/latex/listliketab/listliketab.sty
+catalogue-version
+catalogue-date 2006-12-08 20:57:43 +0100
+catalogue-ctan /macros/latex/contrib/listliketab
+catalogue-license lppl
+
+name listofsymbols
+category Package
+revision 1487
+shortdesc Create and manipulate lists of symbols
+longdesc Listofsymbols provides commands to automatically create a list
+longdesc of symbols (also called notation or nomenclature), and to
+longdesc handle symbols logically, i.e. define a macro that is expanded
+longdesc to the desired output and use the macro in the text rather than
+longdesc `hardcoding' the output into the text. This helps to ensure
+longdesc consistency throughout the text, especially if there is a
+longdesc chance that symbols will be changed at some stage. The package
+longdesc is more or less a combination of what the packages nomencl and
+longdesc formula do. The concept of creating the list of symbols,
+longdesc though, is different from the way nomencl.sty does it.
+docfiles size=26199
+ texmf-dist/doc/latex/listofsymbols/README details="Readme"
+ texmf-dist/doc/latex/listofsymbols/listofsymbols.dvi details="Package documentation"
+runfiles size=5878
+ texmf-dist/tex/latex/listofsymbols/listofsymbols.sty
+catalogue-version XXXX
+catalogue-date 2007-03-08 21:58:53 +0100
+catalogue-ctan /macros/latex/contrib/listofsymbols
+catalogue-license lppl
+
+name lkort
+category Documentation
+revision 15
+shortdesc A short introduction to LaTeX, in Dutch.
+longdesc This is a Dutch translation of an early document on the
+longdesc sequence that led to lshort, which itself has been translated
+longdesc to Dutch. The package itself is not available on CTAN, but
+longdesc appears in distributions.
+docfiles size=1155607
+ texmf-doc/doc/dutch/lkort/lkort.pdf
+ texmf-doc/doc/dutch/lkort/lktitle.pdf
+ texmf-doc/doc/dutch/lkort/ltxhsrc.zip
+catalogue-version
+catalogue-date 2007-01-21 00:04:50 +0100
+catalogue-ctan
+catalogue-license unknown
+
+name lkproof
+category Package
+revision 2303
+docfiles size=1752
+ texmf-dist/doc/latex/lkproof/proofeg.tex
+runfiles size=7239
+ texmf-dist/tex/latex/lkproof/proof.sty
+
+name lm
+category Package
+revision 5455
+shortdesc Latin modern fonts in outline formats.
+longdesc The Latin Modern family of fonts consists of 72 text fonts and
+longdesc 20 mathematics fonts, and is based on the Computer Modern fonts
+longdesc released into public domain by AMS (copyright © 1997 AMS). The
+longdesc lm font set contains a lot of additional characters, mainly
+longdesc accented ones, but not exclusively. There is one set of fonts,
+longdesc available both in Adobe Type 1 format (*.pfb) and in OpenType
+longdesc format (*.otf). There are five sets of TeX Font Metric files,
+longdesc corresponding to: Cork encoding (cork-*.tfm); QX encoding (qx-
+longdesc *.tfm); TeX’n’ANSI aka LY1 encoding (texnansi-*.tfm); T5
+longdesc (Vietnamese) encoding (t5-*.tfm); and Text Companion for EC
+longdesc fonts aka TS1 (ts1-*.tfm).
+execute addMap lm.map
+docfiles size=2507484
+ texmf-dist/doc/fonts/lm/GUST-FONT-LICENSE.txt
+ texmf-dist/doc/fonts/lm/MANIFEST.txt
+ texmf-dist/doc/fonts/lm/README.eng
+ texmf-dist/doc/fonts/lm/lm-hist.txt
+ texmf-dist/doc/fonts/lm/lm-info.pdf
+ texmf-dist/doc/fonts/lm/tstlmot1.pdf
+ texmf-dist/doc/fonts/lm/tstlmot1.tex
+ texmf-dist/doc/fonts/lm/tstlmot4.pdf
+ texmf-dist/doc/fonts/lm/tstlmot4.tex
+ texmf-dist/doc/fonts/lm/tstlmqx.pdf
+ texmf-dist/doc/fonts/lm/tstlmqx.tex
+ texmf-dist/doc/fonts/lm/tstlmt1.pdf
+ texmf-dist/doc/fonts/lm/tstlmt1.tex
+ texmf-dist/doc/fonts/lm/tstlmts1.pdf
+ texmf-dist/doc/fonts/lm/tstlmts1.tex
+runfiles size=41420811
+ texmf-dist/fonts/afm/public/lm/lmb10.afm
+ texmf-dist/fonts/afm/public/lm/lmbo10.afm
+ texmf-dist/fonts/afm/public/lm/lmbsy10.afm
+ texmf-dist/fonts/afm/public/lm/lmbsy5.afm
+ texmf-dist/fonts/afm/public/lm/lmbsy7.afm
+ texmf-dist/fonts/afm/public/lm/lmbx10.afm
+ texmf-dist/fonts/afm/public/lm/lmbx12.afm
+ texmf-dist/fonts/afm/public/lm/lmbx5.afm
+ texmf-dist/fonts/afm/public/lm/lmbx6.afm
+ texmf-dist/fonts/afm/public/lm/lmbx7.afm
+ texmf-dist/fonts/afm/public/lm/lmbx8.afm
+ texmf-dist/fonts/afm/public/lm/lmbx9.afm
+ texmf-dist/fonts/afm/public/lm/lmbxi10.afm
+ texmf-dist/fonts/afm/public/lm/lmbxo10.afm
+ texmf-dist/fonts/afm/public/lm/lmcsc10.afm
+ texmf-dist/fonts/afm/public/lm/lmcsco10.afm
+ texmf-dist/fonts/afm/public/lm/lmdunh10.afm
+ texmf-dist/fonts/afm/public/lm/lmduno10.afm
+ texmf-dist/fonts/afm/public/lm/lmex10.afm
+ texmf-dist/fonts/afm/public/lm/lmmi10.afm
+ texmf-dist/fonts/afm/public/lm/lmmi12.afm
+ texmf-dist/fonts/afm/public/lm/lmmi5.afm
+ texmf-dist/fonts/afm/public/lm/lmmi6.afm
+ texmf-dist/fonts/afm/public/lm/lmmi7.afm
+ texmf-dist/fonts/afm/public/lm/lmmi8.afm
+ texmf-dist/fonts/afm/public/lm/lmmi9.afm
+ texmf-dist/fonts/afm/public/lm/lmmib10.afm
+ texmf-dist/fonts/afm/public/lm/lmmib5.afm
+ texmf-dist/fonts/afm/public/lm/lmmib7.afm
+ texmf-dist/fonts/afm/public/lm/lmr10.afm
+ texmf-dist/fonts/afm/public/lm/lmr12.afm
+ texmf-dist/fonts/afm/public/lm/lmr17.afm
+ texmf-dist/fonts/afm/public/lm/lmr5.afm
+ texmf-dist/fonts/afm/public/lm/lmr6.afm
+ texmf-dist/fonts/afm/public/lm/lmr7.afm
+ texmf-dist/fonts/afm/public/lm/lmr8.afm
+ texmf-dist/fonts/afm/public/lm/lmr9.afm
+ texmf-dist/fonts/afm/public/lm/lmri10.afm
+ texmf-dist/fonts/afm/public/lm/lmri12.afm
+ texmf-dist/fonts/afm/public/lm/lmri7.afm
+ texmf-dist/fonts/afm/public/lm/lmri8.afm
+ texmf-dist/fonts/afm/public/lm/lmri9.afm
+ texmf-dist/fonts/afm/public/lm/lmro10.afm
+ texmf-dist/fonts/afm/public/lm/lmro12.afm
+ texmf-dist/fonts/afm/public/lm/lmro17.afm
+ texmf-dist/fonts/afm/public/lm/lmro8.afm
+ texmf-dist/fonts/afm/public/lm/lmro9.afm
+ texmf-dist/fonts/afm/public/lm/lmss10.afm
+ texmf-dist/fonts/afm/public/lm/lmss12.afm
+ texmf-dist/fonts/afm/public/lm/lmss17.afm
+ texmf-dist/fonts/afm/public/lm/lmss8.afm
+ texmf-dist/fonts/afm/public/lm/lmss9.afm
+ texmf-dist/fonts/afm/public/lm/lmssbo10.afm
+ texmf-dist/fonts/afm/public/lm/lmssbx10.afm
+ texmf-dist/fonts/afm/public/lm/lmssdc10.afm
+ texmf-dist/fonts/afm/public/lm/lmssdo10.afm
+ texmf-dist/fonts/afm/public/lm/lmsso10.afm
+ texmf-dist/fonts/afm/public/lm/lmsso12.afm
+ texmf-dist/fonts/afm/public/lm/lmsso17.afm
+ texmf-dist/fonts/afm/public/lm/lmsso8.afm
+ texmf-dist/fonts/afm/public/lm/lmsso9.afm
+ texmf-dist/fonts/afm/public/lm/lmssq8.afm
+ texmf-dist/fonts/afm/public/lm/lmssqbo8.afm
+ texmf-dist/fonts/afm/public/lm/lmssqbx8.afm
+ texmf-dist/fonts/afm/public/lm/lmssqo8.afm
+ texmf-dist/fonts/afm/public/lm/lmsy10.afm
+ texmf-dist/fonts/afm/public/lm/lmsy5.afm
+ texmf-dist/fonts/afm/public/lm/lmsy6.afm
+ texmf-dist/fonts/afm/public/lm/lmsy7.afm
+ texmf-dist/fonts/afm/public/lm/lmsy8.afm
+ texmf-dist/fonts/afm/public/lm/lmsy9.afm
+ texmf-dist/fonts/afm/public/lm/lmtcsc10.afm
+ texmf-dist/fonts/afm/public/lm/lmtcso10.afm
+ texmf-dist/fonts/afm/public/lm/lmtk10.afm
+ texmf-dist/fonts/afm/public/lm/lmtko10.afm
+ texmf-dist/fonts/afm/public/lm/lmtl10.afm
+ texmf-dist/fonts/afm/public/lm/lmtlc10.afm
+ texmf-dist/fonts/afm/public/lm/lmtlco10.afm
+ texmf-dist/fonts/afm/public/lm/lmtlo10.afm
+ texmf-dist/fonts/afm/public/lm/lmtt10.afm
+ texmf-dist/fonts/afm/public/lm/lmtt12.afm
+ texmf-dist/fonts/afm/public/lm/lmtt8.afm
+ texmf-dist/fonts/afm/public/lm/lmtt9.afm
+ texmf-dist/fonts/afm/public/lm/lmtti10.afm
+ texmf-dist/fonts/afm/public/lm/lmtto10.afm
+ texmf-dist/fonts/afm/public/lm/lmu10.afm
+ texmf-dist/fonts/afm/public/lm/lmvtk10.afm
+ texmf-dist/fonts/afm/public/lm/lmvtko10.afm
+ texmf-dist/fonts/afm/public/lm/lmvtl10.afm
+ texmf-dist/fonts/afm/public/lm/lmvtlo10.afm
+ texmf-dist/fonts/afm/public/lm/lmvtt10.afm
+ texmf-dist/fonts/afm/public/lm/lmvtto10.afm
+ texmf-dist/fonts/enc/dvips/lm/lm-cs.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-ec.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-el.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-l7x.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-mathex.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-mathit.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-mathsy.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-qx.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-qxtt.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-cmin.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-cmit.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-cmitt.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-cmrm.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-cmsc.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-cmtt.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-csin.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-csrm.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-cssc.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-cstt.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-plin.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-plit.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-plitt.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-plrm.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-plsc.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-pltt.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rep-t5psn.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-rm.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-t5.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-texnansi.enc
+ texmf-dist/fonts/enc/dvips/lm/lm-ts1.enc
+ texmf-dist/fonts/map/dvips/lm/lm-cs.map
+ texmf-dist/fonts/map/dvips/lm/lm-ec.map
+ texmf-dist/fonts/map/dvips/lm/lm-el.map
+ texmf-dist/fonts/map/dvips/lm/lm-l7x.map
+ texmf-dist/fonts/map/dvips/lm/lm-math.map
+ texmf-dist/fonts/map/dvips/lm/lm-qx.map
+ texmf-dist/fonts/map/dvips/lm/lm-rep-cmother.map
+ texmf-dist/fonts/map/dvips/lm/lm-rep-cmtext-interpolated.map
+ texmf-dist/fonts/map/dvips/lm/lm-rep-cmtext.map
+ texmf-dist/fonts/map/dvips/lm/lm-rep-cstext.map
+ texmf-dist/fonts/map/dvips/lm/lm-rep-pltext.map
+ texmf-dist/fonts/map/dvips/lm/lm-rep-vntext.map
+ texmf-dist/fonts/map/dvips/lm/lm-rm.map
+ texmf-dist/fonts/map/dvips/lm/lm-t5.map
+ texmf-dist/fonts/map/dvips/lm/lm-texnansi.map
+ texmf-dist/fonts/map/dvips/lm/lm-ts1.map
+ texmf-dist/fonts/map/dvips/lm/lm.map
+ texmf-dist/fonts/opentype/public/lm/lmroman10-bold.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-bolditalic.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-boldoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-capsoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-capsregular.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-demi.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-demioblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-dunhill.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-dunhilloblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-italic.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman10-unslanted.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman12-bold.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman12-italic.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman12-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman12-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman17-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman17-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman5-bold.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman5-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman6-bold.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman6-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman7-bold.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman7-italic.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman7-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman8-bold.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman8-italic.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman8-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman8-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman9-bold.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman9-italic.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman9-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmroman9-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans10-bold.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans10-boldoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans10-demicondensed.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans10-demicondensedoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans10-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans10-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans12-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans12-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans17-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans17-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans8-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans8-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans9-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmsans9-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmsansquotation8-bold.otf
+ texmf-dist/fonts/opentype/public/lm/lmsansquotation8-boldoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmsansquotation8-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmsansquotation8-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-capsoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-capsregular.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-dark.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-darkoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-italic.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-light.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-lightcondensed.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-lightcondensedoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-lightoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter10-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter12-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter8-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewriter9-regular.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewritervarwd10-dark.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewritervarwd10-darkoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewritervarwd10-light.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewritervarwd10-lightoblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewritervarwd10-oblique.otf
+ texmf-dist/fonts/opentype/public/lm/lmtypewritervarwd10-regular.otf
+ texmf-dist/fonts/tfm/public/lm/cs-lmb10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbx12.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbx5.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbx6.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbx7.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbx9.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbxi10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmbxo10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmcsco10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmdunh10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmduno10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmr10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmr12.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmr17.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmr5.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmr6.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmr7.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmr8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmr9.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmri10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmri12.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmri7.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmri8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmri9.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmro10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmro12.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmro17.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmro8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmro9.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmss10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmss12.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmss17.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmss8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmss9.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmssbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmssbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmssdc10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmssdo10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmsso10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmsso12.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmsso17.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmsso8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmsso9.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmssq8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmssqbo8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmssqbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmssqo8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtcso10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtlc10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtlco10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtt12.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtt8.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtt9.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtti10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmu10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmvtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmvtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmvtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmvtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmvtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/cs-lmvtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmb10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbx12.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbx5.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbx6.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbx7.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbx9.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbxi10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmbxo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmcsco10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmdunh10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmduno10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmr10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmr12.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmr17.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmr5.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmr6.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmr7.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmr8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmr9.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmri10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmri12.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmri7.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmri8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmri9.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmro10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmro12.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmro17.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmro8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmro9.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmss10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmss12.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmss17.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmss8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmss9.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmssbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmssbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmssdc10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmssdo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmsso10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmsso12.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmsso17.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmsso8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmsso9.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmssq8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmssqbo8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmssqbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmssqo8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtcso10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtlc10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtlco10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtt12.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtt8.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtt9.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtti10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmu10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmvtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmvtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmvtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmvtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmvtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/ec-lmvtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmb10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbx12.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbx5.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbx6.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbx7.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbx9.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbxi10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmbxo10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmcsco10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmdunh10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmduno10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmr10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmr12.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmr17.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmr5.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmr6.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmr7.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmr8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmr9.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmri10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmri12.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmri7.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmri8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmri9.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmro10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmro12.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmro17.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmro8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmro9.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmss10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmss12.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmss17.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmss8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmss9.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmssbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmssbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmssdc10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmssdo10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmsso10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmsso12.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmsso17.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmsso8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmsso9.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmssq8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmssqbo8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmssqbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmssqo8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtcso10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtlc10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtlco10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtt12.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtt8.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtt9.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtti10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmu10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmvtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmvtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmvtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmvtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmvtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/el-lmvtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmb10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbx12.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbx5.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbx6.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbx7.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbx9.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbxi10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmbxo10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmcsco10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmdunh10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmduno10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmr10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmr12.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmr17.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmr5.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmr6.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmr7.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmr8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmr9.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmri10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmri12.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmri7.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmri8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmri9.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmro10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmro12.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmro17.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmro8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmro9.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmss10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmss12.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmss17.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmss8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmss9.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmssbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmssbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmssdc10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmssdo10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmsso10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmsso12.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmsso17.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmsso8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmsso9.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmssq8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmssqbo8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmssqbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmssqo8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtcso10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtlc10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtlco10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtt12.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtt8.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtt9.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtti10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmu10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmvtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmvtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmvtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmvtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmvtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/l7x-lmvtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/lmbsy10.tfm
+ texmf-dist/fonts/tfm/public/lm/lmbsy5.tfm
+ texmf-dist/fonts/tfm/public/lm/lmbsy7.tfm
+ texmf-dist/fonts/tfm/public/lm/lmex10.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmi10.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmi12.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmi5.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmi6.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmi7.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmi8.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmi9.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmib10.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmib5.tfm
+ texmf-dist/fonts/tfm/public/lm/lmmib7.tfm
+ texmf-dist/fonts/tfm/public/lm/lmsy10.tfm
+ texmf-dist/fonts/tfm/public/lm/lmsy5.tfm
+ texmf-dist/fonts/tfm/public/lm/lmsy6.tfm
+ texmf-dist/fonts/tfm/public/lm/lmsy7.tfm
+ texmf-dist/fonts/tfm/public/lm/lmsy8.tfm
+ texmf-dist/fonts/tfm/public/lm/lmsy9.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmb10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbx12.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbx5.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbx6.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbx7.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbx9.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbxi10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmbxo10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmcsco10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmdunh10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmduno10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmr10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmr12.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmr17.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmr5.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmr6.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmr7.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmr8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmr9.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmri10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmri12.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmri7.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmri8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmri9.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmro10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmro12.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmro17.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmro8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmro9.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmss10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmss12.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmss17.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmss8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmss9.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmssbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmssbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmssdc10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmssdo10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmsso10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmsso12.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmsso17.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmsso8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmsso9.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmssq8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmssqbo8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmssqbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmssqo8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtcso10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtlc10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtlco10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtt12.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtt8.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtt9.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtti10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmu10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmvtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmvtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmvtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmvtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmvtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/qx-lmvtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmb10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbx12.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbx5.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbx6.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbx7.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbx9.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbxi10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmbxo10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmcsco10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmdunh10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmduno10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmr10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmr12.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmr17.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmr5.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmr6.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmr7.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmr8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmr9.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmri10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmri12.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmri7.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmri8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmri9.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmro10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmro12.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmro17.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmro8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmro9.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmss10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmss12.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmss17.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmss8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmss9.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmssbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmssbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmssdc10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmssdo10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmsso10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmsso12.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmsso17.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmsso8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmsso9.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmssq8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmssqbo8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmssqbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmssqo8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtcso10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtlc10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtlco10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtt12.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtt8.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtt9.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtti10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmu10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmvtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmvtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmvtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmvtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmvtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/rm-lmvtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmb10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbx12.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbx5.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbx6.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbx7.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbx9.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbxi10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmbxo10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmcsco10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmdunh10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmduno10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmr10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmr12.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmr17.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmr5.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmr6.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmr7.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmr8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmr9.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmri10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmri12.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmri7.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmri8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmri9.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmro10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmro12.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmro17.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmro8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmro9.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmss10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmss12.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmss17.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmss8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmss9.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmssbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmssbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmssdc10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmssdo10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmsso10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmsso12.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmsso17.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmsso8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmsso9.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmssq8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmssqbo8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmssqbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmssqo8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtcso10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtlc10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtlco10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtt12.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtt8.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtt9.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtti10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmu10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmvtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmvtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmvtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmvtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmvtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/t5-lmvtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmb10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbx12.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbx5.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbx6.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbx7.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbx9.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbxi10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmbxo10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmcsco10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmdunh10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmduno10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmr10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmr12.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmr17.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmr5.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmr6.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmr7.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmr8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmr9.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmri10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmri12.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmri7.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmri8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmri9.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmro10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmro12.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmro17.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmro8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmro9.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmss10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmss12.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmss17.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmss8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmss9.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmssbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmssbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmssdc10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmssdo10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmsso10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmsso12.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmsso17.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmsso8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmsso9.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmssq8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmssqbo8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmssqbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmssqo8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtcso10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtlc10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtlco10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtt12.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtt8.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtt9.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtti10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmu10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmvtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmvtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmvtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmvtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmvtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/texnansi-lmvtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmb10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbx12.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbx5.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbx6.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbx7.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbx9.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbxi10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmbxo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmcsco10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmdunh10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmduno10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmr10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmr12.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmr17.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmr5.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmr6.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmr7.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmr8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmr9.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmri10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmri12.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmri7.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmri8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmri9.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmro10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmro12.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmro17.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmro8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmro9.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmss10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmss12.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmss17.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmss8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmss9.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmssbo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmssbx10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmssdc10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmssdo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmsso10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmsso12.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmsso17.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmsso8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmsso9.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmssq8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmssqbo8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmssqbx8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmssqo8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtcso10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtlc10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtlco10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtt12.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtt8.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtt9.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtti10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmtto10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmu10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmvtk10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmvtko10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmvtl10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmvtlo10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmvtt10.tfm
+ texmf-dist/fonts/tfm/public/lm/ts1-lmvtto10.tfm
+ texmf-dist/fonts/type1/public/lm/lmb10.pfb
+ texmf-dist/fonts/type1/public/lm/lmb10.pfm
+ texmf-dist/fonts/type1/public/lm/lmbo10.pfb
+ texmf-dist/fonts/type1/public/lm/lmbo10.pfm
+ texmf-dist/fonts/type1/public/lm/lmbsy10.pfb
+ texmf-dist/fonts/type1/public/lm/lmbsy5.pfb
+ texmf-dist/fonts/type1/public/lm/lmbsy7.pfb
+ texmf-dist/fonts/type1/public/lm/lmbx10.pfb
+ texmf-dist/fonts/type1/public/lm/lmbx10.pfm
+ texmf-dist/fonts/type1/public/lm/lmbx12.pfb
+ texmf-dist/fonts/type1/public/lm/lmbx12.pfm
+ texmf-dist/fonts/type1/public/lm/lmbx5.pfb
+ texmf-dist/fonts/type1/public/lm/lmbx5.pfm
+ texmf-dist/fonts/type1/public/lm/lmbx6.pfb
+ texmf-dist/fonts/type1/public/lm/lmbx6.pfm
+ texmf-dist/fonts/type1/public/lm/lmbx7.pfb
+ texmf-dist/fonts/type1/public/lm/lmbx7.pfm
+ texmf-dist/fonts/type1/public/lm/lmbx8.pfb
+ texmf-dist/fonts/type1/public/lm/lmbx8.pfm
+ texmf-dist/fonts/type1/public/lm/lmbx9.pfb
+ texmf-dist/fonts/type1/public/lm/lmbx9.pfm
+ texmf-dist/fonts/type1/public/lm/lmbxi10.pfb
+ texmf-dist/fonts/type1/public/lm/lmbxi10.pfm
+ texmf-dist/fonts/type1/public/lm/lmbxo10.pfb
+ texmf-dist/fonts/type1/public/lm/lmbxo10.pfm
+ texmf-dist/fonts/type1/public/lm/lmcsc10.pfb
+ texmf-dist/fonts/type1/public/lm/lmcsc10.pfm
+ texmf-dist/fonts/type1/public/lm/lmcsco10.pfb
+ texmf-dist/fonts/type1/public/lm/lmcsco10.pfm
+ texmf-dist/fonts/type1/public/lm/lmdunh10.pfb
+ texmf-dist/fonts/type1/public/lm/lmdunh10.pfm
+ texmf-dist/fonts/type1/public/lm/lmduno10.pfb
+ texmf-dist/fonts/type1/public/lm/lmduno10.pfm
+ texmf-dist/fonts/type1/public/lm/lmex10.pfb
+ texmf-dist/fonts/type1/public/lm/lmmi10.pfb
+ texmf-dist/fonts/type1/public/lm/lmmi12.pfb
+ texmf-dist/fonts/type1/public/lm/lmmi5.pfb
+ texmf-dist/fonts/type1/public/lm/lmmi6.pfb
+ texmf-dist/fonts/type1/public/lm/lmmi7.pfb
+ texmf-dist/fonts/type1/public/lm/lmmi8.pfb
+ texmf-dist/fonts/type1/public/lm/lmmi9.pfb
+ texmf-dist/fonts/type1/public/lm/lmmib10.pfb
+ texmf-dist/fonts/type1/public/lm/lmmib5.pfb
+ texmf-dist/fonts/type1/public/lm/lmmib7.pfb
+ texmf-dist/fonts/type1/public/lm/lmr10.pfb
+ texmf-dist/fonts/type1/public/lm/lmr10.pfm
+ texmf-dist/fonts/type1/public/lm/lmr12.pfb
+ texmf-dist/fonts/type1/public/lm/lmr12.pfm
+ texmf-dist/fonts/type1/public/lm/lmr17.pfb
+ texmf-dist/fonts/type1/public/lm/lmr17.pfm
+ texmf-dist/fonts/type1/public/lm/lmr5.pfb
+ texmf-dist/fonts/type1/public/lm/lmr5.pfm
+ texmf-dist/fonts/type1/public/lm/lmr6.pfb
+ texmf-dist/fonts/type1/public/lm/lmr6.pfm
+ texmf-dist/fonts/type1/public/lm/lmr7.pfb
+ texmf-dist/fonts/type1/public/lm/lmr7.pfm
+ texmf-dist/fonts/type1/public/lm/lmr8.pfb
+ texmf-dist/fonts/type1/public/lm/lmr8.pfm
+ texmf-dist/fonts/type1/public/lm/lmr9.pfb
+ texmf-dist/fonts/type1/public/lm/lmr9.pfm
+ texmf-dist/fonts/type1/public/lm/lmri10.pfb
+ texmf-dist/fonts/type1/public/lm/lmri10.pfm
+ texmf-dist/fonts/type1/public/lm/lmri12.pfb
+ texmf-dist/fonts/type1/public/lm/lmri12.pfm
+ texmf-dist/fonts/type1/public/lm/lmri7.pfb
+ texmf-dist/fonts/type1/public/lm/lmri7.pfm
+ texmf-dist/fonts/type1/public/lm/lmri8.pfb
+ texmf-dist/fonts/type1/public/lm/lmri8.pfm
+ texmf-dist/fonts/type1/public/lm/lmri9.pfb
+ texmf-dist/fonts/type1/public/lm/lmri9.pfm
+ texmf-dist/fonts/type1/public/lm/lmro10.pfb
+ texmf-dist/fonts/type1/public/lm/lmro10.pfm
+ texmf-dist/fonts/type1/public/lm/lmro12.pfb
+ texmf-dist/fonts/type1/public/lm/lmro12.pfm
+ texmf-dist/fonts/type1/public/lm/lmro17.pfb
+ texmf-dist/fonts/type1/public/lm/lmro17.pfm
+ texmf-dist/fonts/type1/public/lm/lmro8.pfb
+ texmf-dist/fonts/type1/public/lm/lmro8.pfm
+ texmf-dist/fonts/type1/public/lm/lmro9.pfb
+ texmf-dist/fonts/type1/public/lm/lmro9.pfm
+ texmf-dist/fonts/type1/public/lm/lmss10.pfb
+ texmf-dist/fonts/type1/public/lm/lmss10.pfm
+ texmf-dist/fonts/type1/public/lm/lmss12.pfb
+ texmf-dist/fonts/type1/public/lm/lmss12.pfm
+ texmf-dist/fonts/type1/public/lm/lmss17.pfb
+ texmf-dist/fonts/type1/public/lm/lmss17.pfm
+ texmf-dist/fonts/type1/public/lm/lmss8.pfb
+ texmf-dist/fonts/type1/public/lm/lmss8.pfm
+ texmf-dist/fonts/type1/public/lm/lmss9.pfb
+ texmf-dist/fonts/type1/public/lm/lmss9.pfm
+ texmf-dist/fonts/type1/public/lm/lmssbo10.pfb
+ texmf-dist/fonts/type1/public/lm/lmssbo10.pfm
+ texmf-dist/fonts/type1/public/lm/lmssbx10.pfb
+ texmf-dist/fonts/type1/public/lm/lmssbx10.pfm
+ texmf-dist/fonts/type1/public/lm/lmssdc10.pfb
+ texmf-dist/fonts/type1/public/lm/lmssdc10.pfm
+ texmf-dist/fonts/type1/public/lm/lmssdo10.pfb
+ texmf-dist/fonts/type1/public/lm/lmssdo10.pfm
+ texmf-dist/fonts/type1/public/lm/lmsso10.pfb
+ texmf-dist/fonts/type1/public/lm/lmsso10.pfm
+ texmf-dist/fonts/type1/public/lm/lmsso12.pfb
+ texmf-dist/fonts/type1/public/lm/lmsso12.pfm
+ texmf-dist/fonts/type1/public/lm/lmsso17.pfb
+ texmf-dist/fonts/type1/public/lm/lmsso17.pfm
+ texmf-dist/fonts/type1/public/lm/lmsso8.pfb
+ texmf-dist/fonts/type1/public/lm/lmsso8.pfm
+ texmf-dist/fonts/type1/public/lm/lmsso9.pfb
+ texmf-dist/fonts/type1/public/lm/lmsso9.pfm
+ texmf-dist/fonts/type1/public/lm/lmssq8.pfb
+ texmf-dist/fonts/type1/public/lm/lmssq8.pfm
+ texmf-dist/fonts/type1/public/lm/lmssqbo8.pfb
+ texmf-dist/fonts/type1/public/lm/lmssqbo8.pfm
+ texmf-dist/fonts/type1/public/lm/lmssqbx8.pfb
+ texmf-dist/fonts/type1/public/lm/lmssqbx8.pfm
+ texmf-dist/fonts/type1/public/lm/lmssqo8.pfb
+ texmf-dist/fonts/type1/public/lm/lmssqo8.pfm
+ texmf-dist/fonts/type1/public/lm/lmsy10.pfb
+ texmf-dist/fonts/type1/public/lm/lmsy5.pfb
+ texmf-dist/fonts/type1/public/lm/lmsy6.pfb
+ texmf-dist/fonts/type1/public/lm/lmsy7.pfb
+ texmf-dist/fonts/type1/public/lm/lmsy8.pfb
+ texmf-dist/fonts/type1/public/lm/lmsy9.pfb
+ texmf-dist/fonts/type1/public/lm/lmtcsc10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtcsc10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtcso10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtcso10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtk10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtk10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtko10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtko10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtl10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtl10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtlc10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtlc10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtlco10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtlco10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtlo10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtlo10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtt10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtt10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtt12.pfb
+ texmf-dist/fonts/type1/public/lm/lmtt12.pfm
+ texmf-dist/fonts/type1/public/lm/lmtt8.pfb
+ texmf-dist/fonts/type1/public/lm/lmtt8.pfm
+ texmf-dist/fonts/type1/public/lm/lmtt9.pfb
+ texmf-dist/fonts/type1/public/lm/lmtt9.pfm
+ texmf-dist/fonts/type1/public/lm/lmtti10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtti10.pfm
+ texmf-dist/fonts/type1/public/lm/lmtto10.pfb
+ texmf-dist/fonts/type1/public/lm/lmtto10.pfm
+ texmf-dist/fonts/type1/public/lm/lmu10.pfb
+ texmf-dist/fonts/type1/public/lm/lmu10.pfm
+ texmf-dist/fonts/type1/public/lm/lmvtk10.pfb
+ texmf-dist/fonts/type1/public/lm/lmvtk10.pfm
+ texmf-dist/fonts/type1/public/lm/lmvtko10.pfb
+ texmf-dist/fonts/type1/public/lm/lmvtko10.pfm
+ texmf-dist/fonts/type1/public/lm/lmvtl10.pfb
+ texmf-dist/fonts/type1/public/lm/lmvtl10.pfm
+ texmf-dist/fonts/type1/public/lm/lmvtlo10.pfb
+ texmf-dist/fonts/type1/public/lm/lmvtlo10.pfm
+ texmf-dist/fonts/type1/public/lm/lmvtt10.pfb
+ texmf-dist/fonts/type1/public/lm/lmvtt10.pfm
+ texmf-dist/fonts/type1/public/lm/lmvtto10.pfb
+ texmf-dist/fonts/type1/public/lm/lmvtto10.pfm
+ texmf-dist/tex/latex/lm/il2lmdh.fd
+ texmf-dist/tex/latex/lm/il2lmr.fd
+ texmf-dist/tex/latex/lm/il2lmss.fd
+ texmf-dist/tex/latex/lm/il2lmssq.fd
+ texmf-dist/tex/latex/lm/il2lmtt.fd
+ texmf-dist/tex/latex/lm/il2lmvtt.fd
+ texmf-dist/tex/latex/lm/l7xlmdh.fd
+ texmf-dist/tex/latex/lm/l7xlmr.fd
+ texmf-dist/tex/latex/lm/l7xlmss.fd
+ texmf-dist/tex/latex/lm/l7xlmssq.fd
+ texmf-dist/tex/latex/lm/l7xlmtt.fd
+ texmf-dist/tex/latex/lm/l7xlmvtt.fd
+ texmf-dist/tex/latex/lm/lmodern.sty
+ texmf-dist/tex/latex/lm/ly1lmdh.fd
+ texmf-dist/tex/latex/lm/ly1lmr.fd
+ texmf-dist/tex/latex/lm/ly1lmss.fd
+ texmf-dist/tex/latex/lm/ly1lmssq.fd
+ texmf-dist/tex/latex/lm/ly1lmtt.fd
+ texmf-dist/tex/latex/lm/ly1lmvtt.fd
+ texmf-dist/tex/latex/lm/omllmm.fd
+ texmf-dist/tex/latex/lm/omllmr.fd
+ texmf-dist/tex/latex/lm/omslmr.fd
+ texmf-dist/tex/latex/lm/omslmsy.fd
+ texmf-dist/tex/latex/lm/omxlmex.fd
+ texmf-dist/tex/latex/lm/ot1lmdh.fd
+ texmf-dist/tex/latex/lm/ot1lmr.fd
+ texmf-dist/tex/latex/lm/ot1lmss.fd
+ texmf-dist/tex/latex/lm/ot1lmssq.fd
+ texmf-dist/tex/latex/lm/ot1lmtt.fd
+ texmf-dist/tex/latex/lm/ot1lmvtt.fd
+ texmf-dist/tex/latex/lm/ot4lmdh.fd
+ texmf-dist/tex/latex/lm/ot4lmr.fd
+ texmf-dist/tex/latex/lm/ot4lmss.fd
+ texmf-dist/tex/latex/lm/ot4lmssq.fd
+ texmf-dist/tex/latex/lm/ot4lmtt.fd
+ texmf-dist/tex/latex/lm/ot4lmvtt.fd
+ texmf-dist/tex/latex/lm/qxlmdh.fd
+ texmf-dist/tex/latex/lm/qxlmr.fd
+ texmf-dist/tex/latex/lm/qxlmss.fd
+ texmf-dist/tex/latex/lm/qxlmssq.fd
+ texmf-dist/tex/latex/lm/qxlmtt.fd
+ texmf-dist/tex/latex/lm/qxlmvtt.fd
+ texmf-dist/tex/latex/lm/t1lmdh.fd
+ texmf-dist/tex/latex/lm/t1lmr.fd
+ texmf-dist/tex/latex/lm/t1lmss.fd
+ texmf-dist/tex/latex/lm/t1lmssq.fd
+ texmf-dist/tex/latex/lm/t1lmtt.fd
+ texmf-dist/tex/latex/lm/t1lmvtt.fd
+ texmf-dist/tex/latex/lm/t5lmdh.fd
+ texmf-dist/tex/latex/lm/t5lmr.fd
+ texmf-dist/tex/latex/lm/t5lmss.fd
+ texmf-dist/tex/latex/lm/t5lmssq.fd
+ texmf-dist/tex/latex/lm/t5lmtt.fd
+ texmf-dist/tex/latex/lm/t5lmvtt.fd
+ texmf-dist/tex/latex/lm/ts1lmdh.fd
+ texmf-dist/tex/latex/lm/ts1lmr.fd
+ texmf-dist/tex/latex/lm/ts1lmss.fd
+ texmf-dist/tex/latex/lm/ts1lmssq.fd
+ texmf-dist/tex/latex/lm/ts1lmtt.fd
+ texmf-dist/tex/latex/lm/ts1lmvtt.fd
+catalogue-version 1.010x
+catalogue-date 2007-03-05 11:28:05 +0100
+catalogue-ctan /fonts/lm
+catalogue-license gfsl
+
+name lmextra
+category Package
+revision 3758
+runfiles size=128340
+ texmf-dist/fonts/truetype/hoekwater/lmextra/lmtypewriter10-regular.ttf
+
+name localloc
+category Package
+revision 1487
+shortdesc Macros for localizing TeX register allocations.
+longdesc This package approaches the problem of the shortage of
+longdesc registers, by providing a mechanism for local allocation. The
+longdesc package works with Plain TeX, LaTeX and LaTeX 2.09.
+docfiles size=41407
+ texmf-dist/doc/latex/localloc/localloc.dvi
+ texmf-dist/doc/latex/localloc/localtst.tex
+srcfiles size=43189
+ texmf-dist/source/latex/localloc/localloc.README
+ texmf-dist/source/latex/localloc/localloc.drv
+ texmf-dist/source/latex/localloc/localloc.dtx
+runfiles size=5965
+ texmf-dist/tex/latex/localloc/localloc.sty
+catalogue-version
+catalogue-date 2006-12-08 22:20:56 +0100
+catalogue-ctan /macros/latex/contrib/localloc
+catalogue-license dfsg
+
+name logic
+category Package
+revision 1487
+shortdesc A font for electronic logic design.
+longdesc A MetaFont font and a minuscule set of LaTeX macros for its
+longdesc use, for use logic design diagrams.
+docfiles size=34255
+ texmf-dist/doc/latex/logic/gn-logic14.dvi
+ texmf-dist/doc/latex/logic/gn-logic14.tex
+ texmf-dist/doc/latex/logic/milstd.tex
+runfiles size=13018
+ texmf-dist/fonts/source/public/logic/milstd.mf
+ texmf-dist/fonts/tfm/public/logic/milstd.tfm
+ texmf-dist/tex/latex/logic/gn-logic14.sty
+catalogue-version
+catalogue-date 2006-09-03 09:42:49 +0200
+catalogue-ctan /fonts/logic
+catalogue-license unknown
+
+name logpap
+category Package
+revision 1052
+shortdesc Generate logarithmic graph paper with LaTeX.
+longdesc The logpap package provides four macros for drawing
+longdesc logarithmic-logarithmic, logarithmic-linear, linear-logarithmic
+longdesc and (because it was easy to implement) linear-linear graph
+longdesc paper with LaTeX.
+docfiles size=85612
+ texmf-dist/doc/latex/logpap/README details="Package Readme"
+ texmf-dist/doc/latex/logpap/example.pdf details="Package documentation"
+ texmf-dist/doc/latex/logpap/example.tex
+srcfiles size=111222
+ texmf-dist/source/latex/logpap/logpap.dtx
+ texmf-dist/source/latex/logpap/logpap.ins
+runfiles size=28454
+ texmf-dist/tex/latex/logpap/logpap.sty
+catalogue-version 0.6
+catalogue-date 2006-12-08 22:20:56 +0100
+catalogue-ctan /macros/latex/contrib/logpap
+catalogue-license lppl
+
+name lps
+category Package
+revision 5273
+shortdesc Class for "Logic and Philosophy of Science".
+longdesc The ‘Logic and Philosophy of Science’ journal is an online
+longdesc publication of the University of Trieste (Italy). The class
+longdesc builds on the standard article class to offer a format that
+longdesc LaTeX authors may use when submitting to the journal.
+docfiles size=445442
+ texmf-dist/doc/latex/lps/README details="Readme"
+ texmf-dist/doc/latex/lps/lps.pdf details="Package documentation"
+ texmf-dist/doc/latex/lps/lpstemplate.tex
+srcfiles size=20617
+ texmf-dist/source/latex/lps/lps.dtx
+ texmf-dist/source/latex/lps/lps.ins
+runfiles size=4308
+ texmf-dist/tex/latex/lps/lps.cls
+catalogue-version 0.6
+catalogue-date 2007-04-04 15:53:03 +0200
+catalogue-ctan /macros/latex/contrib/lps
+catalogue-license lppl
+
+name lsc
+category Package
+revision 1908
+shortdesc Typesetting Live Sequence Charts.
+longdesc This package is similar to the msc package in that it provides
+longdesc macros for typesetting a variant of sequence diagrams, in this
+longdesc case the Live Sequence Charts of Damm and Harel. The package
+longdesc supports the full LSC language of the original LSC paper, the
+longdesc Klose-extensions for formal verification and some of the Harel-
+longdesc extensions for the Play-In/Play-Out approach (cf. the manual).
+docfiles size=294065
+ texmf-dist/doc/latex/lsc/README details="Readme"
+ texmf-dist/doc/latex/lsc/lsc.pdf details="Package documentation"
+ texmf-dist/doc/latex/lsc/lsc.tex
+runfiles size=62669
+ texmf-dist/bibtex/bib/lsc/lsc.bib
+ texmf-dist/tex/latex/lsc/lsc.sty
+catalogue-version
+catalogue-date 2007-03-09 12:50:50 +0100
+catalogue-ctan /macros/latex/contrib/lsc
+catalogue-license lppl
+
+name lshort-bulgarian
+category Documentation
+revision 15
+shortdesc Bulgarian translation of "The not so Short Introduction to LaTeX2e"
+longdesc The source files, PostScript and PDF files of bulgarian
+longdesc translation of the “Not so Short Introduction to LaTeX 2e”.
+docfiles size=2611328
+ texmf-doc/doc/bulgarian/lshort-bulgarian/README
+ texmf-doc/doc/bulgarian/lshort-bulgarian/lshort-bg.pdf
+ texmf-doc/doc/bulgarian/lshort-bulgarian/src/lshort-bg.src.zip
+catalogue-version
+catalogue-date 2007-03-09 12:50:50 +0100
+catalogue-ctan /info/lshort/bulgarian
+catalogue-license pd
+
+name lshort-dutch
+category Documentation
+revision 15
+shortdesc Introduction to LaTeX in Dutch.
+longdesc This is the Dutch (Nederlands) translation of the Short
+longdesc Introduction to LaTeX2e.
+docfiles size=1108455
+ texmf-doc/doc/dutch/lshort-dutch/LEESMIJ details="Readme" language="nl"
+ texmf-doc/doc/dutch/lshort-dutch/README
+ texmf-doc/doc/dutch/lshort-dutch/WIJZIGINGEN
+ texmf-doc/doc/dutch/lshort-dutch/lshort-nl-1.3.pdf details="The document itself" language="nl"
+ texmf-doc/doc/dutch/lshort-dutch/lshort-nl-1.3.src.zip
+catalogue-version 1.3
+catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-ctan /info/lshort/dutch
+catalogue-license gpl
+
+name lshort-english
+category Documentation
+revision 4611
+shortdesc A (Not So) Short Introduction to LaTeX2e.
+docfiles size=2377446
+ texmf-doc/doc/english/lshort-english/CHANGES
+ texmf-doc/doc/english/lshort-english/README details="Readme"
+ texmf-doc/doc/english/lshort-english/lshort-4.22.src.tar.gz
+ texmf-doc/doc/english/lshort-english/lshort.pdf details="The document itself"
+catalogue-version 4.22
+catalogue-date 2007-07-22 14:16:32 +0200
+catalogue-ctan /info/lshort/english
+catalogue-license dfsg
+
+name lshort-finnish
+category Documentation
+revision 1487
+shortdesc Finnish introduction to LaTeX.
+longdesc This is the Finnish translation of Short Introduction to
+longdesc LaTeX2e, with added emphasis on Finnish typesetting rules.
+docfiles size=2428885
+ texmf-doc/doc/finnish/lshort-finnish/README details="Readme"
+ texmf-doc/doc/finnish/lshort-finnish/lyhyt2e.pdf details="The document itself"
+ texmf-doc/doc/finnish/lshort-finnish/src/asiat.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/erikois.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/esipuhe.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/grafiikka.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/kiitokset.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/kirjallisuus.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/ladonta.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/llyhyt2e.sty
+ texmf-doc/doc/finnish/lshort-finnish/src/lyhyt2e.ind
+ texmf-doc/doc/finnish/lshort-finnish/src/lyhyt2e.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/matikka.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/mylayout.sty
+ texmf-doc/doc/finnish/lshort-finnish/src/otsikko.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/symbolit.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/typeset.tex
+ texmf-doc/doc/finnish/lshort-finnish/src/viritys.tex
+catalogue-version
+catalogue-date 2007-01-02 14:48:09 +0100
+catalogue-ctan /info/lshort/finnish
+catalogue-license unknown
+
+name lshort-french
+category Documentation
+revision 16
+shortdesc Short introduction to LaTeX, French translation.
+longdesc French version of A Short Introduction to LaTeX2e.
+docfiles size=2657910
+ texmf-doc/doc/french/lshort-french/README
+ texmf-doc/doc/french/lshort-french/flshort-3.20.pdf
+ texmf-doc/doc/french/lshort-french/flshort-3.20.zip
+catalogue-version
+catalogue-date 2006-12-28 00:06:45 +0100
+catalogue-ctan /info/lshort/french
+catalogue-license unknown
+
+name lshort-german
+category Documentation
+revision 16
+shortdesc German version of A Short Introduction to LaTeX2e: LaTeX2e-Kurzbeschreibung.
+docfiles size=916716
+ texmf-doc/doc/german/lshort-german/CHANGES
+ texmf-doc/doc/german/lshort-german/LaTeX2e-Kurzbeschreibung
+ texmf-doc/doc/german/lshort-german/README.l2kurz
+ texmf-doc/doc/german/lshort-german/a.ps
+ texmf-doc/doc/german/lshort-german/l2gfdl.tex
+ texmf-doc/doc/german/lshort-german/l2k1.tex
+ texmf-doc/doc/german/lshort-german/l2k2.tex
+ texmf-doc/doc/german/lshort-german/l2k3.tex
+ texmf-doc/doc/german/lshort-german/l2k4.tex
+ texmf-doc/doc/german/lshort-german/l2k5.tex
+ texmf-doc/doc/german/lshort-german/l2k6.tex
+ texmf-doc/doc/german/lshort-german/l2ka.tex
+ texmf-doc/doc/german/lshort-german/l2ksym.tex
+ texmf-doc/doc/german/lshort-german/l2kurz.pdf
+ texmf-doc/doc/german/lshort-german/l2kurz.tex
+ texmf-doc/doc/german/lshort-german/l2kurz2.pdf
+catalogue-version
+catalogue-date 2006-12-28 00:06:45 +0100
+catalogue-ctan /info/lshort/german
+catalogue-license dfsg
+
+name lshort-italian
+category Documentation
+revision 14
+shortdesc Introduction to LaTeX in Italian.
+longdesc This is the Italian translation of the Short Introduction to
+longdesc LaTeX2e.
+docfiles size=1136382
+ texmf-doc/doc/italian/lshort-italian/CHANGES
+ texmf-doc/doc/italian/lshort-italian/MANIFEST
+ texmf-doc/doc/italian/lshort-italian/Makefile
+ texmf-doc/doc/italian/lshort-italian/README
+ texmf-doc/doc/italian/lshort-italian/TRANSLATIONS
+ texmf-doc/doc/italian/lshort-italian/fixdate.pl
+ texmf-doc/doc/italian/lshort-italian/itlshort.pdf details="The document itself" language="it"
+ texmf-doc/doc/italian/lshort-italian/src.zip
+catalogue-version
+catalogue-date 2007-01-01 00:42:16 +0100
+catalogue-ctan /info/lshort/italian
+catalogue-license gpl
+
+name lshort-japanese
+category Documentation
+revision 14
+shortdesc Japanese version of A Short Introduction to LaTeX2e
+docfiles size=1345745
+ texmf-doc/doc/japanese/lshort-japanese/00README
+ texmf-doc/doc/japanese/lshort-japanese/CHANGES.jp
+ texmf-doc/doc/japanese/lshort-japanese/READ.ME
+ texmf-doc/doc/japanese/lshort-japanese/jlshort-1.00.src.tar.gz
+ texmf-doc/doc/japanese/lshort-japanese/jlshort.pdf
+catalogue-version
+catalogue-date 2006-12-28 00:06:45 +0100
+catalogue-ctan /info/lshort/japanese
+catalogue-license gpl
+
+name lshort-korean
+category Documentation
+revision 2276
+shortdesc Korean introduction to LaTeX.
+longdesc A translation of Oetiker's original (not so) short
+longdesc introduction.
+docfiles size=1564328
+ texmf-doc/doc/korean/lshort-korean/README.ko
+ texmf-doc/doc/korean/lshort-korean/lshort-kr-src.tar.gz
+ texmf-doc/doc/korean/lshort-korean/lshort-kr.pdf details="The document itself" language="ko"
+catalogue-version
+catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-ctan /info/lshort/korean
+catalogue-license unknown
+
+name lshort-mongolian
+category Documentation
+revision 14
+shortdesc Short introduction to LaTeX, Mongolian translation.
+longdesc Mongolian version of A Short Introduction to LaTeX2e.
+docfiles size=30592
+ texmf-doc/doc/mongolian/lshort-mongolian/README
+ texmf-doc/doc/mongolian/lshort-mongolian/bogino.pdf
+ texmf-doc/doc/mongolian/lshort-mongolian/src.zip
+catalogue-version
+catalogue-date 2006-12-28 00:06:45 +0100
+catalogue-ctan /info/lshort/mongolian
+catalogue-license unknown
+
+name lshort-polish
+category Documentation
+revision 3771
+shortdesc Introduction to LaTeX in Polish.
+longdesc This is the Polish translation of A Short Introduction to
+longdesc LaTeX2e.
+docfiles size=1516867
+ texmf-doc/doc/polish/lshort-polish/README
+ texmf-doc/doc/polish/lshort-polish/lshort2e.pdf
+ texmf-doc/doc/polish/lshort-polish/src.zip
+catalogue-version
+catalogue-date 2006-12-28 00:06:45 +0100
+catalogue-ctan /info/lshort/polish
+catalogue-license pd
+
+name lshort-portuguese
+category Documentation
+revision 1657
+shortdesc Introduction to LaTeX in Portuguese.
+longdesc This is the Portuguese translation of A Short Introduction to
+longdesc LaTeX2e.
+docfiles size=2109639
+ texmf-doc/doc/portuguese/lshort-portuguese/ptlshort-4.20.pt.src.tar.gz
+ texmf-doc/doc/portuguese/lshort-portuguese/ptlshort.pdf
+catalogue-version 4.20.1
+catalogue-date 2007-09-20 11:16:29 +0200
+catalogue-ctan /info/lshort/portuguese
+catalogue-license pd
+
+name lshort-russian
+category Documentation
+revision 1487
+shortdesc Russian introduction to LaTeX.
+longdesc Russian version of A Short Introduction to LaTeX2e.
+docfiles size=3420140
+ texmf-doc/doc/russian/lshort-russian/CHANGES
+ texmf-doc/doc/russian/lshort-russian/MANIFEST
+ texmf-doc/doc/russian/lshort-russian/Makefile
+ texmf-doc/doc/russian/lshort-russian/README
+ texmf-doc/doc/russian/lshort-russian/fixdate.pl
+ texmf-doc/doc/russian/lshort-russian/lshort.dvi
+ texmf-doc/doc/russian/lshort-russian/lshortru.pdf
+ texmf-doc/doc/russian/lshort-russian/src/biblio.tex
+ texmf-doc/doc/russian/lshort-russian/src/contrib.tex
+ texmf-doc/doc/russian/lshort-russian/src/custom.tex
+ texmf-doc/doc/russian/lshort-russian/src/fancyhea.sty
+ texmf-doc/doc/russian/lshort-russian/src/fancyvrb.cfg
+ texmf-doc/doc/russian/lshort-russian/src/fancyvrb.sty
+ texmf-doc/doc/russian/lshort-russian/src/graphic.tex
+ texmf-doc/doc/russian/lshort-russian/src/hbaw.sty
+ texmf-doc/doc/russian/lshort-russian/src/hcolor.sty
+ texmf-doc/doc/russian/lshort-russian/src/lshort.out
+ texmf-doc/doc/russian/lshort-russian/src/lshort.sty
+ texmf-doc/doc/russian/lshort-russian/src/lshort.tex
+ texmf-doc/doc/russian/lshort-russian/src/lssym.tex
+ texmf-doc/doc/russian/lshort-russian/src/math.tex
+ texmf-doc/doc/russian/lshort-russian/src/mylayout.sty
+ texmf-doc/doc/russian/lshort-russian/src/overview.tex
+ texmf-doc/doc/russian/lshort-russian/src/spec.tex
+ texmf-doc/doc/russian/lshort-russian/src/t-fvrbex.tex
+ texmf-doc/doc/russian/lshort-russian/src/things.tex
+ texmf-doc/doc/russian/lshort-russian/src/title.tex
+ texmf-doc/doc/russian/lshort-russian/src/typeset.tex
+catalogue-version
+catalogue-date 2006-12-28 00:06:45 +0100
+catalogue-ctan /info/lshort/russian
+catalogue-license gpl
+
+name lshort-slovak
+category Documentation
+revision 16
+shortdesc Slovak introduction to LaTeX.
+longdesc A Slovak translation of Oetiker‘s (not so) short
+longdesc introduction.
+docfiles size=902460
+ texmf-doc/doc/slovak/lshort-slovak/slshorte.pdf
+ texmf-doc/doc/slovak/lshort-slovak/src.zip
+catalogue-version
+catalogue-date 2006-12-30 01:42:23 +0100
+catalogue-ctan /info/lshort/slovak
+catalogue-license lppl
+
+name lshort-spanish
+category Documentation
+revision 16
+shortdesc A description of LaTeX 2e.
+longdesc A Spanish introduction, (apparently) written in parallel with A
+longdesc Short Introduction to LaTeX2e.
+docfiles size=738848
+ texmf-doc/doc/spanish/lshort-spanish/CAMBIOS
+ texmf-doc/doc/spanish/lshort-spanish/LEAME
+ texmf-doc/doc/spanish/lshort-spanish/PORHACER
+ texmf-doc/doc/spanish/lshort-spanish/biblio.tex
+ texmf-doc/doc/spanish/lshort-spanish/composc.tex
+ texmf-doc/doc/spanish/lshort-spanish/contrib.tex
+ texmf-doc/doc/spanish/lshort-spanish/cosas.tex
+ texmf-doc/doc/spanish/lshort-spanish/especs.tex
+ texmf-doc/doc/spanish/lshort-spanish/ldesc2e.pdf
+ texmf-doc/doc/spanish/lshort-spanish/ldesc2e.sty
+ texmf-doc/doc/spanish/lshort-spanish/ldesc2e.tex
+ texmf-doc/doc/spanish/lshort-spanish/ldsim.tex
+ texmf-doc/doc/spanish/lshort-spanish/matem.tex
+ texmf-doc/doc/spanish/lshort-spanish/prefacio.tex
+ texmf-doc/doc/spanish/lshort-spanish/titulo.tex
+catalogue-version
+catalogue-date 2006-12-28 00:06:45 +0100
+catalogue-ctan /info/lshort/spanish
+catalogue-license unknown
+
+name lshort-thai
+category Documentation
+revision 11
+shortdesc Introduction to LaTeX in Thai.
+longdesc This is the Thai translation of the Short Introduction to
+longdesc LaTeX2e.
+docfiles size=545908
+ texmf-doc/doc/thai/lshort-thai/lsh132.pdf details="The document itself"
+ texmf-doc/doc/thai/lshort-thai/lsh132.zip
+ texmf-doc/doc/thai/lshort-thai/readme details="Readme"
+catalogue-version 1.32
+catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-ctan /info/lshort/thai
+catalogue-license pd
+
+name lshort-turkish
+category Documentation
+revision 2180
+shortdesc Turkish introduction to LaTeX.
+longdesc A Turkish translation of Oetiker‘s (not so) short
+longdesc introduction.
+docfiles size=1823848
+ texmf-doc/doc/turkish/lshort-turkish/README
+ texmf-doc/doc/turkish/lshort-turkish/lshort-tr.pdf details="The document itself" language="tr"
+ texmf-doc/doc/turkish/lshort-turkish/trlshort-src.zip
+catalogue-version 4.20
+catalogue-date 2007-03-09 12:50:50 +0100
+catalogue-ctan /info/lshort/turkish
+catalogue-license pd
+
+name lshort-ukr
+category Documentation
+revision 3981
+shortdesc Ukrainian version of the LaTeX introduction.
+longdesc Ukrainian version of A Short Introduction to LaTeX2e.
+docfiles size=2613262
+ texmf-doc/doc/ukrainian/lshort-ukr/lshort-ukr-4.12.src.tar.gz
+ texmf-doc/doc/ukrainian/lshort-ukr/lshort-ukr.pdf
+catalogue-version 4.00
+catalogue-date 2006-10-19 22:58:57 +0200
+catalogue-ctan /info/lshort/ukrainian
+catalogue-license dfsg
+
+name lshort-vietnamese
+category Documentation
+revision 12
+shortdesc vietnamese version of the LaTeX introduction.
+longdesc Vietnamese version of A Short Introduction to LaTeX2e.
+docfiles size=2393010
+ texmf-doc/doc/vietnamese/lshort-vietnamese/README
+ texmf-doc/doc/vietnamese/lshort-vietnamese/lshort-vi.pdf
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/LocalVariables
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/Makefile
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/README.txt
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/abbr.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/biblio.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/contrib.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/custom.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/fancyhea.sty
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/graphic.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/lshort-print-vi.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/lshort-vi.sty
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/lshort-vi.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/lssym.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/math.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/mylayout.sty
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/overview.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/spec.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/things.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/tiengviet.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/title.tex
+ texmf-doc/doc/vietnamese/lshort-vietnamese/src/typeset.tex
+catalogue-version 4.00
+catalogue-date 2007-03-09 12:50:50 +0100
+catalogue-ctan /info/lshort/vietnamese
+catalogue-license lppl
+
+name ltablex
+category Package
+revision 1053
+shortdesc Table package extensions.
+longdesc Modifies the tabularx environment to combine the features of
+longdesc the tabularx package (auto-sized columns in a fixed width
+longdesc table) with those of the longtable package (multi-page tables).
+runfiles size=5997
+ texmf-dist/tex/latex/ltablex/ltablex.sty
+catalogue-version
+catalogue-date 2006-10-27 22:12:41 +0200
+catalogue-ctan /macros/latex/contrib/ltablex
+catalogue-license unknown
+
+name ltabptch
+category Package
+revision 1054
+shortdesc Bug fix for longtable.
+longdesc A patch for LaTeX bugs tools/3180 and tools/3480. The patch
+longdesc applies to version 4.11 of longtable.
+docfiles size=1354
+ texmf-dist/doc/latex/ltabptch/README
+ texmf-dist/doc/latex/ltabptch/ltabtest.tex
+runfiles size=12266
+ texmf-dist/tex/latex/ltabptch/ltabptch.sty
+catalogue-version 1.74d
+catalogue-date 2007-01-02 14:43:33 +0100
+catalogue-ctan /macros/latex/contrib/ltabptch
+catalogue-license lppl
+
+name ltxindex
+category Package
+revision 3493
+docfiles size=105672
+ texmf-dist/doc/latex/ltxindex/README
+ texmf-dist/doc/latex/ltxindex/copying.txt
+ texmf-dist/doc/latex/ltxindex/ltxindex.pdf
+srcfiles size=17392
+ texmf-dist/source/latex/ltxindex/ltxindex.dtx
+ texmf-dist/source/latex/ltxindex/ltxindex.ins
+runfiles size=7278
+ texmf-dist/tex/latex/ltxindex/ltxindex.sty
+
+name ltxmisc
+category Package
+revision 5082
+shortdesc Miscellaneous LaTeX styles.
+runfiles size=501252
+ texmf-dist/tex/latex/ltxmisc/2in1.sty
+ texmf-dist/tex/latex/ltxmisc/3parttable.sty
+ texmf-dist/tex/latex/ltxmisc/a4wide.sty
+ texmf-dist/tex/latex/ltxmisc/a5comb.sty
+ texmf-dist/tex/latex/ltxmisc/abstbook.cls
+ texmf-dist/tex/latex/ltxmisc/acromake.sty
+ texmf-dist/tex/latex/ltxmisc/advdate.sty
+ texmf-dist/tex/latex/ltxmisc/anonchap.sty
+ texmf-dist/tex/latex/ltxmisc/authoraftertitle.sty
+ texmf-dist/tex/latex/ltxmisc/beletter.cls
+ texmf-dist/tex/latex/ltxmisc/bibcheck.sty
+ texmf-dist/tex/latex/ltxmisc/block.sty
+ texmf-dist/tex/latex/ltxmisc/bold-extra.sty
+ texmf-dist/tex/latex/ltxmisc/boxedminipage.sty
+ texmf-dist/tex/latex/ltxmisc/braket.sty
+ texmf-dist/tex/latex/ltxmisc/breakcites.sty
+ texmf-dist/tex/latex/ltxmisc/cancel.sty
+ texmf-dist/tex/latex/ltxmisc/capt-of.sty
+ texmf-dist/tex/latex/ltxmisc/captdef.sty
+ texmf-dist/tex/latex/ltxmisc/cases.sty
+ texmf-dist/tex/latex/ltxmisc/chbibref.sty
+ texmf-dist/tex/latex/ltxmisc/chngcntr.sty
+ texmf-dist/tex/latex/ltxmisc/chngpage.sty
+ texmf-dist/tex/latex/ltxmisc/circle.sty
+ texmf-dist/tex/latex/ltxmisc/concrete.sty
+ texmf-dist/tex/latex/ltxmisc/dblfloatfix.sty
+ texmf-dist/tex/latex/ltxmisc/endnotes.sty
+ texmf-dist/tex/latex/ltxmisc/excludeonly.sty
+ texmf-dist/tex/latex/ltxmisc/flashcard.cls
+ texmf-dist/tex/latex/ltxmisc/fn2end.sty
+ texmf-dist/tex/latex/ltxmisc/fncylab.sty
+ texmf-dist/tex/latex/ltxmisc/fnpara.sty
+ texmf-dist/tex/latex/ltxmisc/framed.sty
+ texmf-dist/tex/latex/ltxmisc/ftcap.sty
+ texmf-dist/tex/latex/ltxmisc/fwlw.sty
+ texmf-dist/tex/latex/ltxmisc/hypernat.sty
+ texmf-dist/tex/latex/ltxmisc/iagproc.cls
+ texmf-dist/tex/latex/ltxmisc/ifmtarg.sty
+ texmf-dist/tex/latex/ltxmisc/import.sty
+ texmf-dist/tex/latex/ltxmisc/kix.sty
+ texmf-dist/tex/latex/ltxmisc/linsys.sty
+ texmf-dist/tex/latex/ltxmisc/listing.sty
+ texmf-dist/tex/latex/ltxmisc/magaz.sty
+ texmf-dist/tex/latex/ltxmisc/midpage.sty
+ texmf-dist/tex/latex/ltxmisc/mitpress.sty
+ texmf-dist/tex/latex/ltxmisc/morefloats.sty
+ texmf-dist/tex/latex/ltxmisc/needspace.sty
+ texmf-dist/tex/latex/ltxmisc/nextpage.sty
+ texmf-dist/tex/latex/ltxmisc/nolbreaks.sty
+ texmf-dist/tex/latex/ltxmisc/notoccite.sty
+ texmf-dist/tex/latex/ltxmisc/optional.sty
+ texmf-dist/tex/latex/ltxmisc/oubraces.sty
+ texmf-dist/tex/latex/ltxmisc/parskip.sty
+ texmf-dist/tex/latex/ltxmisc/path.sty
+ texmf-dist/tex/latex/ltxmisc/printlen.sty
+ texmf-dist/tex/latex/ltxmisc/proba.sty
+ texmf-dist/tex/latex/ltxmisc/relsize.sty
+ texmf-dist/tex/latex/ltxmisc/romanneg.sty
+ texmf-dist/tex/latex/ltxmisc/sansmath.sty
+ texmf-dist/tex/latex/ltxmisc/secdot.sty
+ texmf-dist/tex/latex/ltxmisc/section.sty
+ texmf-dist/tex/latex/ltxmisc/selectp.sty
+ texmf-dist/tex/latex/ltxmisc/sepnum.sty
+ texmf-dist/tex/latex/ltxmisc/shadow.sty
+ texmf-dist/tex/latex/ltxmisc/showtags.sty
+ texmf-dist/tex/latex/ltxmisc/sphack.sty
+ texmf-dist/tex/latex/ltxmisc/statex.sty
+ texmf-dist/tex/latex/ltxmisc/subfigmat.sty
+ texmf-dist/tex/latex/ltxmisc/tabls.sty
+ texmf-dist/tex/latex/ltxmisc/threeparttable.sty
+ texmf-dist/tex/latex/ltxmisc/thrmappendix.sty
+ texmf-dist/tex/latex/ltxmisc/titleref.sty
+ texmf-dist/tex/latex/ltxmisc/topcapt.sty
+ texmf-dist/tex/latex/ltxmisc/truncate.sty
+ texmf-dist/tex/latex/ltxmisc/ulem.sty
+ texmf-dist/tex/latex/ltxmisc/underscore.sty
+ texmf-dist/tex/latex/ltxmisc/url.sty
+ texmf-dist/tex/latex/ltxmisc/varwidth.sty
+ texmf-dist/tex/latex/ltxmisc/verbasef.sty
+ texmf-dist/tex/latex/ltxmisc/verbdef.sty
+ texmf-dist/tex/latex/ltxmisc/version.sty
+ texmf-dist/tex/latex/ltxmisc/vertbars.sty
+ texmf-dist/tex/latex/ltxmisc/vrbexin.sty
+ texmf-dist/tex/latex/ltxmisc/vruler.sty
+ texmf-dist/tex/latex/ltxmisc/ziffer.sty
+catalogue-version
+catalogue-date 2006-11-16 13:28:52 +0100
+catalogue-ctan /macros/latex/contrib/misc
+catalogue-license unknown
+
+name ly1
+category Package
+revision 1059
+shortdesc Support for LY1 LaTeX encoding.
+longdesc The Y&Y texnansi (TeX and ANSI, for Microsoft interpretations
+longdesc of ANSI standards) encoding lives on, even after the decease of
+longdesc the company; it is known in the LaTeX scheme of things as LY1
+longdesc encoding. This bundle includes metrics and LaTeX macros to use
+longdesc the basic three (Times, Helvetica and Courier) Adobe Type 1
+longdesc fonts in LaTeX using LY1.
+docfiles size=18993
+ texmf-dist/doc/fonts/ly1/ly1.txt
+ texmf-dist/doc/fonts/ly1/texnansi.txt
+ texmf-dist/doc/fonts/ly1/texnansi.vec
+runfiles size=31883
+ texmf-dist/fonts/map/dvips/ly1/pcr8y.map
+ texmf-dist/fonts/map/dvips/ly1/phv8y.map
+ texmf-dist/fonts/map/dvips/ly1/ptm8y.map
+ texmf-dist/tex/latex/ly1/ly1enc.def
+ texmf-dist/tex/latex/ly1/ly1lb.fd
+ texmf-dist/tex/latex/ly1/ly1lbf.fd
+ texmf-dist/tex/latex/ly1/ly1lbs.fd
+ texmf-dist/tex/latex/ly1/ly1lbt.fd
+ texmf-dist/tex/latex/ly1/ly1pag.fd
+ texmf-dist/tex/latex/ly1/ly1pbk.fd
+ texmf-dist/tex/latex/ly1/ly1pcr.fd
+ texmf-dist/tex/latex/ly1/ly1phv.fd
+ texmf-dist/tex/latex/ly1/ly1pnc.fd
+ texmf-dist/tex/latex/ly1/ly1ppl.fd
+ texmf-dist/tex/latex/ly1/ly1ptm.fd
+ texmf-dist/tex/latex/ly1/ly1pzc.fd
+ texmf-dist/tex/latex/ly1/texnansi.sty
+catalogue-version
+catalogue-date 2007-03-09 12:50:50 +0100
+catalogue-ctan /macros/latex/contrib/psnfssx/ly1
+catalogue-license unknown
+
+name mafr
+category Package
+revision 2173
+shortdesc Mathematics in accord with French usage.
+longdesc The package provides settings and macros for typesetting
+longdesc mathematics with LaTeX in compliance with French usage. It
+longdesc comes with two document classes, ‘fiche’ and ‘cours’,
+longdesc useful to create short high school documents such as tests or
+longdesc lessons. The documentation is in French.
+docfiles size=92153
+ texmf-dist/doc/latex/mafr/ALIRE details="Package ALIRE" language="fr"
+ texmf-dist/doc/latex/mafr/COPYING
+ texmf-dist/doc/latex/mafr/README details="Package README" language="en"
+ texmf-dist/doc/latex/mafr/docmafr.pdf details="Package documentation" language="fr"
+ texmf-dist/doc/latex/mafr/docmafr.tex
+ texmf-dist/doc/latex/mafr/triangle.eps
+runfiles size=4593
+ texmf-dist/tex/latex/mafr/cours.cls
+ texmf-dist/tex/latex/mafr/fiche.cls
+ texmf-dist/tex/latex/mafr/mafr.sty
+catalogue-version 1.0
+catalogue-date 2007-03-09 22:25:45 +0100
+catalogue-ctan /macros/latex/contrib/mafr
+catalogue-license gpl
+
+name magyar
+category Package
+revision 5456
+shortdesc Hungarian language definition for Babel.
+longdesc This is an interim release of a new version of the Magyar
+longdesc language definition for babel.
+docfiles size=221667
+ texmf-dist/doc/latex/magyar/magyar.ldf
+catalogue-version 1.5
+catalogue-date 2007-10-22 16:04:24 +0200
+catalogue-ctan /language/hungarian/babel/magyar.ldf
+catalogue-license lppl
+
+name mailing
+category Package
+revision 1060
+shortdesc Macros for mail merging.
+longdesc This package is for use when sending a large number of letters,
+longdesc all with the same body text. The package‘s \addressfile
+longdesc command is used to specify who the letter‘s to be sent to;
+longdesc the body of the \mailingtext command specifies the text of the
+longdesc letters, possibly using macros defined in the \addressfile.
+docfiles size=66950
+ texmf-dist/doc/latex/mailing/mailing.pdf
+ texmf-dist/doc/latex/mailing/manifest.txt
+srcfiles size=11426
+ texmf-dist/source/latex/mailing/mailing.dtx
+ texmf-dist/source/latex/mailing/mailing.ins
+runfiles size=3480
+ texmf-dist/tex/latex/mailing/mailing.sty
+catalogue-version
+catalogue-date 2006-12-28 00:57:12 +0100
+catalogue-ctan /macros/latex/contrib/mailing
+catalogue-license lppl
+
+name makebox
+category Package
+revision 1061
+shortdesc Defines a \makebox* command.
+longdesc Define a \makebox* command that does the same as a \makebox
+longdesc command, except that the width is given by a sample text
+longdesc instead of an explicit length measure.
+docfiles size=284762
+ texmf-dist/doc/latex/makebox/ChangeLog
+ texmf-dist/doc/latex/makebox/README details="Package Readme"
+ texmf-dist/doc/latex/makebox/getversion.tex
+ texmf-dist/doc/latex/makebox/makebox.pdf details="Package documentation"
+ texmf-dist/doc/latex/makebox/makebox.xml
+ texmf-dist/doc/latex/makebox/testmakebox.tex
+srcfiles size=7101
+ texmf-dist/source/latex/makebox/Makefile
+ texmf-dist/source/latex/makebox/makebox.dtx
+ texmf-dist/source/latex/makebox/makebox.ins
+runfiles size=875
+ texmf-dist/tex/latex/makebox/makebox.sty
+catalogue-version 0.1
+catalogue-date 2006-12-02 14:51:32 +0100
+catalogue-ctan /macros/latex/contrib/makebox
+catalogue-license lppl
+
+name makecell
+category Package
+revision 4400
+shortdesc Tabular column heads and multilined cells.
+longdesc This package supports common layouts for tabular column heads
+longdesc in whole documents, based on one-column tabular environment. In
+longdesc addition, it can create multi-lined tabular cells. The Package
+longdesc also offers: — a macro which changes the vertical space
+longdesc around all the cells in a tabular environment (similar to the
+longdesc function of the tabls package, but using the facilities of the
+longdesc array); — macros for multirow cells, which use the facilities
+longdesc of the multirow package; — macros to number rows in tables,
+longdesc or to skip cells; — diagonally divided cells; and —
+longdesc horizontal lines in tabular environments with defined
+longdesc thickness.
+docfiles size=449176
+ texmf-dist/doc/latex/makecell/README details="README file"
+ texmf-dist/doc/latex/makecell/makecell-rus.tex
+ texmf-dist/doc/latex/makecell/makecell.pdf details="Package documentation"
+ texmf-dist/doc/latex/makecell/makecell.xml
+ texmf-dist/doc/latex/makecell/tablists-rus.tex
+ texmf-dist/doc/latex/makecell/tablists.pdf
+ texmf-dist/doc/latex/makecell/tablists.xml
+srcfiles size=81591
+ texmf-dist/source/latex/makecell/makecell.dtx
+ texmf-dist/source/latex/makecell/tablists.dtx
+runfiles size=14542
+ texmf-dist/tex/latex/makecell/makecell.sty
+catalogue-version 0.1d
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/makecell
+catalogue-license lppl
+
+name makecirc
+category Package
+revision 4997
+docfiles size=564982
+ texmf-dist/doc/metapost/makecirc/MakeCirc-en.pdf
+ texmf-dist/doc/metapost/makecirc/MakeCirc.pdf
+ texmf-dist/doc/metapost/makecirc/README
+ texmf-dist/doc/metapost/makecirc/ejemplos.pdf
+runfiles size=55863
+ texmf-dist/metapost/makecirc/ejemplos.mp
+ texmf-dist/metapost/makecirc/latex.mp
+ texmf-dist/metapost/makecirc/makecirc.mp
+
+name makecmds
+category Package
+revision 1063
+shortdesc The new \makecommand command always (re)defines a command.
+longdesc The package provides a \makecommand command, which is like
+longdesc \(re)newcommand except it always (re)defines a command. There
+longdesc is also \makeenvironment and \provideenvironment for
+longdesc environments.
+docfiles size=929
+ texmf-dist/doc/latex/makecmds/README
+srcfiles size=15717
+ texmf-dist/source/latex/makecmds/makecmds.dtx
+ texmf-dist/source/latex/makecmds/makecmds.ins
+runfiles size=2255
+ texmf-dist/tex/latex/makecmds/makecmds.sty
+catalogue-version
+catalogue-date 2006-12-28 00:57:12 +0100
+catalogue-ctan /macros/latex/contrib/makecmds
+catalogue-license lppl
+
+name makedtx
+category Package
+revision 4819
+shortdesc Perl script to help generate dtx and ins files
+longdesc The makedtx bundle is provided to help LaTeX2e developers to
+longdesc write the code and documentation in separate files, and then
+longdesc combine them into a single .dtx file for distribution. It
+longdesc automatically generates the character table, and also writes
+longdesc the associated installation (.ins) script.
+docfiles size=261815
+ texmf-dist/doc/latex/makedtx/CHANGES
+ texmf-dist/doc/latex/makedtx/README details="Readme"
+ texmf-dist/doc/latex/makedtx/creatdtx.perl
+ texmf-dist/doc/latex/makedtx/makedtx-manual.html
+ texmf-dist/doc/latex/makedtx/makedtx.pdf
+ texmf-dist/doc/latex/makedtx/makedtx.pl
+srcfiles size=58104
+ texmf-dist/source/latex/makedtx/makedtx.dtx
+ texmf-dist/source/latex/makedtx/makedtx.ins
+runfiles size=1988
+ texmf-dist/tex/latex/makedtx/creatdtx.sty
+catalogue-version 0.94b
+catalogue-date 2007-10-18 16:19:02 +0200
+catalogue-ctan /support/makedtx
+catalogue-license lppl
+
+name makeglos
+category Package
+revision 1065
+shortdesc Include a glossary into a document.
+longdesc The package provides the means to include a glossary into a
+longdesc document. The glossary is prepared by an external program, such
+longdesc as xindy or makeindex, in the same way that an index is made.
+docfiles size=63629
+ texmf-dist/doc/latex/makeglos/README details="Readme"
+ texmf-dist/doc/latex/makeglos/makeglos.pdf details="Package documentation"
+ texmf-dist/doc/latex/makeglos/makeglos.tex
+ texmf-dist/doc/latex/makeglos/makeglos.xdy
+runfiles size=694
+ texmf-dist/tex/latex/makeglos/makeglos.sty
+catalogue-version
+catalogue-date 2007-02-23 00:16:39 +0100
+catalogue-ctan /macros/latex/contrib/makeglos
+catalogue-license gpl
+
+name makeindex
+category Package
+revision 1487
+shortdesc Process index output to produce typesettable code.
+longdesc A general purpose hierarchical index generator; it accepts one
+longdesc or more input files (often produced by a text formatter such as
+longdesc TeX or troff), sorts the entries, and produces an output file
+longdesc which can be formatted. The formats of the input and output
+longdesc files are specified in a style file; by default, input is
+longdesc assumed to be an idx file, as generated by LaTeX.
+docfiles size=106884
+ texmf-dist/doc/makeindex/base/ind.dvi
+ texmf-dist/doc/makeindex/base/makeindex.dvi
+runfiles size=7176
+ texmf-dist/makeindex/base/din.ist
+ texmf-dist/makeindex/base/icase.ist
+ texmf-dist/makeindex/base/latex.ist
+ texmf-dist/makeindex/base/math.ist
+ texmf-dist/makeindex/base/mkind.ist
+ texmf-dist/makeindex/base/puncts.ist
+ texmf-dist/makeindex/base/tex.ist
+catalogue-version 2.12
+catalogue-date 2007-01-02 14:43:33 +0100
+catalogue-ctan /indexing/makeindex
+catalogue-license dfsg
+
+name makeplot
+category Package
+revision 2240
+shortdesc Easy plots from Matlab in LaTeX.
+longdesc Existing approaches to create EPS files from Matlab (laprint,
+longdesc print -eps, etc.) aren't satisfactory; makeplot aims to resolve
+longdesc this problem. Makeplot is a LaTeX package that uses the
+longdesc pstricks pst-plot functions to plot data that it takes from
+longdesc Matlab output files.
+docfiles size=153198
+ texmf-dist/doc/latex/makeplot/README details="Readme"
+ texmf-dist/doc/latex/makeplot/data1.mat
+ texmf-dist/doc/latex/makeplot/data2.mat
+ texmf-dist/doc/latex/makeplot/makeplot.pdf details="Package documentation"
+ texmf-dist/doc/latex/makeplot/mptest.tex
+srcfiles size=44310
+ texmf-dist/source/latex/makeplot/makeplot.dtx
+ texmf-dist/source/latex/makeplot/makeplot.ins
+runfiles size=18601
+ texmf-dist/tex/latex/makeplot/makeplot.sty
+catalogue-version 1.0.5
+catalogue-date 2007-02-23 00:16:39 +0100
+catalogue-ctan /graphics/pstricks/contrib/makeplot
+catalogue-license lppl
+
+name malayalam
+category Package
+revision 1487
+docfiles size=373147
+ texmf-dist/doc/fonts/malayalam/FILES
+ texmf-dist/doc/fonts/malayalam/INSTALL
+ texmf-dist/doc/fonts/malayalam/README
+ texmf-dist/doc/fonts/malayalam/article/elephant.mm
+ texmf-dist/doc/fonts/malayalam/article/elephant.tex
+ texmf-dist/doc/fonts/malayalam/article/lion.mm
+ texmf-dist/doc/fonts/malayalam/article/lion.tex
+ texmf-dist/doc/fonts/malayalam/article/mmarticl.mm
+ texmf-dist/doc/fonts/malayalam/article/mmarticl.tex
+ texmf-dist/doc/fonts/malayalam/article/mmchart.tex
+ texmf-dist/doc/fonts/malayalam/article/mmconj.mm
+ texmf-dist/doc/fonts/malayalam/article/mmconj.tex
+ texmf-dist/doc/fonts/malayalam/article/mmexp.mm
+ texmf-dist/doc/fonts/malayalam/article/mmexp.tex
+ texmf-dist/doc/fonts/malayalam/article/mmfont.tex
+ texmf-dist/doc/fonts/malayalam/article/mmfuture.tex
+ texmf-dist/doc/fonts/malayalam/article/mmguide.dvi
+ texmf-dist/doc/fonts/malayalam/article/mmguide.mm
+ texmf-dist/doc/fonts/malayalam/article/mmguide.tex
+ texmf-dist/doc/fonts/malayalam/article/mmmacs.tex
+ texmf-dist/doc/fonts/malayalam/article/mmphmacs.tex
+ texmf-dist/doc/fonts/malayalam/article/mmqfont.tex
+ texmf-dist/doc/fonts/malayalam/article/mmqmacs.tex
+ texmf-dist/doc/fonts/malayalam/article/mmsample.mm
+ texmf-dist/doc/fonts/malayalam/article/mmsample.tex
+ texmf-dist/doc/fonts/malayalam/article/mmscript.mm
+ texmf-dist/doc/fonts/malayalam/article/mmtable.mm
+ texmf-dist/doc/fonts/malayalam/article/mmtable.tex
+ texmf-dist/doc/fonts/malayalam/article/mmtrans.mm
+ texmf-dist/doc/fonts/malayalam/article/mmtrans.tex
+ texmf-dist/doc/fonts/malayalam/article/mmtrmacs.tex
+ texmf-dist/doc/fonts/malayalam/article/mmxfont.tex
+ texmf-dist/doc/fonts/malayalam/article/ornament.tex
+ texmf-dist/doc/fonts/malayalam/article/prodigal.mm
+ texmf-dist/doc/fonts/malayalam/article/prodigal.tex
+ texmf-dist/doc/fonts/malayalam/article/test.mm
+ texmf-dist/doc/fonts/malayalam/article/test.tex
+ texmf-dist/doc/fonts/malayalam/article/twolines.tex
+ texmf-dist/doc/fonts/malayalam/charity
+ texmf-dist/doc/fonts/malayalam/todo
+srcfiles size=331563
+ texmf-dist/source/fonts/malayalam/dng/dn2dng.pat
+ texmf-dist/source/fonts/malayalam/dng/dng.pat
+ texmf-dist/source/fonts/malayalam/dng/dng.tex
+ texmf-dist/source/fonts/malayalam/dng/dngmacs.tex
+ texmf-dist/source/fonts/malayalam/dng/dngtrans.dng
+ texmf-dist/source/fonts/malayalam/dng/dngtrans.tex
+ texmf-dist/source/fonts/malayalam/dng/dntrmacs.tex
+ texmf-dist/source/fonts/malayalam/dng/misspaal.dng
+ texmf-dist/source/fonts/malayalam/preproc/ack2mm.pat
+ texmf-dist/source/fonts/malayalam/preproc/avltree.c
+ texmf-dist/source/fonts/malayalam/preproc/avltree.h
+ texmf-dist/source/fonts/malayalam/preproc/makefile
+ texmf-dist/source/fonts/malayalam/preproc/ml.bat
+ texmf-dist/source/fonts/malayalam/preproc/ml.g
+ texmf-dist/source/fonts/malayalam/preproc/mlr.bat
+ texmf-dist/source/fonts/malayalam/preproc/mlr.g
+ texmf-dist/source/fonts/malayalam/preproc/mltr.g
+ texmf-dist/source/fonts/malayalam/preproc/mltrth.g
+ texmf-dist/source/fonts/malayalam/preproc/mm.c
+ texmf-dist/source/fonts/malayalam/preproc/mm.exe
+ texmf-dist/source/fonts/malayalam/preproc/mm.h
+ texmf-dist/source/fonts/malayalam/preproc/mm.pat
+ texmf-dist/source/fonts/malayalam/preproc/mm.prj
+ texmf-dist/source/fonts/malayalam/preproc/mm.scr
+ texmf-dist/source/fonts/malayalam/preproc/mm.trs
+ texmf-dist/source/fonts/malayalam/preproc/mm.ttp
+ texmf-dist/source/fonts/malayalam/preproc/mm2ack.pat
+ texmf-dist/source/fonts/malayalam/preproc/mmr.scr
+ texmf-dist/source/fonts/malayalam/preproc/mmr.trs
+ texmf-dist/source/fonts/malayalam/preproc/mmrfull.trs
+ texmf-dist/source/fonts/malayalam/preproc/patc/detex.g
+ texmf-dist/source/fonts/malayalam/preproc/patc/detex.pat
+ texmf-dist/source/fonts/malayalam/preproc/patc/patc.c
+ texmf-dist/source/fonts/malayalam/preproc/patc/patc.exe
+ texmf-dist/source/fonts/malayalam/preproc/patc/patc.prj
+ texmf-dist/source/fonts/malayalam/preproc/patc/patc.ttp
+ texmf-dist/source/fonts/malayalam/preproc/patc/patc.txt
+ texmf-dist/source/fonts/malayalam/preproc/patc/pstree.c
+ texmf-dist/source/fonts/malayalam/preproc/patc/pstree.h
+ texmf-dist/source/fonts/malayalam/preproc/pstree.c
+ texmf-dist/source/fonts/malayalam/preproc/pstree.h
+ texmf-dist/source/fonts/malayalam/preproc/readfile.c
+ texmf-dist/source/fonts/malayalam/preproc/readfile.h
+ texmf-dist/source/fonts/malayalam/preproc/scr.c
+ texmf-dist/source/fonts/malayalam/preproc/scr.h
+ texmf-dist/source/fonts/malayalam/preproc/trs.c
+ texmf-dist/source/fonts/malayalam/preproc/trs.h
+ texmf-dist/source/fonts/malayalam/preproc/unicode/UNICODE.TXT
+ texmf-dist/source/fonts/malayalam/tamil/adami.pat
+ texmf-dist/source/fonts/malayalam/tamil/tamil.pat
+ texmf-dist/source/fonts/malayalam/tamil/tamil.tex
+ texmf-dist/source/fonts/malayalam/tamil/test.tam
+ texmf-dist/source/fonts/malayalam/tamil/test.tex
+ texmf-dist/source/fonts/malayalam/tamil/test.tml
+ texmf-dist/source/fonts/malayalam/tamil/tmlmacs.tex
+ texmf-dist/source/fonts/malayalam/tamil/tmltrans.tex
+ texmf-dist/source/fonts/malayalam/tamil/tmltrans.tml
+ texmf-dist/source/fonts/malayalam/tamil/tmltrans.txt
+ texmf-dist/source/fonts/malayalam/tamil/wntml.pat
+runfiles size=264178
+ texmf-dist/fonts/source/public/malayalam/effects/effect.mf
+ texmf-dist/fonts/source/public/malayalam/effects/esoteric.mf
+ texmf-dist/fonts/source/public/malayalam/effects/hstripes.mf
+ texmf-dist/fonts/source/public/malayalam/effects/malayalam-reverse.mf
+ texmf-dist/fonts/source/public/malayalam/effects/outline.mf
+ texmf-dist/fonts/source/public/malayalam/effects/shadow.mf
+ texmf-dist/fonts/source/public/malayalam/fnt_code.mf
+ texmf-dist/fonts/source/public/malayalam/mm.bat
+ texmf-dist/fonts/source/public/malayalam/mm.fts
+ texmf-dist/fonts/source/public/malayalam/mm.job
+ texmf-dist/fonts/source/public/malayalam/mmcillu.mf
+ texmf-dist/fonts/source/public/malayalam/mmcoding.mf
+ texmf-dist/fonts/source/public/malayalam/mmconj.mf
+ texmf-dist/fonts/source/public/malayalam/mmcons.mf
+ texmf-dist/fonts/source/public/malayalam/mmcvconj.mf
+ texmf-dist/fonts/source/public/malayalam/mmdefs.mf
+ texmf-dist/fonts/source/public/malayalam/mmfnt.mf
+ texmf-dist/fonts/source/public/malayalam/mmfont.mf
+ texmf-dist/fonts/source/public/malayalam/mmlnums.mf
+ texmf-dist/fonts/source/public/malayalam/mmnums.mf
+ texmf-dist/fonts/source/public/malayalam/mmpunct.mf
+ texmf-dist/fonts/source/public/malayalam/mmrconj.mf
+ texmf-dist/fonts/source/public/malayalam/mmscons.mf
+ texmf-dist/fonts/source/public/malayalam/mmsec.mf
+ texmf-dist/fonts/source/public/malayalam/mmstyles.txt
+ texmf-dist/fonts/source/public/malayalam/mmtest.mf
+ texmf-dist/fonts/source/public/malayalam/mmvowels.mf
+ texmf-dist/fonts/source/public/malayalam/orn10.mf
+ texmf-dist/fonts/source/public/malayalam/rejected.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm10.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm10s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm12.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm12s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm17.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm17s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm6.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm6s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm8.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mm8s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmb10.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmb10s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmb12.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmb12s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmb17.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmb17s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmbig.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmbigo.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmc10.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmc10s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmc12.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmc12s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmc17.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmc17s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcb10.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcb10s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcb12.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcb12s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcb17.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcb17s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcsl10.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcsl10s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcsl12.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmcsl12s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmexpa12.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmexpb12.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmexpc12.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmsl10.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmsl10s.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmsl12.mf
+ texmf-dist/fonts/source/public/malayalam/styles/mmsl12s.mf
+ texmf-dist/fonts/source/public/malayalam/var_ja.mf
+ texmf-dist/fonts/tfm/public/malayalam/mm10.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mm10s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mm12.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mm12s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mm17.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mm17s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mm6.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mm6s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mm8.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mm8s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmb10.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmb10s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmb12.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmb12s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmb17.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmb17s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmbig.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmbigo.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmc10.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmc10s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmc12.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmc12s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmc17.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmc17s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcb10.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcb10s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcb12.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcb12s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcb17.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcb17s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcsl10.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcsl10s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcsl12.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmcsl12s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmexpa12.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmexpb12.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmexpc12.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmsl10.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmsl10s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmsl12.tfm
+ texmf-dist/fonts/tfm/public/malayalam/mmsl12s.tfm
+ texmf-dist/fonts/tfm/public/malayalam/orn10.tfm
+
+name manfnt
+category Package
+revision 1067
+shortdesc LaTeX support for the TeX book symbols.
+longdesc A LaTeX package for easy access to the symbols of the Knuth's
+longdesc ‘manual’ font, such as the Dangerous Bend and Manual-errata
+longdesc Arrow.
+execute addMixedMap manfnt.map
+srcfiles size=23283
+ texmf-dist/source/latex/manfnt/manfnt.dtx
+ texmf-dist/source/latex/manfnt/manfnt.ins
+runfiles size=45406
+ texmf-dist/fonts/afm/hoekwater/manfnt/manfnt.afm
+ texmf-dist/fonts/map/dvips/manfnt/manfnt.map
+ texmf-dist/fonts/type1/hoekwater/manfnt/manfnt.pfb
+ texmf-dist/tex/latex/manfnt/manfnt.sty
+catalogue-version
+catalogue-date 2007-01-02 14:43:33 +0100
+catalogue-ctan /macros/latex/contrib/manfnt
+catalogue-license lppl
+
+name manjutex
+category Package
+revision 1487
+shortdesc Manju language support.
+longdesc Manju is a language of North East Asia, belonging to the
+longdesc Tungusic branch of the Altaic languages. Though it is virtually
+longdesc not spoken anymore, it survives in written form as Manju was
+longdesc the native language of the rulers of the Qing dynasty
+longdesc (1644–1911) in China. Large quantities of documents of the
+longdesc Imperial Archives survive, as well as some of the finest
+longdesc dictionaries ever compiled in Asia, like the Pentaglot, a
+longdesc dictionary comprising Manju, Tibetan, Mongolian, Uighur and
+longdesc Chinese. ManjuTeX was developed on the basis of MonTeX, and
+longdesc provides all necessary characters for writing standard Manju as
+longdesc well as transliterated Tibetan texts, for which purpose a
+longdesc number of additional characters was created. This catalogue
+longdesc entry describes the ‘original’ ManjuTeX; its functionality
+longdesc has now been subsumed into monTeX, though the obsolete ManjuTeX
+longdesc remains on the archive.
+docfiles size=45372
+ texmf-dist/doc/latex/manjutex/README
+ texmf-dist/doc/latex/manjutex/manjutex.dvi
+ texmf-dist/doc/latex/manjutex/manjutex.tex
+srcfiles size=23914
+ texmf-dist/source/latex/manjutex/COPYING
+ texmf-dist/source/latex/manjutex/EMTEX
+ texmf-dist/source/latex/manjutex/FILES
+ texmf-dist/source/latex/manjutex/HISTORY
+ texmf-dist/source/latex/manjutex/INSTALL
+ texmf-dist/source/latex/manjutex/MIKTEX
+runfiles size=7131
+ texmf-dist/tex/latex/manjutex/lmabthh.fd
+ texmf-dist/tex/latex/manjutex/lmabthv.fd
+ texmf-dist/tex/latex/manjutex/manju.sty
+ texmf-dist/tex/latex/manjutex/manju.tex
+catalogue-version
+catalogue-date 2007-01-02 14:43:33 +0100
+catalogue-ctan /obsolete/language/manju/manjutex
+catalogue-license gpl
+
+name manuscript
+category Package
+revision 1069
+docfiles size=521
+ texmf-dist/doc/latex/manuscript/README
+srcfiles size=14789
+ texmf-dist/source/latex/manuscript/Makefile
+ texmf-dist/source/latex/manuscript/manuscript.drv
+ texmf-dist/source/latex/manuscript/manuscript.dtx
+ texmf-dist/source/latex/manuscript/manuscript.ins
+runfiles size=2703
+ texmf-dist/tex/latex/manuscript/manuscript.sty
+
+name mapcodes
+category Package
+revision 1070
+shortdesc Support for multiple character sets and encodings.
+longdesc Mapcodes is an early package covering the same ground as the
+longdesc standard LaTeX inputenc. It provides for input in ISO Latin-1
+longdesc and -2, IBM codepages 850 and 852, and HP, Macintosh and Atari
+longdesc encodings.
+srcfiles size=137184
+ texmf-dist/source/latex/mapcodes/00readme.txt
+ texmf-dist/source/latex/mapcodes/atari.dtx
+ texmf-dist/source/latex/mapcodes/atari.map
+ texmf-dist/source/latex/mapcodes/german.dtx
+ texmf-dist/source/latex/mapcodes/german.map
+ texmf-dist/source/latex/mapcodes/hproman8.dtx
+ texmf-dist/source/latex/mapcodes/hproman8.map
+ texmf-dist/source/latex/mapcodes/ibm850.dtx
+ texmf-dist/source/latex/mapcodes/ibm850.map
+ texmf-dist/source/latex/mapcodes/ibm852.dtx
+ texmf-dist/source/latex/mapcodes/ibm852.map
+ texmf-dist/source/latex/mapcodes/install.txt
+ texmf-dist/source/latex/mapcodes/iso88591.dtx
+ texmf-dist/source/latex/mapcodes/iso88591.map
+ texmf-dist/source/latex/mapcodes/iso88592.dtx
+ texmf-dist/source/latex/mapcodes/iso88592.map
+ texmf-dist/source/latex/mapcodes/macroman.dtx
+ texmf-dist/source/latex/mapcodes/macroman.map
+ texmf-dist/source/latex/mapcodes/manifest.txt
+ texmf-dist/source/latex/mapcodes/mapcodes.drv
+ texmf-dist/source/latex/mapcodes/mapcodes.dtx
+ texmf-dist/source/latex/mapcodes/mapcodes.ins
+ texmf-dist/source/latex/mapcodes/spanish.dtx
+ texmf-dist/source/latex/mapcodes/spanish.map
+runfiles size=16884
+ texmf-dist/tex/latex/mapcodes/mapcodes.sty
+catalogue-version 1.04
+catalogue-date 2007-01-02 14:43:33 +0100
+catalogue-ctan /macros/latex/contrib/mapcodes
+catalogue-license other
+
+name maple
+category Package
+revision 1071
+shortdesc Styles and examples for the MAPLE newsletter.
+docfiles size=26299
+ texmf-dist/doc/latex/maple/MTNarticle.tex
+ texmf-dist/doc/latex/maple/README
+runfiles size=5120
+ texmf-dist/tex/latex/maple/mtn.cls
+catalogue-version
+catalogue-date 2007-01-08 23:14:30 +0100
+catalogue-ctan /macros/latex/contrib/maple
+catalogue-license unknown
+
+name marginnote
+category Package
+revision 2949
+shortdesc Notes in the margin, even where \marginpar fails
+longdesc This package provides the command \marginnote that may be used
+longdesc instead of \marginpar at almost every place where \marginpar
+longdesc cannot be used, e.g., inside floats, footnotes, or in frames
+longdesc made with the framed package.
+docfiles size=151129
+ texmf-dist/doc/latex/marginnote/marginnote.pdf details="Package documentation"
+srcfiles size=27328
+ texmf-dist/source/latex/marginnote/README
+ texmf-dist/source/latex/marginnote/marginnote.dtx
+ texmf-dist/source/latex/marginnote/marginnote.ins
+runfiles size=9449
+ texmf-dist/tex/latex/marginnote/marginnote.sty
+catalogue-version v1.1
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/marginnote
+catalogue-license lppl
+
+name marigold
+category Package
+revision 90
+runfiles size=12980
+ texmf-dist/fonts/tfm/cg/marigold/cmgr.tfm
+ texmf-dist/fonts/tfm/cg/marigold/cmgr8t.tfm
+ texmf-dist/fonts/tfm/cg/marigold/mrr10u.tfm
+ texmf-dist/fonts/tfm/cg/marigold/mrr6j.tfm
+ texmf-dist/fonts/tfm/cg/marigold/mrr7j.tfm
+ texmf-dist/fonts/tfm/cg/marigold/mrr8u.tfm
+ texmf-dist/fonts/vf/cg/marigold/cmgr.vf
+ texmf-dist/fonts/vf/cg/marigold/cmgr8t.vf
+
+name marvosym
+category Package
+revision 4126
+shortdesc Martin Vogel's Symbols (marvosym) font.
+longdesc Martin Vogel's Symbol (marvosym) font contains the Euro
+longdesc currency symbol as defined by the European commission, and also
+longdesc in shapes to blend with typefaces Times, Helvetica and Courier;
+longdesc symbols for structural engineering; symbols for steel cross-
+longdesc sections; astronomy signs (sun, moon, planets); the 12 signs of
+longdesc the zodiac; scissor symbols; CE sign and others. The font is
+longdesc distributed here as an Adobe Type 1 font, which was converted
+longdesc from Vogel's original TrueType. Separate packaging for OzTeX
+longdesc users is available.
+execute addMap marvosym.map
+docfiles size=305813
+ texmf-dist/doc/latex/marvosym/LICENSE
+ texmf-dist/doc/latex/marvosym/PROBLEMS
+ texmf-dist/doc/latex/marvosym/README details="Package README"
+ texmf-dist/doc/latex/marvosym/mac/docs/obsolete/tex-me.tex
+ texmf-dist/doc/latex/marvosym/mac/docs/textures
+ texmf-dist/doc/latex/marvosym/mac/oztex/configs/addmarvo
+ texmf-dist/doc/latex/marvosym/mac/oztex/dvips/inputs/config.fmv
+ texmf-dist/doc/latex/marvosym/mac/oztex/dvips/inputs/fmv.map
+ texmf-dist/doc/latex/marvosym/mac/oztex/ps-files/marvosym.afm
+ texmf-dist/doc/latex/marvosym/mac/oztex/ps-files/marvosym.pfa
+ texmf-dist/doc/latex/marvosym/mac/oztex/ps-files/readme.txt
+ texmf-dist/doc/latex/marvosym/mac/oztex/tex-font/misc/fmvr8x.tfm
+ texmf-dist/doc/latex/marvosym/mac/readme.txt
+ texmf-dist/doc/latex/marvosym/mac/the_font.bin
+ texmf-dist/doc/latex/marvosym/marvodoc.pdf details="Font tables, etc"
+ texmf-dist/doc/latex/marvosym/marvodoc.tex
+ texmf-dist/doc/latex/marvosym/vtex/install.txt
+ texmf-dist/doc/latex/marvosym/vtex/marvosym.ali
+runfiles size=82948
+ texmf-dist/fonts/afm/public/marvosym/marvosym.afm
+ texmf-dist/fonts/map/dvips/marvosym/marvosym.map
+ texmf-dist/fonts/tfm/public/marvosym/umvs.tfm
+ texmf-dist/fonts/type1/public/marvosym/marvosym.pfb
+ texmf-dist/tex/latex/marvosym/marvosym.sty
+ texmf-dist/tex/latex/marvosym/umvs.fd
+catalogue-version 2.1
+catalogue-date 2006-10-27 21:19:02 +0200
+catalogue-ctan /fonts/psfonts/marvosym
+catalogue-license gpl
+
+name math-into-latex
+category Documentation
+revision 22
+docfiles size=26661
+ texmf-doc/doc/english/math-into-latex/errors.txt
+ texmf-doc/doc/english/math-into-latex/gratzer
+ texmf-doc/doc/english/math-into-latex/mil.txt
+ texmf-doc/doc/english/math-into-latex/templates/article.tpl
+ texmf-doc/doc/english/math-into-latex/templates/article2.tpl
+ texmf-doc/doc/english/math-into-latex/templates/contents.doc
+ texmf-doc/doc/english/math-into-latex/templates/gallery.tex
+ texmf-doc/doc/english/math-into-latex/templates/ggart.tpl
+ texmf-doc/doc/english/math-into-latex/templates/ggart2.tpl
+ texmf-doc/doc/english/math-into-latex/templates/inbibl.tpl
+ texmf-doc/doc/english/math-into-latex/templates/intrart.tex
+ texmf-doc/doc/english/math-into-latex/templates/math.tex
+ texmf-doc/doc/english/math-into-latex/templates/mathb.tex
+ texmf-doc/doc/english/math-into-latex/templates/note1.tex
+ texmf-doc/doc/english/math-into-latex/templates/note1b.tex
+ texmf-doc/doc/english/math-into-latex/templates/note2.tex
+ texmf-doc/doc/english/math-into-latex/templates/noteslug.tex
+
+name mathcomp
+category Package
+revision 1073
+shortdesc Text symbols in maths mode.
+longdesc A package which provides access to some interesting characters
+longdesc of the Text Companion fonts (TS1 encoding) in maths mode.
+srcfiles size=7202
+ texmf-dist/source/latex/mathcomp/mathcomp.dtx
+ texmf-dist/source/latex/mathcomp/mathcomp.ins
+runfiles size=1664
+ texmf-dist/tex/latex/mathcomp/mathcomp.sty
+catalogue-version 0.1f
+catalogue-date 2007-01-09 18:22:13 +0100
+catalogue-ctan /macros/latex/contrib/mathcomp
+catalogue-license lppl
+
+name mathdesign
+category Package
+revision 1903
+shortdesc Mathematical fonts to fit with particular text fonts.
+longdesc The Math Design project offers free mathematical fonts, and
+longdesc "faked" Caps-and-Small-Caps fonts, that fit with existing text
+longdesc fonts. So far, four font families are available: – the mdput
+longdesc family, which corresponds to Adobe Utopia text fonts; – the
+longdesc mdugm family, which corresponds to URW Garamond text fonts; –
+longdesc the mdfga family, which corresponds to the (commercial)
+longdesc Fontsite Garamond text fonts; – the mdbch family, which
+longdesc corresponds to Bitstream Charter text fonts.
+execute addMap mdbch.map
+execute addMap mdput.map
+execute addMap mdugm.map
+docfiles size=3343936
+ texmf-dist/doc/latex/mathdesign/MD-adobe-utopia-doc.pdf
+ texmf-dist/doc/latex/mathdesign/MD-adobe-utopia-example.pdf
+ texmf-dist/doc/latex/mathdesign/MD-bitstream-charter-doc.pdf
+ texmf-dist/doc/latex/mathdesign/MD-bitstream-charter-example.pdf
+ texmf-dist/doc/latex/mathdesign/MD-urw-garamond-doc.pdf
+ texmf-dist/doc/latex/mathdesign/MD-urw-garamond-example.pdf
+ texmf-dist/doc/latex/mathdesign/README
+ texmf-dist/doc/latex/mathdesign/mathdesign-doc.pdf
+ texmf-dist/doc/latex/mathdesign/mdbch/MD-bitstream-charter-doc.pdf
+ texmf-dist/doc/latex/mathdesign/mdbch/mdbchtest.tex
+ texmf-dist/doc/latex/mathdesign/mdput/MD-adobe-utopia-doc.pdf
+ texmf-dist/doc/latex/mathdesign/mdput/mdputtest.tex
+ texmf-dist/doc/latex/mathdesign/mdugm/MD-urw-garamond-doc.pdf
+ texmf-dist/doc/latex/mathdesign/mdugm/mdugmtest.tex
+runfiles size=3741917
+ texmf-dist/dvips/mathdesign/config.mdbch
+ texmf-dist/dvips/mathdesign/config.mdput
+ texmf-dist/dvips/mathdesign/config.mdugm
+ texmf-dist/fonts/afm/mathdesign/mdbch/bchb8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/bchbc8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/bchbi8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/bchr8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/bchrc8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/bchri8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chb7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chb7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chb7v.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chb7y.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chb8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chb8d.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chb8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chbi7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chbi7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chbi8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chbi8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chbma.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chbmb.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr7t5.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr7t6.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr7t7.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr7t8.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr7t9.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr7v.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr7y.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr8d.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chr8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chree.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chri7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chri7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chri7t5.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chri7t6.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chri7t7.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chri7t8.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chri7t9.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chri8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chri8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chrma.afm
+ texmf-dist/fonts/afm/mathdesign/mdbch/md-chrmb.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utb7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utb7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utb7v.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utb7y.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utb8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utb8d.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utb8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utbi7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utbi7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utbi8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utbi8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utbma.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utbmb.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utr7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utr7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utr7v.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utr7y.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utr8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utr8d.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utr8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utree.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utri7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utri7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utri8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utri8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utrma.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/md-utrmb.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/putb8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/putbi8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/putr8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdput/putri8a.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmm7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmm7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmm7v.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmm7y.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmm8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmm8d.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmm8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmmi7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmmi7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmmi8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmmi8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmmma.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmmmb.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmr7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmr7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmr7v.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmr7y.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmr8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmr8d.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmr8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmree.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmri7m.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmri7t.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmri8c.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmri8t.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmrma.afm
+ texmf-dist/fonts/afm/mathdesign/mdugm/md-gmrmb.afm
+ texmf-dist/fonts/map/dvips/mathdesign/mdbch.map
+ texmf-dist/fonts/map/dvips/mathdesign/mdput.map
+ texmf-dist/fonts/map/dvips/mathdesign/mdugm.map
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchb8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchb8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchbc8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchbc8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchbi8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchbi8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchbo8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchr8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchr8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchrc8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchrc8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchri8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchri8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/bchro8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chb7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chb7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chb7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chb7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chb8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chb8d.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chb8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chbi7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chbi7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chbi8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chbi8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chbma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chbmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chbo7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chbo8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chbo8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr7t5.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr7t6.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr7t7.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr7t8.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr7t9.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr8d.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chr8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chree.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chri7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chri7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chri7t5.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chri7t6.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chri7t7.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chri7t8.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chri7t9.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chri8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chri8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chrma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chrmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chro7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chro8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/md-chro8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchb7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchb7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchb7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchb7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchb8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchb8d.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchb8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbfc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbi7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbi7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbi8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbi8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbic8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbifc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbo7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbo8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbo8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchboc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchbofc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchr7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchr7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchr7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchr7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchr8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchr8d.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchr8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchrc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchrfc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchri7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchri7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchri8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchri8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchric8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchrifc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchrma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchrmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchro7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchro8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchro8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchroc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdbch/mdbchrofc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utb7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utb7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utb7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utb7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utb8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utb8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utbi7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utbi7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utbi8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utbi8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utbma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utbmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utbo7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utbo8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utbo8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utr7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utr7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utr7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utr7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utr8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utr8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utri7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utri7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utri8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utri8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utrma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utrmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utro7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utro8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/md-utro8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputb7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputb7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputb7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputb7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputb8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputb8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbfc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbi7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbi7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbi8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbi8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbifc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbo7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbo8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbo8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputbofc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputr7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputr7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputr7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputr7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputr8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputr8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputrc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputrfc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputri7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputri7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputri8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputri8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputrifc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputrma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputrmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputro7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputro8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputro8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/mdputrofc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putb8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putb8x.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putb8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putbi8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putbi8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putbo8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putr8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putr8x.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putr8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putri8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putri8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdput/putro8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmm7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmm7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmm7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmm7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmm8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmm8d.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmm8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmi7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmi7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmi8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmi8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmo7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmo7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmo8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmmo8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmr7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmr7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmr7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmr7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmr8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmr8d.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmr8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmree.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmri7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmri7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmri8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmri8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmrma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmrmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmro7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmro7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmro8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/md-gmro8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmm7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmm7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmm7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmm7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmm8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmm8d.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmm8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmfc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmi7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmi7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmi8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmi8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmifc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmo7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmo8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmo8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmmofc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmr7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmr7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmr7v.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmr7y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmr8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmr8d.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmr8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmrfc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmri7m.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmri7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmri8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmri8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmrifc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmrma.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmrmb.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmro7t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmro8c.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmro8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/mdugmrofc8t.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmm8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmm8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmmi8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmmi8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmmo8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmr8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmr8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmri8a.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmri8y.tfm
+ texmf-dist/fonts/tfm/mathdesign/mdugm/ugmro8y.tfm
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chb7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chb7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chb7v.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chb7y.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chb8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chb8d.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chb8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chbi7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chbi7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chbi8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chbi8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chbma.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chbmb.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr7t5.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr7t6.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr7t7.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr7t8.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr7t9.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr7v.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr7y.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr8d.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chr8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chree.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chri7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chri7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chri7t5.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chri7t6.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chri7t7.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chri7t8.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chri7t9.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chri8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chri8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chrma.pfb
+ texmf-dist/fonts/type1/mathdesign/mdbch/md-chrmb.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utb7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utb7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utb7v.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utb7y.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utb8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utb8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utbi7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utbi7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utbi8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utbi8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utbma.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utbmb.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utr7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utr7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utr7v.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utr7y.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utr8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utr8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utri7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utri7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utri8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utri8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utrma.pfb
+ texmf-dist/fonts/type1/mathdesign/mdput/md-utrmb.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmm7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmm7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmm7v.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmm7y.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmm8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmm8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmmi7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmmi7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmmi8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmmi8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmmma.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmmmb.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmr7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmr7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmr7v.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmr7y.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmr8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmr8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmri7m.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmri7t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmri8c.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmri8t.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmrma.pfb
+ texmf-dist/fonts/type1/mathdesign/mdugm/md-gmrmb.pfb
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchb7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchb7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchb7v.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchb7y.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchb8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchb8d.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchb8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbfc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbi7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbi7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbi8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbi8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbic8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbifc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbma.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbmb.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbo7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbo8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbo8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchboc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchbofc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchr7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchr7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchr7v.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchr7y.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchr8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchr8d.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchr8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchrc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchrfc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchri7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchri7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchri8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchri8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchric8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchrifc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchrma.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchrmb.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchro7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchro8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchro8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchroc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdbch/mdbchrofc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputb7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputb7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputb7v.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputb7y.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputb8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputb8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbfc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbi7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbi7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbi8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbi8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbifc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbma.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbmb.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbo7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbo8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbo8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputbofc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputr7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputr7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputr7v.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputr7y.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputr8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputr8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputrc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputrfc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputri7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputri7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputri8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputri8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputrifc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputrma.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputrmb.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputro7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputro8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputro8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdput/mdputrofc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmm7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmm7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmm7v.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmm7y.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmm8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmm8d.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmm8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmfc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmi7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmi7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmi8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmi8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmifc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmma.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmmb.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmo7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmo8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmo8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmmofc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmr7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmr7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmr7v.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmr7y.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmr8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmr8d.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmr8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmrfc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmri7m.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmri7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmri8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmri8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmrifc8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmrma.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmrmb.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmro7t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmro8c.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmro8t.vf
+ texmf-dist/fonts/vf/mathdesign/mdugm/mdugmrofc8t.vf
+ texmf-dist/tex/latex/mathdesign/mathdesign.sty
+ texmf-dist/tex/latex/mathdesign/mdacmr.fd
+ texmf-dist/tex/latex/mathdesign/mdbch/mdamdbch.fd
+ texmf-dist/tex/latex/mathdesign/mdbch/mdbch.cfg
+ texmf-dist/tex/latex/mathdesign/mdbch/mdbch.sty
+ texmf-dist/tex/latex/mathdesign/mdbch/mdbmdbch.fd
+ texmf-dist/tex/latex/mathdesign/mdbch/mdomxmdbch.fd
+ texmf-dist/tex/latex/mathdesign/mdbch/omlmdbch.fd
+ texmf-dist/tex/latex/mathdesign/mdbch/omsmdbch.fd
+ texmf-dist/tex/latex/mathdesign/mdbch/omxmdbch.fd
+ texmf-dist/tex/latex/mathdesign/mdbch/ot1mdbch.fd
+ texmf-dist/tex/latex/mathdesign/mdbch/t1mdbch.fd
+ texmf-dist/tex/latex/mathdesign/mdbch/ts1mdbch.fd
+ texmf-dist/tex/latex/mathdesign/mdbcmr.fd
+ texmf-dist/tex/latex/mathdesign/mdfont.def
+ texmf-dist/tex/latex/mathdesign/mdput/mdamdput.fd
+ texmf-dist/tex/latex/mathdesign/mdput/mdbmdput.fd
+ texmf-dist/tex/latex/mathdesign/mdput/mdput.cfg
+ texmf-dist/tex/latex/mathdesign/mdput/mdput.sty
+ texmf-dist/tex/latex/mathdesign/mdput/omlmdput.fd
+ texmf-dist/tex/latex/mathdesign/mdput/omsmdput.fd
+ texmf-dist/tex/latex/mathdesign/mdput/omxmdput.fd
+ texmf-dist/tex/latex/mathdesign/mdput/ot1mdput.fd
+ texmf-dist/tex/latex/mathdesign/mdput/t1mdput.fd
+ texmf-dist/tex/latex/mathdesign/mdput/t1putr.fd
+ texmf-dist/tex/latex/mathdesign/mdput/ts1mdput.fd
+ texmf-dist/tex/latex/mathdesign/mdsffont.def
+ texmf-dist/tex/latex/mathdesign/mdttfont.def
+ texmf-dist/tex/latex/mathdesign/mdugm/mdamdugm.fd
+ texmf-dist/tex/latex/mathdesign/mdugm/mdbmdugm.fd
+ texmf-dist/tex/latex/mathdesign/mdugm/mdugm.cfg
+ texmf-dist/tex/latex/mathdesign/mdugm/mdugm.sty
+ texmf-dist/tex/latex/mathdesign/mdugm/omlmdugm.fd
+ texmf-dist/tex/latex/mathdesign/mdugm/omsmdugm.fd
+ texmf-dist/tex/latex/mathdesign/mdugm/omxmdugm.fd
+ texmf-dist/tex/latex/mathdesign/mdugm/ot1mdugm.fd
+ texmf-dist/tex/latex/mathdesign/mdugm/t1mdugm.fd
+ texmf-dist/tex/latex/mathdesign/mdugm/ts1mdugm.fd
+catalogue-version 1.55
+catalogue-date 2007-03-09 22:25:45 +0100
+catalogue-ctan /fonts/mathdesign
+catalogue-license gpl
+
+name mathdots
+category Package
+revision 4396
+shortdesc Commands to produce dots in math that respect font size.
+longdesc Redefines \ddots and \vdots, and defines \iddots. The dots
+longdesc produced by \iddots slant in the opposite direction to \ddots.
+longdesc All the commands are designed to change size appropriately in
+longdesc scripts, as well as in response to LaTeX size changing
+longdesc commands. The commands may also be used in plain TeX.
+docfiles size=112178
+ texmf-dist/doc/generic/mathdots/README details="Readme"
+ texmf-dist/doc/generic/mathdots/mathdots.pdf details="Package documentation"
+ texmf-dist/doc/generic/mathdots/mdtest.tex
+srcfiles size=16179
+ texmf-dist/source/generic/mathdots/mathdots.dtx
+ texmf-dist/source/generic/mathdots/mathdots.ins
+runfiles size=7128
+ texmf-dist/tex/generic/mathdots/mathdots.sty
+ texmf-dist/tex/generic/mathdots/mathdots.tex
+catalogue-version 0.8
+catalogue-date 2007-06-01 10:48:38 +0200
+catalogue-ctan /macros/generic/mathdots
+catalogue-license lppl
+
+name mathexam
+category Package
+revision 4759
+shortdesc Package for typesetting exams.
+longdesc The package can help you typeset exams (mostly in mathematics
+longdesc and related disciplines where students are required to show
+longdesc their calculations followed by one or more short answers). It
+longdesc provides commands for inclusion of space for calculations, as
+longdesc well as commands for automatic creation of “answer spaces”.
+longdesc In addition, the package will automatically create page headers
+longdesc and footers, and will let you include instructions and space
+longdesc for students to put their name.
+docfiles size=182267
+ texmf-dist/doc/latex/mathexam/README details="Readme"
+ texmf-dist/doc/latex/mathexam/mathexam.pdf
+ texmf-dist/doc/latex/mathexam/sample.pdf
+ texmf-dist/doc/latex/mathexam/sample.tex
+srcfiles size=18205
+ texmf-dist/source/latex/mathexam/mathexam.dtx
+ texmf-dist/source/latex/mathexam/mathexam.ins
+runfiles size=2798
+ texmf-dist/tex/latex/mathexam/mathexam.sty
+catalogue-version 1.00
+catalogue-date 2007-08-16 20:47:30 +0200
+catalogue-ctan /macros/latex/contrib/mathexam
+catalogue-license lppl
+
+name mathmode
+category Documentation
+revision 5274
+docfiles size=7349842
+ texmf-doc/doc/english/mathmode/Changes
+ texmf-doc/doc/english/mathmode/Mathmode.bib
+ texmf-doc/doc/english/mathmode/Mathmode.ist
+ texmf-doc/doc/english/mathmode/Mathmode.ltx
+ texmf-doc/doc/english/mathmode/Mathmode.pdf
+ texmf-doc/doc/english/mathmode/Mathmode.tex
+ texmf-doc/doc/english/mathmode/images/EuScript.eps
+ texmf-doc/doc/english/mathmode/images/EuScript.pdf
+ texmf-doc/doc/english/mathmode/images/amsalign.eps
+ texmf-doc/doc/english/mathmode/images/amsalign.pdf
+ texmf-doc/doc/english/mathmode/images/cm-crop.eps
+ texmf-doc/doc/english/mathmode/images/cm-crop.pdf
+ texmf-doc/doc/english/mathmode/images/cmbright-crop.eps
+ texmf-doc/doc/english/mathmode/images/cmbright-crop.pdf
+ texmf-doc/doc/english/mathmode/images/colArray.eps
+ texmf-doc/doc/english/mathmode/images/colArray.pdf
+ texmf-doc/doc/english/mathmode/images/exscale.eps
+ texmf-doc/doc/english/mathmode/images/exscale.pdf
+ texmf-doc/doc/english/mathmode/images/family.eps
+ texmf-doc/doc/english/mathmode/images/family.pdf
+ texmf-doc/doc/english/mathmode/images/family0.eps
+ texmf-doc/doc/english/mathmode/images/family0.pdf
+ texmf-doc/doc/english/mathmode/images/family1.eps
+ texmf-doc/doc/english/mathmode/images/family1.pdf
+ texmf-doc/doc/english/mathmode/images/lm-crop.eps
+ texmf-doc/doc/english/mathmode/images/lm-crop.pdf
+ texmf-doc/doc/english/mathmode/images/minionpro-crop.eps
+ texmf-doc/doc/english/mathmode/images/minionpro-crop.pdf
+ texmf-doc/doc/english/mathmode/images/node.eps
+ texmf-doc/doc/english/mathmode/images/node.pdf
+ texmf-doc/doc/english/mathmode/images/pamath-crop.eps
+ texmf-doc/doc/english/mathmode/images/pamath-crop.pdf
+ texmf-doc/doc/english/mathmode/images/pazo-crop.eps
+ texmf-doc/doc/english/mathmode/images/pazo-crop.pdf
+ texmf-doc/doc/english/mathmode/images/styles.eps
+ texmf-doc/doc/english/mathmode/images/styles.pdf
+ texmf-doc/doc/english/mathmode/runLaTeX
+ texmf-doc/doc/english/mathmode/runPDFLaTeX
+ texmf-doc/doc/english/mathmode/runVTeX
+ texmf-doc/doc/english/mathmode/showexpl.cfg
+
+name mathpazo
+category Package
+revision 374
+shortdesc Fonts to typeset mathematics to match Palatino.
+longdesc The Pazo Math fonts are a family of PostScript fonts suitable
+longdesc for typesetting mathematics in combination with the Palatino
+longdesc family of text fonts. The Pazo Math family is made up of five
+longdesc fonts provided in Adobe Type 1 format (PazoMath, PazoMath-
+longdesc Italic, PazoMath-Bold, PazoMath-BoldItalic, and
+longdesc PazoMathBlackboardBold). These contain, in designs that suit
+longdesc Palatino, glyphs that are usually not available in Palatino and
+longdesc for which Computer Modern looks odd when combined with
+longdesc Palatino. These glyphs include the uppercase Greek alphabet in
+longdesc upright and slanted shapes in regular and bold weights, the
+longdesc lowercase Greek alphabet in slanted shape in regular and bold
+longdesc weights, several mathematical glyphs (partialdiff, summation,
+longdesc product, coproduct, emptyset, infinity, and proportional) in
+longdesc regular and bold weights, other glyphs (Euro and dotlessj) in
+longdesc upright and slanted shapes in regular and bold weights, and the
+longdesc uppercase letters commonly used to represent various number
+longdesc sets (C, I, N, Q, R, and Z) in blackboard bold. LaTeX macro
+longdesc support is provided (using package mathpazo.sty) is provided in
+longdesc psnfss (a required part of any LaTeX distribution).
+docfiles size=432701
+ texmf-dist/doc/latex/mathpazo/README.txt
+ texmf-dist/doc/latex/mathpazo/gpl.txt
+ texmf-dist/doc/latex/mathpazo/mapfplm.tex
+ texmf-dist/doc/latex/mathpazo/mapppl.tex
+ texmf-dist/doc/latex/mathpazo/mapzplm.tex
+ texmf-dist/doc/latex/mathpazo/pazofnst.tex
+ texmf-dist/doc/latex/mathpazo/pazotest.pdf details="Font tables:"
+srcfiles size=316010
+ texmf-dist/source/latex/mathpazo/Makefile
+ texmf-dist/source/latex/mathpazo/cmbsy10.pl
+ texmf-dist/source/latex/mathpazo/cmbx10.pl
+ texmf-dist/source/latex/mathpazo/cmex10.pl
+ texmf-dist/source/latex/mathpazo/cmmi10.pl
+ texmf-dist/source/latex/mathpazo/cmmib10.pl
+ texmf-dist/source/latex/mathpazo/cmr10.pl
+ texmf-dist/source/latex/mathpazo/cmsy10.pl
+ texmf-dist/source/latex/mathpazo/fplmb.inf
+ texmf-dist/source/latex/mathpazo/fplmb.mtx
+ texmf-dist/source/latex/mathpazo/fplmb.pl
+ texmf-dist/source/latex/mathpazo/fplmbb.inf
+ texmf-dist/source/latex/mathpazo/fplmbb.mtx
+ texmf-dist/source/latex/mathpazo/fplmbb.pl
+ texmf-dist/source/latex/mathpazo/fplmbi.inf
+ texmf-dist/source/latex/mathpazo/fplmbi.mtx
+ texmf-dist/source/latex/mathpazo/fplmbi.pl
+ texmf-dist/source/latex/mathpazo/fplmr.inf
+ texmf-dist/source/latex/mathpazo/fplmr.mtx
+ texmf-dist/source/latex/mathpazo/fplmr.pl
+ texmf-dist/source/latex/mathpazo/fplmri.inf
+ texmf-dist/source/latex/mathpazo/fplmri.mtx
+ texmf-dist/source/latex/mathpazo/fplmri.pl
+ texmf-dist/source/latex/mathpazo/haxzplmb.mtx
+ texmf-dist/source/latex/mathpazo/haxzplmr.mtx
+ texmf-dist/source/latex/mathpazo/inf/fplmb.inf
+ texmf-dist/source/latex/mathpazo/inf/fplmbb.inf
+ texmf-dist/source/latex/mathpazo/inf/fplmbi.inf
+ texmf-dist/source/latex/mathpazo/inf/fplmr.inf
+ texmf-dist/source/latex/mathpazo/inf/fplmri.inf
+ texmf-dist/source/latex/mathpazo/nokernum.mtx
+ texmf-dist/source/latex/mathpazo/omsnames.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/Makefile
+ texmf-dist/source/latex/mathpazo/pazofnst/cmbsy10.pl
+ texmf-dist/source/latex/mathpazo/pazofnst/cmbx10.pl
+ texmf-dist/source/latex/mathpazo/pazofnst/cmex10.pl
+ texmf-dist/source/latex/mathpazo/pazofnst/cmmi10.pl
+ texmf-dist/source/latex/mathpazo/pazofnst/cmmib10.pl
+ texmf-dist/source/latex/mathpazo/pazofnst/cmr10.pl
+ texmf-dist/source/latex/mathpazo/pazofnst/cmsy10.pl
+ texmf-dist/source/latex/mathpazo/pazofnst/haxzplmb.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/haxzplmr.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/nokernum.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/omsnames.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/pazofnst.tex
+ texmf-dist/source/latex/mathpazo/pazofnst/unsetcm4pl.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/unsetint.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/unsetosf.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/unsetpl4cm.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/unsetpunct.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/zplmbgop.mtx
+ texmf-dist/source/latex/mathpazo/pazofnst/zplmsum.mtx
+ texmf-dist/source/latex/mathpazo/pplr8a.mtx
+ texmf-dist/source/latex/mathpazo/unsetcm4pl.mtx
+ texmf-dist/source/latex/mathpazo/unsetint.mtx
+ texmf-dist/source/latex/mathpazo/unsetosf.mtx
+ texmf-dist/source/latex/mathpazo/unsetpl4cm.mtx
+ texmf-dist/source/latex/mathpazo/unsetpunct.mtx
+ texmf-dist/source/latex/mathpazo/zplmbgop.mtx
+ texmf-dist/source/latex/mathpazo/zplmsum.mtx
+runfiles size=100508
+ texmf-dist/fonts/afm/public/mathpazo/fplmb.afm
+ texmf-dist/fonts/afm/public/mathpazo/fplmbb.afm
+ texmf-dist/fonts/afm/public/mathpazo/fplmbi.afm
+ texmf-dist/fonts/afm/public/mathpazo/fplmr.afm
+ texmf-dist/fonts/afm/public/mathpazo/fplmri.afm
+ texmf-dist/fonts/tfm/public/mathpazo/fplmb.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/fplmbb.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/fplmbi.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/fplmr.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/fplmri.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/zplmb7m.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/zplmb7t.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/zplmb7y.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm
+ texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm
+ texmf-dist/fonts/type1/public/mathpazo/fplmb.pfb
+ texmf-dist/fonts/type1/public/mathpazo/fplmbb.pfb
+ texmf-dist/fonts/type1/public/mathpazo/fplmbi.pfb
+ texmf-dist/fonts/type1/public/mathpazo/fplmr.pfb
+ texmf-dist/fonts/type1/public/mathpazo/fplmri.pfb
+ texmf-dist/fonts/vf/public/mathpazo/zplmb7m.vf
+ texmf-dist/fonts/vf/public/mathpazo/zplmb7t.vf
+ texmf-dist/fonts/vf/public/mathpazo/zplmb7y.vf
+ texmf-dist/fonts/vf/public/mathpazo/zplmr7m.vf
+ texmf-dist/fonts/vf/public/mathpazo/zplmr7t.vf
+ texmf-dist/fonts/vf/public/mathpazo/zplmr7v.vf
+ texmf-dist/fonts/vf/public/mathpazo/zplmr7y.vf
+catalogue-version 1.003
+catalogue-date 2007-01-09 22:36:10 +0100
+catalogue-ctan /fonts/mathpazo
+catalogue-license gpl
+
+name maybemath
+category Package
+revision 2411
+shortdesc Make math bold or italic according to context.
+longdesc The \maybebm and \maybeit macros can be used in math
+longdesc expressions to make the arguments typeset as bold or italic
+longdesc respectively if the surrounding context is appropriate. They
+longdesc are useful for writing user macros for use in general contexts.
+longdesc \maybebm is especially appropriate when section titles contain
+longdesc math expressions, since the title will appear bold but the
+longdesc header and table of contents usually replicate the title in
+longdesc normal width. It uses the bm package to make things bold
+longdesc \maybeit performs a similar role to \mathrm{} but the math
+longdesc expression will be italicised if the surrounding text is.
+longdesc \maybeitsubscript is provided to shift subscripts to the left
+longdesc if the expression is italicised.
+docfiles size=77282
+ texmf-dist/doc/latex/maybemath/README details="Package README"
+ texmf-dist/doc/latex/maybemath/maybemath.pdf details="Package documentation"
+ texmf-dist/doc/latex/maybemath/maybemath.tex
+runfiles size=2202
+ texmf-dist/tex/latex/maybemath/maybemath.sty
+catalogue-version
+catalogue-date 2007-03-09 22:25:45 +0100
+catalogue-ctan /macros/latex/contrib/maybemath
+catalogue-license lppl
+
+name mcaption
+category Package
+revision 1077
+shortdesc Put captions in the margin.
+longdesc The mcaption package provides an mcaption environment which
+longdesc puts figure or table captions in the margin. The package works
+longdesc with the standard classes and with the KOMA-Script document
+longdesc classes scrartcl, scrreprt and scrbook.
+docfiles size=125856
+ texmf-dist/doc/latex/mcaption/README details="Readme"
+ texmf-dist/doc/latex/mcaption/example.tex
+ texmf-dist/doc/latex/mcaption/mcaption.pdf details="Package documentation"
+srcfiles size=16449
+ texmf-dist/source/latex/mcaption/mcaption.dtx
+ texmf-dist/source/latex/mcaption/mcaption.ins
+runfiles size=2913
+ texmf-dist/tex/latex/mcaption/mcaption.sty
+catalogue-version 2.2
+catalogue-date 2007-02-23 14:12:01 +0100
+catalogue-ctan /macros/latex/contrib/mcaption
+catalogue-license lppl
+
+name mceinleger
+category Package
+revision 1078
+shortdesc Creating covers for music cassettes.
+longdesc A package for creating MC-covers on your own. It allows the
+longdesc creation of simple covers as well as covers with an additional
+longdesc page for more information about the cassette (table of contents
+longdesc e.g.). The rotating package is required.
+docfiles size=56756
+ texmf-dist/doc/latex/mceinleger/mceinleger.pdf
+ texmf-dist/doc/latex/mceinleger/mceinleger.tex
+runfiles size=1364
+ texmf-dist/tex/latex/mceinleger/mceinleger.sty
+catalogue-version
+catalogue-date 2007-01-09 22:36:10 +0100
+catalogue-ctan /macros/latex/contrib/mceinleger
+catalogue-license gpl
+
+name mcite
+category Package
+revision 1487
+shortdesc Multiple items in a single citation.
+longdesc The mcite package allows the user to collapse multiple
+longdesc citations into one, as is customary in physics journals. The
+longdesc package requires a customised BibTeX style for its work; the
+longdesc documentation explains how to do that customisation.
+docfiles size=21444
+ texmf-dist/doc/latex/mcite/mcite.dvi
+srcfiles size=43648
+ texmf-dist/source/latex/mcite/COPYING
+ texmf-dist/source/latex/mcite/Makefile
+ texmf-dist/source/latex/mcite/README
+ texmf-dist/source/latex/mcite/mcite.drv
+ texmf-dist/source/latex/mcite/mcite.dtx
+ texmf-dist/source/latex/mcite/mcite.ins
+runfiles size=5484
+ texmf-dist/tex/latex/mcite/mcite.sty
+catalogue-version 1.6
+catalogue-date 2007-01-09 22:36:10 +0100
+catalogue-ctan /macros/latex/contrib/mcite
+catalogue-license gpl
+
+name mdwtools
+category Package
+revision 2088
+shortdesc Miscellaneous tools by Mark Wooding.
+longdesc This collection of tools includes: support for short commands
+longdesc starting with @, macros to sanitise the OT1 encoding of the
+longdesc cmtt fonts, a "doafter" command, improved footnote support,
+longdesc mathenv for various alignment in maths, list handling, a
+longdesc rewrite of LaTeX's tabular and array environments, verbatim
+longdesc handling, and syntax diagrams.
+docfiles size=103055
+ texmf-dist/doc/latex/mdwtools/COPYING
+ texmf-dist/doc/latex/mdwtools/README
+ texmf-dist/doc/latex/mdwtools/doafter.tex
+ texmf-dist/doc/latex/mdwtools/gpl.tex
+ texmf-dist/doc/latex/mdwtools/mathenv.tex
+ texmf-dist/doc/latex/mdwtools/mdwtools.tex
+srcfiles size=436609
+ texmf-dist/source/latex/mdwtools/at.dtx
+ texmf-dist/source/latex/mdwtools/cmtt.dtx
+ texmf-dist/source/latex/mdwtools/doafter.dtx
+ texmf-dist/source/latex/mdwtools/footnote.dtx
+ texmf-dist/source/latex/mdwtools/mdwlist.dtx
+ texmf-dist/source/latex/mdwtools/mdwmath.dtx
+ texmf-dist/source/latex/mdwtools/mdwtab.dtx
+ texmf-dist/source/latex/mdwtools/mdwtools.ins
+ texmf-dist/source/latex/mdwtools/sverb.dtx
+ texmf-dist/source/latex/mdwtools/syntax.dtx
+runfiles size=101656
+ texmf-dist/tex/latex/mdwtools/at.sty
+ texmf-dist/tex/latex/mdwtools/cmtt.sty
+ texmf-dist/tex/latex/mdwtools/doafter.sty
+ texmf-dist/tex/latex/mdwtools/footnote.sty
+ texmf-dist/tex/latex/mdwtools/mTTcmtt.fd
+ texmf-dist/tex/latex/mdwtools/mTTenc.def
+ texmf-dist/tex/latex/mdwtools/mathenv.sty
+ texmf-dist/tex/latex/mdwtools/mdwlist.sty
+ texmf-dist/tex/latex/mdwtools/mdwmath.sty
+ texmf-dist/tex/latex/mdwtools/mdwtab.sty
+ texmf-dist/tex/latex/mdwtools/sverb.sty
+ texmf-dist/tex/latex/mdwtools/syntax.sty
+catalogue-version 1.05.4
+catalogue-date 2006-12-13 23:18:29 +0100
+catalogue-ctan /macros/latex/contrib/mdwtools
+catalogue-license gpl
+
+name memoir
+category Package
+revision 3702
+shortdesc Typeset fiction, non-fiction and mathematical books.
+longdesc The memoir class is for typesetting poetry, fiction, non-
+longdesc fiction, and mathematical works. The normal font sizes range
+longdesc from 9 to 17pt. There is a range of page-styles and well over a
+longdesc dozen chapter-styles to choose from and methods for specifying
+longdesc your own layouts and designs. The class encompasses over thirty
+longdesc of the more popular packages. The class has an associated patch
+longdesc file mempatch, which is automatically loaded by the class
+longdesc itself, but which is updated from time to time, between
+longdesc releases of the class itself. Users who wish to use the
+longdesc hyperref package, in a document written with the memoir class,
+longdesc should also use the memhfixc package.
+docfiles size=3187198
+ texmf-dist/doc/latex/memoir/README
+ texmf-dist/doc/latex/memoir/basic.gst
+ texmf-dist/doc/latex/memoir/memman.pdf details="Basic user manual:"
+ texmf-dist/doc/latex/memoir/memman.tex
+ texmf-dist/doc/latex/memoir/memmanadd.pdf details="Additions to the manual:"
+srcfiles size=1029677
+ texmf-dist/source/latex/memoir/memoir.dtx
+ texmf-dist/source/latex/memoir/memoir.ins
+ texmf-dist/source/latex/memoir/mempatch.dtx
+ texmf-dist/source/latex/memoir/mempatch.ins
+runfiles size=394614
+ texmf-dist/makeindex/memoir/memman.ist
+ texmf-dist/tex/latex/memoir/mem10.clo
+ texmf-dist/tex/latex/memoir/mem11.clo
+ texmf-dist/tex/latex/memoir/mem12.clo
+ texmf-dist/tex/latex/memoir/mem14.clo
+ texmf-dist/tex/latex/memoir/mem17.clo
+ texmf-dist/tex/latex/memoir/mem9.clo
+ texmf-dist/tex/latex/memoir/memhfixc.sty
+ texmf-dist/tex/latex/memoir/memoir.cls
+ texmf-dist/tex/latex/memoir/mempatch.sty
+catalogue-version 1.618 patch 4.8
+catalogue-date 2007-01-23 00:59:42 +0100
+catalogue-ctan /macros/latex/contrib/memoir
+catalogue-license lppl
+
+name mentis
+category Package
+revision 1897
+shortdesc A basis for books to be published by Mentis publishers.
+longdesc This LaTeX class loads scrbook and provides changes necessary
+longdesc for publishing at Mentis publishers in Paderborn, Germany. It
+longdesc is not an official Mentis class, merely one developed by an
+longdesc author in close co-operation with Mentis.
+docfiles size=156099
+ texmf-dist/doc/latex/mentis/README details="Readme"
+ texmf-dist/doc/latex/mentis/mentis.pdf details="Package documentation"
+srcfiles size=53460
+ texmf-dist/source/latex/mentis/mentis.dtx
+ texmf-dist/source/latex/mentis/mentis.ins
+runfiles size=13354
+ texmf-dist/tex/latex/mentis/mentis.cls
+catalogue-version 1.5
+catalogue-date 2007-01-09 22:36:10 +0100
+catalogue-ctan /macros/latex/contrib/mentis
+catalogue-license lppl
+
+name menu
+category Package
+revision 1083
+shortdesc Typesetting menus.
+longdesc The package defines commands \keystroke and \menu, which assist
+longdesc typesetting of a path through a program's menu.
+srcfiles size=12000
+ texmf-dist/source/latex/menu/menu.dtx
+ texmf-dist/source/latex/menu/menu.ins
+runfiles size=3497
+ texmf-dist/tex/latex/menu/menu.sty
+catalogue-version 1.5
+catalogue-date 2007-02-23 14:12:01 +0100
+catalogue-ctan /macros/latex/contrib/menu
+catalogue-license unknown
+
+name metafont
+category Package
+revision 604
+runfiles size=131645
+ texmf-dist/metafont/base/expr.mf
+ texmf-dist/metafont/base/io.mf
+ texmf-dist/metafont/base/mf.mf
+ texmf-dist/metafont/base/null.mf
+ texmf-dist/metafont/base/plain.mf
+ texmf-dist/metafont/config/cmmf.ini
+ texmf-dist/metafont/config/mf.ini
+ texmf-dist/metafont/misc/3test.mf
+ texmf-dist/metafont/misc/6test.mf
+ texmf-dist/metafont/misc/mode2dpi.mf
+ texmf-dist/metafont/misc/mode2dpixy.mf
+ texmf-dist/metafont/misc/modename.mf
+ texmf-dist/metafont/misc/modes.mf
+ texmf-dist/metafont/misc/ps2mfbas.mf
+ texmf-dist/metafont/misc/rtest.mf
+ texmf-dist/metafont/misc/test.mf
+ texmf-dist/metafont/misc/waits.mf
+ texmf-dist/metafont/misc/ztest.mf
+
+name metafont-for-beginners
+category Documentation
+revision 22
+docfiles size=48463
+ texmf-doc/doc/english/metafont-for-beginners/metafont-for-beginners.tex
+
+name metafp
+category Documentation
+revision 22
+shortdesc Some Experiences in Running METAFONT and MetaPost.
+docfiles size=198021
+ texmf-doc/doc/english/metafp/metafp.pdf details="The document itself:" language="en"
+catalogue-version
+catalogue-date 2007-03-09 22:25:45 +0100
+catalogue-ctan /info/metafont/metafp
+catalogue-license lppl
+
+name metaobj
+category Package
+revision 5000
+shortdesc MetaPost package providing high-level objects.
+longdesc METAOBJ is a large metapost package providing high-level
+longdesc objects. It implements many of PSTricks' features for node
+longdesc connections, but also trees, matrices, and many other things.
+longdesc It more or less contains boxes.mp and rboxes.mp. There is a
+longdesc large (albeit not complete) documentation distributed with the
+longdesc package. It is easily extensible with new objects.
+docfiles size=1002115
+ texmf-dist/doc/metapost/metaobj/README details="Readme"
+ texmf-dist/doc/metapost/metaobj/license.txt
+ texmf-dist/doc/metapost/metaobj/momanual.pdf
+runfiles size=319151
+ texmf-dist/metapost/metaobj/connections.mp
+ texmf-dist/metapost/metaobj/metaobj.mp
+ texmf-dist/metapost/metaobj/mobjstandard.mp
+ texmf-dist/metapost/metaobj/proofex.mp
+ texmf-dist/metapost/metaobj/pstricksex1.mp
+ texmf-dist/metapost/metaobj/pstricksex2.mp
+ texmf-dist/metapost/metaobj/pstricksex3.mp
+ texmf-dist/metapost/metaobj/pstricksex4.mp
+catalogue-version 0.93
+catalogue-date 2007-08-24 22:48:09 +0200
+catalogue-ctan /graphics/metapost/contrib/macros/metaobj
+catalogue-license lppl
+
+name metaplot
+category Package
+revision 2411
+docfiles size=548625
+ texmf-dist/doc/latex/metaplot/README
+ texmf-dist/doc/latex/metaplot/examples/cap1.cc
+ texmf-dist/doc/latex/metaplot/examples/cap1.mp
+ texmf-dist/doc/latex/metaplot/examples/capillary.cc
+ texmf-dist/doc/latex/metaplot/examples/cpoint.cc
+ texmf-dist/doc/latex/metaplot/examples/cpoint.h
+ texmf-dist/doc/latex/metaplot/examples/figure_1.mp
+ texmf-dist/doc/latex/metaplot/examples/figures_2-7.mp
+ texmf-dist/doc/latex/metaplot/examples/figures_8-9.mp
+ texmf-dist/doc/latex/metaplot/examples/gpl.txt
+ texmf-dist/doc/latex/metaplot/examples/mc2.mp
+ texmf-dist/doc/latex/metaplot/examples/metacontour.cc
+ texmf-dist/doc/latex/metaplot/examples/metacontour.h
+ texmf-dist/doc/latex/metaplot/examples/metacontour_main.cc
+ texmf-dist/doc/latex/metaplot/metaplot_preprint.pdf
+runfiles size=14684
+ texmf-dist/metapost/metaplot/axes.mp
+ texmf-dist/metapost/metaplot/metaplot.mp
+
+name metapost
+category Package
+revision 4904
+shortdesc A development of MetaFont that generates PostScript output.
+longdesc A tool based on MetaFont for producing precise technical
+longdesc illustrations, creating scalable PostScript instead of bitmaps.
+docfiles size=1326174
+ texmf-dist/doc/metapost/base/Makefile
+ texmf-dist/doc/metapost/base/grdemo-doc.pdf
+ texmf-dist/doc/metapost/base/grdemo.pdf
+ texmf-dist/doc/metapost/base/index.html
+ texmf-dist/doc/metapost/base/mpgraph.pdf
+ texmf-dist/doc/metapost/base/mpintro.pdf
+ texmf-dist/doc/metapost/base/mpman.pdf details="Package documentation"
+ texmf-dist/doc/metapost/base/source/Makefile
+ texmf-dist/doc/metapost/base/source/README details="Readme"
+ texmf-dist/doc/metapost/base/source/agepop91.d
+ texmf-dist/doc/metapost/base/source/agepopm.d
+ texmf-dist/doc/metapost/base/source/countries.d
+ texmf-dist/doc/metapost/base/source/ctabbing.sty
+ texmf-dist/doc/metapost/base/source/demo.ms
+ texmf-dist/doc/metapost/base/source/energy.d
+ texmf-dist/doc/metapost/base/source/examples.mp
+ texmf-dist/doc/metapost/base/source/figs.mp
+ texmf-dist/doc/metapost/base/source/grdemo-doc.ms
+ texmf-dist/doc/metapost/base/source/grdemo.eps
+ texmf-dist/doc/metapost/base/source/grdemo.mp
+ texmf-dist/doc/metapost/base/source/grdemo.ms
+ texmf-dist/doc/metapost/base/source/lead.d
+ texmf-dist/doc/metapost/base/source/manfig.mp
+ texmf-dist/doc/metapost/base/source/matmul.d
+ texmf-dist/doc/metapost/base/source/mpgraph.bib
+ texmf-dist/doc/metapost/base/source/mpgraph.mp
+ texmf-dist/doc/metapost/base/source/mpgraph.tex
+ texmf-dist/doc/metapost/base/source/mpintro.bib
+ texmf-dist/doc/metapost/base/source/mpintro.tex
+ texmf-dist/doc/metapost/base/source/mpman.bib
+ texmf-dist/doc/metapost/base/source/mpman.ist
+ texmf-dist/doc/metapost/base/source/mpman.tex
+ texmf-dist/doc/metapost/base/source/timepop.d
+runfiles size=110623
+ texmf-dist/metapost/base/TEX.mp
+ texmf-dist/metapost/base/boxes.mp
+ texmf-dist/metapost/base/format.mp
+ texmf-dist/metapost/base/graph.mp
+ texmf-dist/metapost/base/marith.mp
+ texmf-dist/metapost/base/mfplain.mp
+ texmf-dist/metapost/base/mpost.mp
+ texmf-dist/metapost/base/plain.mp
+ texmf-dist/metapost/base/rboxes.mp
+ texmf-dist/metapost/base/sarith.mp
+ texmf-dist/metapost/base/string.mp
+ texmf-dist/metapost/base/texnum.mp
+ texmf-dist/metapost/base/troffnum.mp
+ texmf-dist/metapost/config/mfmp.ini
+ texmf-dist/metapost/config/mpost.ini
+ texmf-dist/metapost/misc/null.mp
+ texmf-dist/metapost/support/charlib/12
+ texmf-dist/metapost/support/charlib/14
+ texmf-dist/metapost/support/charlib/34
+ texmf-dist/metapost/support/charlib/Ao
+ texmf-dist/metapost/support/charlib/Fi
+ texmf-dist/metapost/support/charlib/Fl
+ texmf-dist/metapost/support/charlib/L1
+ texmf-dist/metapost/support/charlib/LH
+ texmf-dist/metapost/support/charlib/Lb
+ texmf-dist/metapost/support/charlib/Sl
+ texmf-dist/metapost/support/charlib/ao.x
+ texmf-dist/metapost/support/charlib/bx
+ texmf-dist/metapost/support/charlib/ci
+ texmf-dist/metapost/support/charlib/ff
+ texmf-dist/metapost/support/charlib/lh.x
+ texmf-dist/metapost/support/charlib/ob
+ texmf-dist/metapost/support/charlib/rh
+ texmf-dist/metapost/support/charlib/sq
+ texmf-dist/metapost/support/charlib/twiddle
+ texmf-dist/metapost/support/trchars.adj
+ texmf-dist/metapost/support/trfonts.map
+catalogue-version 0.901
+catalogue-date 2007-05-31 18:38:10 +0200
+catalogue-ctan /graphics/metapost
+catalogue-license unknown
+
+name metapost-examples
+category Documentation
+revision 22
+docfiles size=127583
+ texmf-doc/doc/english/metapost-examples/Makefile
+ texmf-doc/doc/english/metapost-examples/README
+ texmf-doc/doc/english/metapost-examples/data1
+ texmf-doc/doc/english/metapost-examples/data2
+ texmf-doc/doc/english/metapost-examples/data3
+ texmf-doc/doc/english/metapost-examples/examples.mp
+ texmf-doc/doc/english/metapost-examples/mp2html.pl
+
+name metatex
+category Package
+revision 621
+docfiles size=207973
+ texmf-dist/doc/plain/metatex/README
+ texmf-dist/doc/plain/metatex/gpl.txt
+ texmf-dist/doc/plain/metatex/mtmp2pdf.tex
+ texmf-dist/doc/plain/metatex/mtpaper.pdf
+ texmf-dist/doc/plain/metatex/mtpaper/delay.mf
+ texmf-dist/doc/plain/metatex/mtpaper/diagram.tex
+ texmf-dist/doc/plain/metatex/mtpaper/frame.tex
+ texmf-dist/doc/plain/metatex/mtpaper/mtpaper.tex
+ texmf-dist/doc/plain/metatex/mtpaper/shadow.tex
+runfiles size=7388
+ texmf-dist/tex/plain/metatex/metatex.tex
+
+name metauml
+category Package
+revision 1851
+shortdesc MetaPost library for typesetting UML diagrams.
+longdesc MetaUML is a MetaPost library for typesetting UML diagrams,
+longdesc which provides a usable, human-friendly textual notation for
+longdesc UML, offering now support for class, package, activity, state,
+longdesc and use case diagrams.
+docfiles size=576411
+ texmf-dist/doc/metapost/metauml/README details="Readme"
+ texmf-dist/doc/metapost/metauml/license.txt
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/activity.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/activity_diagrams.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/appetizer.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/boxes_vs_util.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/class.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/class_association.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/class_customization.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/class_customization2.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/class_diagrams.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/class_templates.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/cliparts.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/group.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/how-links-work.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/instance.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/mptrace.tmp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/note.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/object_stack.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/package.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/paths.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/paths_man.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/picture_info.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/picture_stack.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/positioning.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/properties.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/state.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/statemachine_diagrams.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_activity.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_class.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_class_qual_assoc.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_class_templates.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_font.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_group.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_instance.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_lars_issues.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_lowlevel.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_note.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_package.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_paths.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_picture.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_picture_stack.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_positioning.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_skins.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_skins_global_defaults.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_state.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/test_usecase.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/usecase.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/fig/usecase_diagrams.mp
+ texmf-dist/doc/metapost/metauml/metauml_manual/gnu-fdl.tex
+ texmf-dist/doc/metapost/metauml/metauml_manual/macro.tex
+ texmf-dist/doc/metapost/metauml/metauml_manual/metauml_manual.tex
+ texmf-dist/doc/metapost/metauml/metauml_manual/my-bib.bib
+ texmf-dist/doc/metapost/metauml/metauml_manual/test_suite.tex
+ texmf-dist/doc/metapost/metauml/metauml_manual_0.2.3.pdf
+runfiles size=115888
+ texmf-dist/metapost/metauml/metauml.mp
+ texmf-dist/metapost/metauml/metauml_activity.mp
+ texmf-dist/metapost/metauml/metauml_base.mp
+ texmf-dist/metapost/metauml/metauml_behavioral_common.mp
+ texmf-dist/metapost/metauml/metauml_class.mp
+ texmf-dist/metapost/metauml/metauml_class_assoc.mp
+ texmf-dist/metapost/metauml/metauml_class_clipart.mp
+ texmf-dist/metapost/metauml/metauml_class_relations.mp
+ texmf-dist/metapost/metauml/metauml_defaults.mp
+ texmf-dist/metapost/metauml/metauml_instance.mp
+ texmf-dist/metapost/metauml/metauml_links.mp
+ texmf-dist/metapost/metauml/metauml_note.mp
+ texmf-dist/metapost/metauml/metauml_package.mp
+ texmf-dist/metapost/metauml/metauml_package_relations.mp
+ texmf-dist/metapost/metauml/metauml_paths.mp
+ texmf-dist/metapost/metauml/metauml_skin_simple.mp
+ texmf-dist/metapost/metauml/metauml_state.mp
+ texmf-dist/metapost/metauml/metauml_stereotype.mp
+ texmf-dist/metapost/metauml/metauml_templates.mp
+ texmf-dist/metapost/metauml/metauml_usecase.mp
+ texmf-dist/metapost/metauml/metauml_usecase_clipart.mp
+ texmf-dist/metapost/metauml/util_commons.mp
+ texmf-dist/metapost/metauml/util_group.mp
+ texmf-dist/metapost/metauml/util_infrastructure.mp
+ texmf-dist/metapost/metauml/util_log.mp
+ texmf-dist/metapost/metauml/util_margins.mp
+ texmf-dist/metapost/metauml/util_object.mp
+ texmf-dist/metapost/metauml/util_picture.mp
+ texmf-dist/metapost/metauml/util_picture_stack.mp
+ texmf-dist/metapost/metauml/util_positioning.mp
+ texmf-dist/metapost/metauml/util_shade.mp
+catalogue-version 0.2.3
+catalogue-date 2007-09-06 15:53:49 +0200
+catalogue-ctan /graphics/metapost/contrib/macros/metauml
+catalogue-license gpl
+
+name method
+category Package
+revision 1487
+shortdesc Typeset method and variable declarations.
+longdesc This LaTeX package supports the typesetting of programming
+longdesc language method and variable declarations. It includes an
+longdesc option to typeset in French.
+docfiles size=3364
+ texmf-dist/doc/latex/method/methtest.dvi
+ texmf-dist/doc/latex/method/methtest.tex
+srcfiles size=30784
+ texmf-dist/source/latex/method/method.dtx
+ texmf-dist/source/latex/method/method.ins
+ texmf-dist/source/latex/method/readme
+runfiles size=10846
+ texmf-dist/tex/latex/method/method.sty
+catalogue-version
+catalogue-date 2007-01-09 22:36:10 +0100
+catalogue-ctan /macros/latex/contrib/method
+catalogue-license lppl
+
+name metre
+category Package
+revision 1085
+shortdesc Support for the work of classicists
+longdesc The package provides classicists with some of the tools that
+longdesc are needed for typesetting scholarly publications dealing with
+longdesc Greek and Latin texts, with special emphasis on Greek verse. As
+longdesc the package's name suggests, its core is a comprehensive set of
+longdesc commands for generating metrical schemes and for placing
+longdesc prosodical marks on text set in the Latin or the Greek
+longdesc alphabet. The rest of the package provides a miscellany of
+longdesc commands for symbols (most of them not directly related to
+longdesc metre) that are often used in critical editions of classical
+longdesc texts. The package does not require any special font: all
+longdesc symbols are taken from the Computer Modern fonts (which are
+longdesc included in all TeX distributions) and the package's commands
+longdesc are based on TeX primitives.
+docfiles size=383747
+ texmf-dist/doc/latex/metre/demo.pdf details="Example of usage"
+ texmf-dist/doc/latex/metre/demo.tex
+ texmf-dist/doc/latex/metre/greek1.tex
+ texmf-dist/doc/latex/metre/greek2.tex
+ texmf-dist/doc/latex/metre/greek3.tex
+ texmf-dist/doc/latex/metre/igreek1.tex
+ texmf-dist/doc/latex/metre/igreek2.tex
+ texmf-dist/doc/latex/metre/igreek3.tex
+ texmf-dist/doc/latex/metre/metre.pdf details="Package documentation"
+srcfiles size=121081
+ texmf-dist/source/latex/metre/metre.dtx
+ texmf-dist/source/latex/metre/metre.ins
+runfiles size=58107
+ texmf-dist/tex/latex/metre/metre.sty
+catalogue-version 1.0
+catalogue-date 2007-03-09 22:25:45 +0100
+catalogue-ctan /macros/latex/contrib/metre
+catalogue-license lppl
+
+name mex
+category Package
+revision 617
+shortdesc Polish formats for TeX.
+longdesc MeX is an adaptation of Plain TeX (MeX) and LaTeX209 (LaMeX)
+longdesc formats to the Polish language and to Polish printing customs.
+longdesc It contains a complete set of MetaFont sources of Polish fonts,
+longdesc hyphenation rules for the Polish language and sources of
+longdesc formats.
+depend pl
+depend hyphen-polish
+docfiles size=113967
+ texmf-dist/doc/mex/base/00readme
+ texmf-dist/doc/mex/base/mex.html
+ texmf-dist/doc/mex/base/mexinfo.eng
+ texmf-dist/doc/mex/base/mexinfo.pol
+ texmf-dist/doc/mex/base/qq.eps
+ texmf-dist/doc/mex/base/tstmex.tex
+srcfiles size=43651
+ texmf-dist/source/mex/base/eminst.zip
+ texmf-dist/source/mex/base/istyles.zip
+runfiles size=38355
+ texmf-dist/tex/mex/base/lamex.tex
+ texmf-dist/tex/mex/base/mex.tex
+ texmf-dist/tex/mex/base/mex1.tex
+ texmf-dist/tex/mex/base/mex2.tex
+ texmf-dist/tex/mex/base/mexconf.tex
+ texmf-dist/tex/mex/config/mex.ini
+ texmf-dist/tex/mex/config/pdfmex.ini
+catalogue-version 1.05
+catalogue-date 2007-01-10 13:08:53 +0100
+catalogue-ctan /language/polish/mex105.zip
+catalogue-license pd
+
+name mff
+category Package
+revision 1487
+shortdesc Multiple font formats.
+longdesc A package to provide something similar to Adobe Type 1
+longdesc ‘multiple master’ fonts, but using MetaFont; you specify a
+longdesc font by a set of MetaFont parameters, and TeX makes up an mf
+longdesc file to generate the required font; this package is not
+longdesc integrated with NFSS (or MakeTeXTFM) but it is fun
+docfiles size=132333
+ texmf-dist/doc/latex/mff/mffdoc.dvi
+ texmf-dist/doc/latex/mff/mffdoc.tex
+ texmf-dist/doc/latex/mff/table.tex
+ texmf-dist/doc/latex/mff/test.tex
+srcfiles size=400
+ texmf-dist/source/latex/mff/file_id.diz
+ texmf-dist/source/latex/mff/mff.mfj
+ texmf-dist/source/latex/mff/test.bat
+runfiles size=158914
+ texmf-dist/tex/latex/mff/mfarithm.tex
+ texmf-dist/tex/latex/mff/mfcorfnt.tex
+ texmf-dist/tex/latex/mff/mfdcdata.tex
+ texmf-dist/tex/latex/mff/mff.sty
+ texmf-dist/tex/latex/mff/mfsauter.tex
+ texmf-dist/tex/latex/mff/mftricks.tex
+catalogue-version
+catalogue-date 2007-07-22 14:16:32 +0200
+catalogue-ctan /macros/latex/contrib/mff
+catalogue-license unknown
+
+name mflogo
+category Package
+revision 1487
+shortdesc LaTeX support for MetaFont logo fonts.
+longdesc LaTeX package and font definition file to access the Knuthian
+longdesc mflogo fonts described in `The MetaFontbook' and to typeset the
+longdesc MetaFont logos in LaTeX documents.
+execute addMixedMap mflogo.map
+docfiles size=16348
+ texmf-dist/doc/latex/mflogo/mflogo.dvi
+srcfiles size=24782
+ texmf-dist/source/latex/mflogo/CATALOGUE
+ texmf-dist/source/latex/mflogo/Makefile
+ texmf-dist/source/latex/mflogo/README
+ texmf-dist/source/latex/mflogo/mflogo.dtx
+ texmf-dist/source/latex/mflogo/mflogo.ins
+runfiles size=49534
+ texmf-dist/fonts/afm/hoekwater/mflogo/logo10.afm
+ texmf-dist/fonts/afm/hoekwater/mflogo/logo8.afm
+ texmf-dist/fonts/afm/hoekwater/mflogo/logo9.afm
+ texmf-dist/fonts/afm/hoekwater/mflogo/logobf10.afm
+ texmf-dist/fonts/afm/hoekwater/mflogo/logod10.afm
+ texmf-dist/fonts/afm/hoekwater/mflogo/logosl10.afm
+ texmf-dist/fonts/afm/hoekwater/mflogo/logosl8.afm
+ texmf-dist/fonts/afm/hoekwater/mflogo/logosl9.afm
+ texmf-dist/fonts/map/dvips/mflogo/mflogo.map
+ texmf-dist/fonts/source/public/mflogo/flogo.mf
+ texmf-dist/fonts/source/public/mflogo/logo.mf
+ texmf-dist/fonts/source/public/mflogo/logo10.mf
+ texmf-dist/fonts/source/public/mflogo/logo8.mf
+ texmf-dist/fonts/source/public/mflogo/logo9.mf
+ texmf-dist/fonts/source/public/mflogo/logobf10.mf
+ texmf-dist/fonts/source/public/mflogo/logod10.mf
+ texmf-dist/fonts/source/public/mflogo/logosl10.mf
+ texmf-dist/fonts/source/public/mflogo/logosl8.mf
+ texmf-dist/fonts/source/public/mflogo/logosl9.mf
+ texmf-dist/fonts/source/public/mflogo/nlogo.mf
+ texmf-dist/fonts/source/public/mflogo/sklogo.mf
+ texmf-dist/fonts/tfm/public/mflogo/logo10.tfm
+ texmf-dist/fonts/tfm/public/mflogo/logo8.tfm
+ texmf-dist/fonts/tfm/public/mflogo/logo9.tfm
+ texmf-dist/fonts/tfm/public/mflogo/logobf10.tfm
+ texmf-dist/fonts/tfm/public/mflogo/logod10.tfm
+ texmf-dist/fonts/tfm/public/mflogo/logosl10.tfm
+ texmf-dist/fonts/tfm/public/mflogo/logosl8.tfm
+ texmf-dist/fonts/tfm/public/mflogo/logosl9.tfm
+ texmf-dist/fonts/type1/hoekwater/mflogo/logo10.pfb
+ texmf-dist/fonts/type1/hoekwater/mflogo/logo8.pfb
+ texmf-dist/fonts/type1/hoekwater/mflogo/logo9.pfb
+ texmf-dist/fonts/type1/hoekwater/mflogo/logobf10.pfb
+ texmf-dist/fonts/type1/hoekwater/mflogo/logod10.pfb
+ texmf-dist/fonts/type1/hoekwater/mflogo/logosl10.pfb
+ texmf-dist/fonts/type1/hoekwater/mflogo/logosl8.pfb
+ texmf-dist/fonts/type1/hoekwater/mflogo/logosl9.pfb
+ texmf-dist/tex/latex/mflogo/mflogo.sty
+ texmf-dist/tex/latex/mflogo/ulogo.fd
+catalogue-version
+catalogue-date 2007-01-04 14:33:27 +0100
+catalogue-ctan /macros/latex/contrib/mflogo
+catalogue-license lppl
+
+name mfnfss
+category Package
+revision 1088
+shortdesc Packages to typeset oldgerman and pandora fonts in LaTeX.
+longdesc This bundle contains two packages: – oldgerm, a package to
+longdesc typeset with old german fonts designed by Yannis Haralambous.
+longdesc – pandora, a package to typeset with Pandora fonts designed
+longdesc by Neena Billawala. Note that support for the Pandora fonts is
+longdesc also available via the pandora-latex package.
+srcfiles size=48227
+ texmf-dist/source/latex/mfnfss/changes.txt
+ texmf-dist/source/latex/mfnfss/manifest.txt
+ texmf-dist/source/latex/mfnfss/oldgerm.dtx
+ texmf-dist/source/latex/mfnfss/oldgerm.ins
+ texmf-dist/source/latex/mfnfss/readme.txt
+runfiles size=8779
+ texmf-dist/tex/latex/mfnfss/oldgerm.sty
+ texmf-dist/tex/latex/mfnfss/ot1panr.fd
+ texmf-dist/tex/latex/mfnfss/ot1pss.fd
+ texmf-dist/tex/latex/mfnfss/uyfrak.fd
+ texmf-dist/tex/latex/mfnfss/uygoth.fd
+ texmf-dist/tex/latex/mfnfss/uyinit.fd
+ texmf-dist/tex/latex/mfnfss/uyswab.fd
+catalogue-version
+catalogue-date 2007-01-10 13:08:53 +0100
+catalogue-ctan /macros/latex/contrib/mfnfss
+catalogue-license lppl
+
+name mfpic
+category Package
+revision 1747
+shortdesc Draw MetaFont/Post pictures from (La)TeX commands.
+longdesc Mfpic is a scheme for producing pictures from (La)TeX commands.
+longdesc Commands \mfpic and \endmfpic (in LaTeX, the mfpic environment)
+longdesc enclose a group in which drawing commands may be placed. The
+longdesc commands generate a Meta-language file, which may be processed
+longdesc by Metapost (or even Metafont). The resulting image file will
+longdesc be read back in to the document to place the picture at the
+longdesc point where the original (La)TeX commands appeared. Note that
+longdesc the ability to use MetaPost here means that the package works
+longdesc equally well in LaTeX and PDFLaTeX.
+docfiles size=1596354
+ texmf-dist/doc/generic/mfpic/README details="Readme"
+ texmf-dist/doc/generic/mfpic/changes.txt
+ texmf-dist/doc/generic/mfpic/coil.mps
+ texmf-dist/doc/generic/mfpic/data.dat
+ texmf-dist/doc/generic/mfpic/forfun.tex
+ texmf-dist/doc/generic/mfpic/install.txt
+ texmf-dist/doc/generic/mfpic/lapictures.tex
+ texmf-dist/doc/generic/mfpic/mfpcard.pdf details="Quick reference:" language="en"
+ texmf-dist/doc/generic/mfpic/mfpcard.tex
+ texmf-dist/doc/generic/mfpic/mfpdoc.sty
+ texmf-dist/doc/generic/mfpic/mfpguide.pdf details="Short introduction:" language="en"
+ texmf-dist/doc/generic/mfpic/mfpguide.tex
+ texmf-dist/doc/generic/mfpic/mfpman.pdf details="Mfpic manual:" language="en"
+ texmf-dist/doc/generic/mfpic/mfpman.tex
+ texmf-dist/doc/generic/mfpic/pictures.tex
+srcfiles size=588944
+ texmf-dist/source/generic/mfpic/grafbase.dtx
+ texmf-dist/source/generic/mfpic/mfpic.dtx
+ texmf-dist/source/generic/mfpic/mfpic.ins
+runfiles size=257467
+ texmf-dist/metafont/mfpic/grafbase.mf
+ texmf-dist/metapost/mfpic/dvipsnam.mp
+ texmf-dist/metapost/mfpic/grafbase.mp
+ texmf-dist/tex/generic/mfpic/mfpic.sty
+ texmf-dist/tex/generic/mfpic/mfpic.tex
+ texmf-dist/tex/generic/mfpic/mfppatch.tex
+catalogue-version 0.9
+catalogue-date 2007-01-10 13:08:53 +0100
+catalogue-ctan /graphics/mfpic
+catalogue-license lppl
+
+name mft
+category Package
+revision 91
+runfiles size=17820
+ texmf-dist/mft/base/README
+ texmf-dist/mft/base/cmbase.mft
+ texmf-dist/mft/base/e.mft
+ texmf-dist/mft/base/mplain.mft
+ texmf-dist/mft/base/pl.mft
+ texmf-dist/mft/base/plain.mft
+
+name mftinc
+category Package
+revision 1089
+shortdesc Pretty-print Metafont source.
+longdesc The mft program pretty-prints Metafont source code into a TeX
+longdesc file. The mftinc package facilitates incorporating such files
+longdesc into a LaTeX2e document. In addition, mftinc provides routines
+longdesc for improved comment formatting and for typesetting font
+longdesc tables.
+docfiles size=291638
+ texmf-dist/doc/latex/mftinc/README details="Readme"
+ texmf-dist/doc/latex/mftinc/mftinc.pdf details="Package documentation"
+srcfiles size=59611
+ texmf-dist/source/latex/mftinc/mftinc.dtx
+ texmf-dist/source/latex/mftinc/mftinc.ins
+runfiles size=6920
+ texmf-dist/tex/latex/mftinc/mftinc.sty
+catalogue-version 1.0a
+catalogue-date 2007-01-11 00:21:49 +0100
+catalogue-ctan /macros/latex/contrib/mftinc
+catalogue-license lppl
+
+name mftoeps
+category Package
+revision 604
+srcfiles size=26055
+ texmf-dist/source/metafont/mftoeps/0mftoeps.doc
+ texmf-dist/source/metafont/mftoeps/m2esamp/0m2esamp.doc
+ texmf-dist/source/metafont/mftoeps/m2esamp/clipcir.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/clipsqu.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/holeclip.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/holeclip.tex
+ texmf-dist/source/metafont/mftoeps/m2esamp/holefill.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/polygons.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/rectan.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/rectan_.bat
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample1a.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample1b.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample2a.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample2b.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample2c.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample2d.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample2e.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample3.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample4.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/sample5.mf
+ texmf-dist/source/metafont/mftoeps/m2esamp/stereo.mf
+runfiles size=27356
+ texmf-dist/metafont/mftoeps/mftoeps.mf
+
+name mh
+category Package
+revision 1090
+shortdesc The MH bundle
+longdesc The mh bundle is a series of packages designed to enhance the
+longdesc appearance of documents containing a lot of math. The main
+longdesc backbone is amsmath, so those unfamiliar with this required
+longdesc part of the LaTeX system will probably not find the packages
+longdesc very useful. Component parts of the bundle are empheq,
+longdesc mathtools and mhsetup; an obsolete version of empheq (empheq07)
+longdesc is also maintained with the package, for the benefit of older
+longdesc documents. The empheq package is a visual markup extension of
+longdesc amsmath. Empheq allows sophisticated boxing and other marking
+longdesc of multi-line maths displays, and fixes problems with ntheorem
+longdesc package place end-of-theorem markers. The mathtools package
+longdesc provides many useful tools for mathematical typesetting. It
+longdesc fixes various deficiencies of amsmath and standard LaTeX. The
+longdesc mhsetup package defines various programming tools needed by
+longdesc both empheq and mathtools.
+docfiles size=570594
+ texmf-dist/doc/latex/mh/README
+ texmf-dist/doc/latex/mh/empheq.pdf
+ texmf-dist/doc/latex/mh/empheq07.pdf
+ texmf-dist/doc/latex/mh/mathtools.pdf
+ texmf-dist/doc/latex/mh/mhsetup.pdf
+srcfiles size=338322
+ texmf-dist/source/latex/mh/empheq.dtx
+ texmf-dist/source/latex/mh/empheq.ins
+ texmf-dist/source/latex/mh/empheq07.dtx
+ texmf-dist/source/latex/mh/empheq07.ins
+ texmf-dist/source/latex/mh/mathtools.dtx
+ texmf-dist/source/latex/mh/mathtools.ins
+ texmf-dist/source/latex/mh/mhsetup.dtx
+ texmf-dist/source/latex/mh/mhsetup.ins
+runfiles size=107128
+ texmf-dist/tex/latex/mh/empheq.sty
+ texmf-dist/tex/latex/mh/empheq07.sty
+ texmf-dist/tex/latex/mh/mathtools.sty
+ texmf-dist/tex/latex/mh/mhsetup.sty
+ texmf-dist/tex/latex/mh/ntheorem.fix
+catalogue-version
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/mh
+catalogue-license lppl
+
+name mhchem
+category Package
+revision 4328
+shortdesc Typeset chemical formulae/equations and Risk and Safety phrases.
+longdesc Currently, the mhchem bundle consists of two packages: mhchem
+longdesc and rsphrase. The mhchem package provides two commands: one for
+longdesc typesetting chemical molecular formulae and one for typesetting
+longdesc chemical equations with these formulae. The rsphrase package
+longdesc contains the text of all official Risk and Safety (R and S)
+longdesc Phrases that are used to label chemicals. At the time being,
+longdesc these phrases are available in Danish, English, French, German
+longdesc (current spelling), and Spanish.
+docfiles size=510450
+ texmf-dist/doc/latex/mhchem/legal.txt
+ texmf-dist/doc/latex/mhchem/mhchem.pdf details="Package documentation"
+runfiles size=167198
+ texmf-dist/tex/latex/mhchem/mhchem.sty
+ texmf-dist/tex/latex/mhchem/rsphrase.sty
+catalogue-version 3.07
+catalogue-date 2007-05-20 02:39:28 +0200
+catalogue-ctan /macros/latex/contrib/mhchem
+catalogue-license lppl
+
+name mhequ
+category Package
+revision 1487
+shortdesc Multicolumn equations, tags, labels, sub-numbering.
+longdesc MHequ simplifies creating multi-column equation environments,
+longdesc and tagging the equations therein. It supports sub-numbers of
+longdesc blocks of equations (like (1.2a), (1.2b), etc) and references
+longdesc to each equation individually (1.2a) or to the whole block
+longdesc (1.2). The labels can be shown in draft mode. Comments in the
+longdesc package itself describe usage.
+docfiles size=6904
+ texmf-dist/doc/latex/mhequ/example.dvi
+ texmf-dist/doc/latex/mhequ/example.tex
+runfiles size=9666
+ texmf-dist/tex/latex/mhequ/mhequ.sty
+catalogue-version 1.5
+catalogue-date 2007-01-11 00:21:49 +0100
+catalogue-ctan /macros/latex/contrib/mhequ
+catalogue-license dfsg
+
+name mhs
+category Package
+revision 1093
+shortdesc Historical mathematics.
+longdesc This package provides a collection of macros for historical
+longdesc descriptions of mathematicians; the macros provide full names
+longdesc and birth and death dates of significant mathematicians.
+runfiles size=135362
+ texmf-dist/tex/latex/mhs/mhs.sty
+catalogue-version 1.05i
+catalogue-date 2007-01-21 12:47:16 +0100
+catalogue-ctan /macros/latex/contrib/mhs/mhs.sty
+catalogue-license other
+
+name microtype
+category Package
+revision 4600
+shortdesc An interface to the micro-typographic extensions of pdfTeX
+longdesc The 'microtype' package provides a LaTeX interface to pdfTeX's
+longdesc micro-typographic extensions: character protrusion and font
+longdesc expansion. The package allows you to restrict character
+longdesc protrusion and/or font expansion to a certain set of fonts, or
+longdesc to certain parts of the document (for example, based on
+longdesc selected language), and to configure micro-typographic aspects
+longdesc of the fonts in a straight-forward and flexible way. Settings
+longdesc for various fonts are provided. The bundle also provides a
+longdesc letterspace package; this improves on the alternatives
+longdesc (letterspacing and soul), and also provides a means of
+longdesc protecting ligatures notably those in fraktur fonts—useful in
+longdesc fraktur fonts and the like. Note: Font expansion and character
+longdesc protrusion only works with the pdfTeX compiler, at least
+longdesc version 0.14f; version 1.20a is needed for automatic font
+longdesc expansion. With pdfTeX version 1.30, a command is provided for
+longdesc suppressing ligatures.
+docfiles size=1009362
+ texmf-dist/doc/latex/microtype/README details="Package README"
+ texmf-dist/doc/latex/microtype/microtype.pdf details="Package documentation"
+ texmf-dist/doc/latex/microtype/test-microtype.tex
+srcfiles size=509818
+ texmf-dist/source/latex/microtype/microtype.dtx
+ texmf-dist/source/latex/microtype/microtype.ins
+runfiles size=246700
+ texmf-dist/tex/latex/microtype/letterspace.sty
+ texmf-dist/tex/latex/microtype/microtype.cfg
+ texmf-dist/tex/latex/microtype/microtype.sty
+ texmf-dist/tex/latex/microtype/mt-bch.cfg
+ texmf-dist/tex/latex/microtype/mt-blg.cfg
+ texmf-dist/tex/latex/microtype/mt-cmr.cfg
+ texmf-dist/tex/latex/microtype/mt-euf.cfg
+ texmf-dist/tex/latex/microtype/mt-eur.cfg
+ texmf-dist/tex/latex/microtype/mt-euroitc.cfg
+ texmf-dist/tex/latex/microtype/mt-eus.cfg
+ texmf-dist/tex/latex/microtype/mt-msa.cfg
+ texmf-dist/tex/latex/microtype/mt-msb.cfg
+ texmf-dist/tex/latex/microtype/mt-mvs.cfg
+ texmf-dist/tex/latex/microtype/mt-pad.cfg
+ texmf-dist/tex/latex/microtype/mt-pmn.cfg
+ texmf-dist/tex/latex/microtype/mt-ppl.cfg
+ texmf-dist/tex/latex/microtype/mt-ptm.cfg
+ texmf-dist/tex/latex/microtype/mt-ugm.cfg
+ texmf-dist/tex/latex/microtype/mt-zpeu.cfg
+catalogue-version 2.2
+catalogue-date 2007-07-14 22:40:40 +0200
+catalogue-ctan /macros/latex/contrib/microtype
+catalogue-license lppl
+
+name midnight
+category Package
+revision 1487
+shortdesc A set of useful macro tools.
+longdesc Included are: – quire: making booklets, etc.; – gloss:
+longdesc vertically align words in consecutive sentences; – loop: a
+longdesc looping construct; – dolines: 'meta'-macros to separate
+longdesc arguments by newlines; – labels: address labels and bulk mail
+longdesc letters; – styledef: selectively input part of a file; and
+longdesc – border: borders around boxes.
+docfiles size=193847
+ texmf-dist/doc/generic/midnight/border.doc
+ texmf-dist/doc/generic/midnight/border.dvi
+ texmf-dist/doc/generic/midnight/dolines.doc
+ texmf-dist/doc/generic/midnight/dolines.dvi
+ texmf-dist/doc/generic/midnight/gloss.doc
+ texmf-dist/doc/generic/midnight/gloss.dvi
+ texmf-dist/doc/generic/midnight/labels.doc
+ texmf-dist/doc/generic/midnight/labels.dvi
+ texmf-dist/doc/generic/midnight/loop.doc
+ texmf-dist/doc/generic/midnight/loop.dvi
+ texmf-dist/doc/generic/midnight/quire.doc
+ texmf-dist/doc/generic/midnight/quire.dvi
+ texmf-dist/doc/generic/midnight/styledef.doc
+ texmf-dist/doc/generic/midnight/styledef.dvi
+srcfiles size=969
+ texmf-dist/source/generic/midnight/00readme.txt
+ texmf-dist/source/generic/midnight/Index
+runfiles size=59055
+ texmf-dist/tex/generic/midnight/answers.tex
+ texmf-dist/tex/generic/midnight/border.tex
+ texmf-dist/tex/generic/midnight/dolines.tex
+ texmf-dist/tex/generic/midnight/gloss.tex
+ texmf-dist/tex/generic/midnight/index.tex
+ texmf-dist/tex/generic/midnight/labels.tex
+ texmf-dist/tex/generic/midnight/loop.tex
+ texmf-dist/tex/generic/midnight/quire.tex
+ texmf-dist/tex/generic/midnight/styledef.tex
+catalogue-version
+catalogue-date 2006-12-02 12:02:27 +0100
+catalogue-ctan /macros/generic/midnight
+catalogue-license unknown
+
+name miller
+category Package
+revision 1095
+shortdesc Typeset miller indices.
+longdesc Typeset miller indices, e.g., <1-20>, that are used in material
+longdesc science with an easy syntax. Minus signs are printed as bar
+longdesc above the corresponding number.
+docfiles size=280054
+ texmf-dist/doc/latex/miller/ChangeLog
+ texmf-dist/doc/latex/miller/README
+ texmf-dist/doc/latex/miller/miller-v.tex
+ texmf-dist/doc/latex/miller/miller.pdf
+ texmf-dist/doc/latex/miller/miller.xml
+ texmf-dist/doc/latex/miller/millertest.tex
+srcfiles size=10324
+ texmf-dist/source/latex/miller/Makefile
+ texmf-dist/source/latex/miller/miller.dtx
+ texmf-dist/source/latex/miller/miller.ins
+runfiles size=2695
+ texmf-dist/tex/latex/miller/miller.sty
+catalogue-version 1.2
+catalogue-date 2007-01-12 00:17:35 +0100
+catalogue-ctan /macros/latex/contrib/miller
+catalogue-license lppl
+
+name minipage-marginpar
+category Package
+revision 1983
+shortdesc Minipages with marginal notes.
+longdesc This package allows \marginpar-commands inside of minipages and
+longdesc other boxes. (It takes another approach than marginnote by
+longdesc Markus Kohm: it saves all \marginpar-commands and typesets them
+longdesc outside (i.e., after) the box.) The package defines an
+longdesc environment minipagewithmarginpars (to be used like
+longdesc minipage)—and the internal commands may be used by other
+longdesc packages to define similar environments or commands.
+docfiles size=182548
+ texmf-dist/doc/latex/minipage-marginpar/README details="README file"
+ texmf-dist/doc/latex/minipage-marginpar/mpgmpar.pdf details="Package documentation" language="de"
+srcfiles size=14480
+ texmf-dist/source/latex/minipage-marginpar/mpgmpar.dtx
+ texmf-dist/source/latex/minipage-marginpar/mpgmpar.ins
+runfiles size=2191
+ texmf-dist/tex/latex/minipage-marginpar/mpgmpar.sty
+catalogue-version v0.2
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/minipage-marginpar
+catalogue-license lppl
+
+name miniplot
+category Package
+revision 1487
+docfiles size=245003
+ texmf-dist/doc/latex/miniplot/disclaimer.txt
+ texmf-dist/doc/latex/miniplot/figures/1.eps
+ texmf-dist/doc/latex/miniplot/figures/2.eps
+ texmf-dist/doc/latex/miniplot/figures/3.eps
+ texmf-dist/doc/latex/miniplot/figures/4.eps
+ texmf-dist/doc/latex/miniplot/figures/wrapMe.eps
+ texmf-dist/doc/latex/miniplot/miniplot.dvi
+ texmf-dist/doc/latex/miniplot/miniplot.tex
+runfiles size=38449
+ texmf-dist/tex/latex/miniplot/miniplot.sty
+
+name minitoc
+category Package
+revision 4622
+shortdesc Produce a table of contents for each chapter, part or section.
+longdesc The minitoc package allows you to add mini-tables-of-contents
+longdesc (minitocs) at the beginning of every chapter, part or section.
+longdesc There is also provision for mini-lists of figures and of
+longdesc tables. At the part level, they are parttocs, partlofs and
+longdesc partlots. If the type of document does not use chapters, the
+longdesc basic provision is section level secttocs, sectlofs and
+longdesc sectlots. The package has provision for language-specific
+longdesc configuration of its own “fixed names”, using .mld files
+longdesc (analagous to babel .ldf files that do that job for LaTeX's own
+longdesc fixed names).
+docfiles size=11213103
+ texmf-dist/doc/latex/minitoc/CATALOG
+ texmf-dist/doc/latex/minitoc/INSTALL
+ texmf-dist/doc/latex/minitoc/README details="Readme"
+ texmf-dist/doc/latex/minitoc/TODO
+ texmf-dist/doc/latex/minitoc/examples/mtc-2c.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-2c.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-2nd.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-2nd.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-3co.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-3co.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-add.bib
+ texmf-dist/doc/latex/minitoc/examples/mtc-add.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-add.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-ads.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-ads.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-amm.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-amm.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-apx.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-apx.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-art.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-art.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-bk.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-bk.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-bo.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-bo.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-ch0.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-ch0.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-cri.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-cri.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-fko.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-fko.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-fo1.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-fo1.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-fo2.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-fo2.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-gap.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-gap.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-hi1.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-hi1.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-hi2.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-hi2.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-hia.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-hia.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-hir.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-hir.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-hop.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-hop.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-liv.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-liv.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-mem.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-mem.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-mm1.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-mm1.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-mu.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-mu.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-nom.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-nom.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-ocf.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-ocf.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-ofs.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-ofs.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-sbf.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-sbf.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-scr.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-scr.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-syn.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-syn.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-tbi.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-tbi.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-tlc.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-tlc.tex
+ texmf-dist/doc/latex/minitoc/examples/mtc-tsf.pdf
+ texmf-dist/doc/latex/minitoc/examples/mtc-tsf.tex
+ texmf-dist/doc/latex/minitoc/fminitoc.lan
+ texmf-dist/doc/latex/minitoc/fminitoc.pdf details="Package documentation, in French" language="fr"
+ texmf-dist/doc/latex/minitoc/franc.sty
+ texmf-dist/doc/latex/minitoc/frbib.sty
+ texmf-dist/doc/latex/minitoc/frnew.sty
+ texmf-dist/doc/latex/minitoc/lamed.eps
+ texmf-dist/doc/latex/minitoc/lamed.pdf
+ texmf-dist/doc/latex/minitoc/lamed.tex
+ texmf-dist/doc/latex/minitoc/minitoc.bug
+ texmf-dist/doc/latex/minitoc/minitoc.l
+ texmf-dist/doc/latex/minitoc/minitoc.lan
+ texmf-dist/doc/latex/minitoc/minitoc.pdf details="Package documentation, in English" language="en"
+ texmf-dist/doc/latex/minitoc/minitoc.pre
+ texmf-dist/doc/latex/minitoc/minitoc.sum
+srcfiles size=2428041
+ texmf-dist/source/latex/minitoc/fminitoc.dtx
+ texmf-dist/source/latex/minitoc/minitoc.dtx
+ texmf-dist/source/latex/minitoc/minitoc.ins
+runfiles size=822355
+ texmf-dist/bibtex/bib/minitoc/fminitoc.bib
+ texmf-dist/bibtex/bib/minitoc/minitoc.bib
+ texmf-dist/bibtex/bst/minitoc/en-mtc.bst
+ texmf-dist/bibtex/bst/minitoc/fr-mtc.bst
+ texmf-dist/makeindex/minitoc/fminitoc.ist
+ texmf-dist/makeindex/minitoc/minitoc.ist
+ texmf-dist/scripts/minitoc/cmk
+ texmf-dist/scripts/minitoc/emk
+ texmf-dist/scripts/minitoc/fmk
+ texmf-dist/scripts/minitoc/imk
+ texmf-dist/scripts/minitoc/pmk
+ texmf-dist/scripts/minitoc/rmk
+ texmf-dist/scripts/minitoc/tmk
+ texmf-dist/scripts/minitoc/xmk
+ texmf-dist/tex/latex/minitoc/UKenglish.mld
+ texmf-dist/tex/latex/minitoc/USenglish.mld
+ texmf-dist/tex/latex/minitoc/acadian.mld
+ texmf-dist/tex/latex/minitoc/acadien.mld
+ texmf-dist/tex/latex/minitoc/afrikaan.mld
+ texmf-dist/tex/latex/minitoc/afrikaans.mld
+ texmf-dist/tex/latex/minitoc/albanian.mld
+ texmf-dist/tex/latex/minitoc/american.mld
+ texmf-dist/tex/latex/minitoc/arab.mld
+ texmf-dist/tex/latex/minitoc/arab2.mld
+ texmf-dist/tex/latex/minitoc/arabi.mld
+ texmf-dist/tex/latex/minitoc/arabic.mld
+ texmf-dist/tex/latex/minitoc/armenian.mld
+ texmf-dist/tex/latex/minitoc/australian.mld
+ texmf-dist/tex/latex/minitoc/austrian.mld
+ texmf-dist/tex/latex/minitoc/bahasa.mld
+ texmf-dist/tex/latex/minitoc/bahasai.mld
+ texmf-dist/tex/latex/minitoc/bahasam.mld
+ texmf-dist/tex/latex/minitoc/bangla.mld
+ texmf-dist/tex/latex/minitoc/basque.mld
+ texmf-dist/tex/latex/minitoc/bicig.mld
+ texmf-dist/tex/latex/minitoc/bicig2.mld
+ texmf-dist/tex/latex/minitoc/bicig3.mld
+ texmf-dist/tex/latex/minitoc/bithe.mld
+ texmf-dist/tex/latex/minitoc/brazil.mld
+ texmf-dist/tex/latex/minitoc/brazilian.mld
+ texmf-dist/tex/latex/minitoc/breton.mld
+ texmf-dist/tex/latex/minitoc/british.mld
+ texmf-dist/tex/latex/minitoc/bulgarian.mld
+ texmf-dist/tex/latex/minitoc/bulgarianb.mld
+ texmf-dist/tex/latex/minitoc/buryat.mld
+ texmf-dist/tex/latex/minitoc/buryat2.mld
+ texmf-dist/tex/latex/minitoc/canadian.mld
+ texmf-dist/tex/latex/minitoc/canadien.mld
+ texmf-dist/tex/latex/minitoc/castillan.mld
+ texmf-dist/tex/latex/minitoc/castillian.mld
+ texmf-dist/tex/latex/minitoc/catalan.mld
+ texmf-dist/tex/latex/minitoc/chinese1.mld
+ texmf-dist/tex/latex/minitoc/chinese1.mlo
+ texmf-dist/tex/latex/minitoc/chinese2.mld
+ texmf-dist/tex/latex/minitoc/chinese2.mlo
+ texmf-dist/tex/latex/minitoc/croatian.mld
+ texmf-dist/tex/latex/minitoc/czech.mld
+ texmf-dist/tex/latex/minitoc/danish.mld
+ texmf-dist/tex/latex/minitoc/devanagari.mld
+ texmf-dist/tex/latex/minitoc/dutch.mld
+ texmf-dist/tex/latex/minitoc/english.mld
+ texmf-dist/tex/latex/minitoc/english1.mld
+ texmf-dist/tex/latex/minitoc/english2.mld
+ texmf-dist/tex/latex/minitoc/esperant.mld
+ texmf-dist/tex/latex/minitoc/esperanto.mld
+ texmf-dist/tex/latex/minitoc/estonian.mld
+ texmf-dist/tex/latex/minitoc/ethiopia.mld
+ texmf-dist/tex/latex/minitoc/ethiopian.mld
+ texmf-dist/tex/latex/minitoc/ethiopian2.mld
+ texmf-dist/tex/latex/minitoc/farsi1.mld
+ texmf-dist/tex/latex/minitoc/farsi1.mlo
+ texmf-dist/tex/latex/minitoc/farsi2.mld
+ texmf-dist/tex/latex/minitoc/farsi2.mlo
+ texmf-dist/tex/latex/minitoc/farsi3.mld
+ texmf-dist/tex/latex/minitoc/finnish.mld
+ texmf-dist/tex/latex/minitoc/finnish2.mld
+ texmf-dist/tex/latex/minitoc/francais.mld
+ texmf-dist/tex/latex/minitoc/french.mld
+ texmf-dist/tex/latex/minitoc/french1.mld
+ texmf-dist/tex/latex/minitoc/french2.mld
+ texmf-dist/tex/latex/minitoc/frenchb.mld
+ texmf-dist/tex/latex/minitoc/frenchle.mld
+ texmf-dist/tex/latex/minitoc/frenchpro.mld
+ texmf-dist/tex/latex/minitoc/galician.mld
+ texmf-dist/tex/latex/minitoc/german.mld
+ texmf-dist/tex/latex/minitoc/germanb.mld
+ texmf-dist/tex/latex/minitoc/germanb2.mld
+ texmf-dist/tex/latex/minitoc/greek-mono.mld
+ texmf-dist/tex/latex/minitoc/greek-polydemo.mld
+ texmf-dist/tex/latex/minitoc/greek-polykatha.mld
+ texmf-dist/tex/latex/minitoc/greek.mld
+ texmf-dist/tex/latex/minitoc/guarani.mld
+ texmf-dist/tex/latex/minitoc/hangul-u8.mld
+ texmf-dist/tex/latex/minitoc/hangul-u8.mlo
+ texmf-dist/tex/latex/minitoc/hangul1.mld
+ texmf-dist/tex/latex/minitoc/hangul1.mlo
+ texmf-dist/tex/latex/minitoc/hangul2.mld
+ texmf-dist/tex/latex/minitoc/hangul2.mlo
+ texmf-dist/tex/latex/minitoc/hangul3.mld
+ texmf-dist/tex/latex/minitoc/hangul3.mlo
+ texmf-dist/tex/latex/minitoc/hangul4.mld
+ texmf-dist/tex/latex/minitoc/hangul4.mlo
+ texmf-dist/tex/latex/minitoc/hanja-u8.mld
+ texmf-dist/tex/latex/minitoc/hanja-u8.mlo
+ texmf-dist/tex/latex/minitoc/hanja1.mld
+ texmf-dist/tex/latex/minitoc/hanja1.mlo
+ texmf-dist/tex/latex/minitoc/hanja2.mld
+ texmf-dist/tex/latex/minitoc/hanja2.mlo
+ texmf-dist/tex/latex/minitoc/hebrew.mld
+ texmf-dist/tex/latex/minitoc/hebrew2.mld
+ texmf-dist/tex/latex/minitoc/hindi-modern.mld
+ texmf-dist/tex/latex/minitoc/hindi.mld
+ texmf-dist/tex/latex/minitoc/hungarian.mld
+ texmf-dist/tex/latex/minitoc/icelandic.mld
+ texmf-dist/tex/latex/minitoc/indon.mld
+ texmf-dist/tex/latex/minitoc/indonesian.mld
+ texmf-dist/tex/latex/minitoc/interlingua.mld
+ texmf-dist/tex/latex/minitoc/irish.mld
+ texmf-dist/tex/latex/minitoc/italian.mld
+ texmf-dist/tex/latex/minitoc/italian2.mld
+ texmf-dist/tex/latex/minitoc/japanese.mld
+ texmf-dist/tex/latex/minitoc/japanese.mlo
+ texmf-dist/tex/latex/minitoc/japanese2.mld
+ texmf-dist/tex/latex/minitoc/japanese2.mlo
+ texmf-dist/tex/latex/minitoc/japanese3.mld
+ texmf-dist/tex/latex/minitoc/japanese3.mlo
+ texmf-dist/tex/latex/minitoc/japanese4.mld
+ texmf-dist/tex/latex/minitoc/japanese4.mlo
+ texmf-dist/tex/latex/minitoc/japanese5.mld
+ texmf-dist/tex/latex/minitoc/japanese5.mlo
+ texmf-dist/tex/latex/minitoc/japanese6.mld
+ texmf-dist/tex/latex/minitoc/japanese6.mlo
+ texmf-dist/tex/latex/minitoc/kannada.mld
+ texmf-dist/tex/latex/minitoc/khalkha.mld
+ texmf-dist/tex/latex/minitoc/latin.mld
+ texmf-dist/tex/latex/minitoc/latin2.mld
+ texmf-dist/tex/latex/minitoc/latinc.mld
+ texmf-dist/tex/latex/minitoc/latinc2.mld
+ texmf-dist/tex/latex/minitoc/latvian.mld
+ texmf-dist/tex/latex/minitoc/latvian2.mld
+ texmf-dist/tex/latex/minitoc/letton.mld
+ texmf-dist/tex/latex/minitoc/letton2.mld
+ texmf-dist/tex/latex/minitoc/lithuanian.mld
+ texmf-dist/tex/latex/minitoc/lithuanian2.mld
+ texmf-dist/tex/latex/minitoc/lowersorbian.mld
+ texmf-dist/tex/latex/minitoc/lsorbian.mld
+ texmf-dist/tex/latex/minitoc/magyar.mld
+ texmf-dist/tex/latex/minitoc/magyar2.mld
+ texmf-dist/tex/latex/minitoc/magyar3.mld
+ texmf-dist/tex/latex/minitoc/malay.mld
+ texmf-dist/tex/latex/minitoc/malayalam-keli.mld
+ texmf-dist/tex/latex/minitoc/malayalam-omega.mld
+ texmf-dist/tex/latex/minitoc/malayalam-omega.mlo
+ texmf-dist/tex/latex/minitoc/malayalam-rachana.mld
+ texmf-dist/tex/latex/minitoc/malayalam-rachana2.mld
+ texmf-dist/tex/latex/minitoc/manju.mld
+ texmf-dist/tex/latex/minitoc/meyalu.mld
+ texmf-dist/tex/latex/minitoc/minitoc.sty
+ texmf-dist/tex/latex/minitoc/mongol.mld
+ texmf-dist/tex/latex/minitoc/mongolb.mld
+ texmf-dist/tex/latex/minitoc/mongolian.mld
+ texmf-dist/tex/latex/minitoc/mtcmess.sty
+ texmf-dist/tex/latex/minitoc/mtcoff.sty
+ texmf-dist/tex/latex/minitoc/mtcpatchmem.sty
+ texmf-dist/tex/latex/minitoc/naustrian.mld
+ texmf-dist/tex/latex/minitoc/newzealand.mld
+ texmf-dist/tex/latex/minitoc/ngerman.mld
+ texmf-dist/tex/latex/minitoc/ngermanb.mld
+ texmf-dist/tex/latex/minitoc/ngermanb2.mld
+ texmf-dist/tex/latex/minitoc/norsk.mld
+ texmf-dist/tex/latex/minitoc/norsk2.mld
+ texmf-dist/tex/latex/minitoc/nynorsk.mld
+ texmf-dist/tex/latex/minitoc/nynorsk2.mld
+ texmf-dist/tex/latex/minitoc/polish.mld
+ texmf-dist/tex/latex/minitoc/polish2.mld
+ texmf-dist/tex/latex/minitoc/polski.mld
+ texmf-dist/tex/latex/minitoc/portuges.mld
+ texmf-dist/tex/latex/minitoc/portuguese.mld
+ texmf-dist/tex/latex/minitoc/romanian.mld
+ texmf-dist/tex/latex/minitoc/romanian2.mld
+ texmf-dist/tex/latex/minitoc/romanian3.mld
+ texmf-dist/tex/latex/minitoc/russian-cca.mld
+ texmf-dist/tex/latex/minitoc/russian-cca.mlo
+ texmf-dist/tex/latex/minitoc/russian-cca1.mld
+ texmf-dist/tex/latex/minitoc/russian-cca1.mlo
+ texmf-dist/tex/latex/minitoc/russian-lh.mld
+ texmf-dist/tex/latex/minitoc/russian-lh.mlo
+ texmf-dist/tex/latex/minitoc/russian-lhcyralt.mld
+ texmf-dist/tex/latex/minitoc/russian-lhcyralt.mlo
+ texmf-dist/tex/latex/minitoc/russian-lhcyrkoi.mld
+ texmf-dist/tex/latex/minitoc/russian-lhcyrkoi.mlo
+ texmf-dist/tex/latex/minitoc/russian-lhcyrwin.mld
+ texmf-dist/tex/latex/minitoc/russian-lhcyrwin.mlo
+ texmf-dist/tex/latex/minitoc/russian.mld
+ texmf-dist/tex/latex/minitoc/russian2m.mld
+ texmf-dist/tex/latex/minitoc/russian2o.mld
+ texmf-dist/tex/latex/minitoc/russianb.mld
+ texmf-dist/tex/latex/minitoc/russianc.mld
+ texmf-dist/tex/latex/minitoc/samin.mld
+ texmf-dist/tex/latex/minitoc/scottish.mld
+ texmf-dist/tex/latex/minitoc/serbian.mld
+ texmf-dist/tex/latex/minitoc/serbianc.mld
+ texmf-dist/tex/latex/minitoc/slovak.mld
+ texmf-dist/tex/latex/minitoc/slovene.mld
+ texmf-dist/tex/latex/minitoc/spanish.mld
+ texmf-dist/tex/latex/minitoc/spanish2.mld
+ texmf-dist/tex/latex/minitoc/spanish3.mld
+ texmf-dist/tex/latex/minitoc/spanish4.mld
+ texmf-dist/tex/latex/minitoc/swedish.mld
+ texmf-dist/tex/latex/minitoc/swedish2.mld
+ texmf-dist/tex/latex/minitoc/thai.mld
+ texmf-dist/tex/latex/minitoc/thai.mlo
+ texmf-dist/tex/latex/minitoc/turkish.mld
+ texmf-dist/tex/latex/minitoc/uighur.mld
+ texmf-dist/tex/latex/minitoc/uighur2.mld
+ texmf-dist/tex/latex/minitoc/uighur3.mld
+ texmf-dist/tex/latex/minitoc/ukraineb.mld
+ texmf-dist/tex/latex/minitoc/ukrainian.mld
+ texmf-dist/tex/latex/minitoc/uppersorbian.mld
+ texmf-dist/tex/latex/minitoc/usorbian.mld
+ texmf-dist/tex/latex/minitoc/vietnam.mld
+ texmf-dist/tex/latex/minitoc/vietnamese.mld
+ texmf-dist/tex/latex/minitoc/welsh.mld
+ texmf-dist/tex/latex/minitoc/xalx.mld
+ texmf-dist/tex/latex/minitoc/xalx2.mld
+ texmf-dist/tex/latex/minitoc/xalx3.mld
+catalogue-version 55
+catalogue-date 2007-07-01 23:05:19 +0200
+catalogue-ctan /macros/latex/contrib/minitoc
+catalogue-license lppl
+
+name minutes
+category Package
+revision 4051
+shortdesc Package for writing minutes of meetings.
+longdesc Supports the creation of a collection of minutes. Features
+longdesc include: – Support of tasks (who, schedule, what, time of
+longdesc finishing; – possibility of creating a list of open tasks;
+longdesc – inclusion of open tasks from other minutes; – Support for
+longdesc attachments; – Support of schedule dates (in planning:
+longdesc support for the calendar package); – Different versions
+longdesc (‘secret parts’); and – Macros for votes and decisions
+longdesc (list of decisions).
+docfiles size=359922
+ texmf-dist/doc/latex/minutes/MinStyGd.tex
+ texmf-dist/doc/latex/minutes/Overview.tex
+ texmf-dist/doc/latex/minutes/Protokol.tex
+ texmf-dist/doc/latex/minutes/README details="Readme"
+ texmf-dist/doc/latex/minutes/Sample.cld
+ texmf-dist/doc/latex/minutes/Sample.maf
+ texmf-dist/doc/latex/minutes/Sample.minAtt
+ texmf-dist/doc/latex/minutes/Sample.minCld
+ texmf-dist/doc/latex/minutes/Sample.minDec
+ texmf-dist/doc/latex/minutes/Sample.minTsk
+ texmf-dist/doc/latex/minutes/Sample.mtc
+ texmf-dist/doc/latex/minutes/Sample.mtc1
+ texmf-dist/doc/latex/minutes/Sample.mtc2
+ texmf-dist/doc/latex/minutes/Sample.mtc3
+ texmf-dist/doc/latex/minutes/Sample.mtc4
+ texmf-dist/doc/latex/minutes/Sample.pdf
+ texmf-dist/doc/latex/minutes/Sample.tex
+ texmf-dist/doc/latex/minutes/SampleDE.tex
+ texmf-dist/doc/latex/minutes/SampleEN.tex
+ texmf-dist/doc/latex/minutes/SampleNL.tex
+ texmf-dist/doc/latex/minutes/minutes.pdf details="Package documentation"
+srcfiles size=92457
+ texmf-dist/source/latex/minutes/minutes.dtx
+ texmf-dist/source/latex/minutes/minutes.ins
+runfiles size=31998
+ texmf-dist/tex/latex/minutes/minutes.sty
+catalogue-version 1.8
+catalogue-date 2007-03-15 14:20:55 +0100
+catalogue-ctan /macros/latex/contrib/minutes
+catalogue-license dfsg
+
+name misc
+category Package
+revision 621
+runfiles size=232200
+ texmf-dist/fonts/source/public/misc/black.mf
+ texmf-dist/fonts/source/public/misc/blackaps.mf
+ texmf-dist/fonts/source/public/misc/blackcx.mf
+ texmf-dist/fonts/source/public/misc/blackimagen.mf
+ texmf-dist/fonts/source/public/misc/blacklino.mf
+ texmf-dist/fonts/source/public/misc/blacklj.mf
+ texmf-dist/fonts/source/public/misc/cmman.mf
+ texmf-dist/fonts/source/public/misc/dummy.mf
+ texmf-dist/fonts/source/public/misc/gray.mf
+ texmf-dist/fonts/source/public/misc/grayaps.mf
+ texmf-dist/fonts/source/public/misc/graycx.mf
+ texmf-dist/fonts/source/public/misc/grayf.mf
+ texmf-dist/fonts/source/public/misc/grayimagen.mf
+ texmf-dist/fonts/source/public/misc/grayimagen3.mf
+ texmf-dist/fonts/source/public/misc/grayimagenlight.mf
+ texmf-dist/fonts/source/public/misc/graylj.mf
+ texmf-dist/fonts/source/public/misc/manfnt.mf
+ texmf-dist/fonts/source/public/misc/mfman.mf
+ texmf-dist/fonts/source/public/misc/oneone.mf
+ texmf-dist/fonts/source/public/misc/random.mf
+ texmf-dist/fonts/source/public/misc/slant.mf
+ texmf-dist/fonts/source/public/misc/slantaps4.mf
+ texmf-dist/fonts/source/public/misc/slantcx4.mf
+ texmf-dist/fonts/source/public/misc/slantcx6.mf
+ texmf-dist/fonts/source/public/misc/slantimagen4.mf
+ texmf-dist/fonts/source/public/misc/slantimagen6.mf
+ texmf-dist/fonts/source/public/misc/slantlino4.mf
+ texmf-dist/fonts/source/public/misc/slantlj4.mf
+ texmf-dist/fonts/source/public/misc/slantlj6.mf
+ texmf-dist/fonts/tfm/public/misc/black.tfm
+ texmf-dist/fonts/tfm/public/misc/blackcx.tfm
+ texmf-dist/fonts/tfm/public/misc/cmman.tfm
+ texmf-dist/fonts/tfm/public/misc/dummy.tfm
+ texmf-dist/fonts/tfm/public/misc/gray.tfm
+ texmf-dist/fonts/tfm/public/misc/graycx.tfm
+ texmf-dist/fonts/tfm/public/misc/grayimagen3.tfm
+ texmf-dist/fonts/tfm/public/misc/manfnt.tfm
+ texmf-dist/fonts/tfm/public/misc/oneone.tfm
+ texmf-dist/fonts/tfm/public/misc/slantcx4.tfm
+ texmf-dist/fonts/tfm/public/misc/slantcx6.tfm
+ texmf-dist/omega/ocp/misc/ebcdic.ocp
+ texmf-dist/omega/ocp/misc/id.ocp
+ texmf-dist/omega/otp/misc/ebcdic.otp
+ texmf-dist/omega/otp/misc/id.otp
+ texmf-dist/tex/generic/misc/mproof.tex
+ texmf-dist/tex/generic/misc/null.tex
+ texmf-dist/tex/generic/misc/texnames.sty
+ texmf-dist/tex/plain/misc/idxmac.tex
+ texmf-dist/tex/plain/misc/pdfcolor.tex
+ texmf-dist/tex/plain/misc/placeins.tex
+ texmf-dist/tex/plain/misc/tugboat.def
+ texmf-dist/tex/plain/misc/xepsf.tex
+
+name misc209
+category Package
+revision 1099
+runfiles size=54712
+ texmf-dist/tex/latex/misc209/bar.sty
+ texmf-dist/tex/latex/misc209/bibmods.sty
+ texmf-dist/tex/latex/misc209/example.sty
+ texmf-dist/tex/latex/misc209/hangcaption.sty
+ texmf-dist/tex/latex/misc209/multibox.sty
+ texmf-dist/tex/latex/misc209/multind.sty
+ texmf-dist/tex/latex/misc209/portland.sty
+ texmf-dist/tex/latex/misc209/psboxit.sty
+
+name mkind-english
+category Package
+revision 89
+runfiles size=1427
+ texmf-dist/makeindex/mkind-english/digit.ist
+ texmf-dist/makeindex/mkind-english/letter.ist
+ texmf-dist/makeindex/mkind-english/special.ist
+
+name mkind-german
+category Package
+revision 89
+runfiles size=2925
+ texmf-dist/makeindex/mkind-german/digit.ist
+ texmf-dist/makeindex/mkind-german/special.ist
+ texmf-dist/makeindex/mkind-german/umlaut.ist
+ texmf-dist/makeindex/mkind-german/wb.ist
+
+name mkpattern
+category Package
+revision 4197
+docfiles size=80948
+ texmf-dist/doc/plain/mkpattern/README
+ texmf-dist/doc/plain/mkpattern/mkpatdoc.tex
+ texmf-dist/doc/plain/mkpattern/mkpatter.pdf
+ texmf-dist/doc/plain/mkpattern/mkpattern-exmpl.tex
+runfiles size=14517
+ texmf-dist/tex/plain/mkpattern/mkpatter.tex
+
+name mla-paper
+category Package
+revision 1100
+shortdesc Proper MLA formatting.
+longdesc This package formats articles using the MLA style. The aim is
+longdesc that students and other academics in the humanities should
+longdesc properly typeset their materials with minimal effort on their
+longdesc part.
+docfiles size=3459
+ texmf-dist/doc/latex/mla-paper/README
+runfiles size=4017
+ texmf-dist/tex/latex/mla-paper/mla.sty
+catalogue-version
+catalogue-date 2007-01-12 00:17:35 +0100
+catalogue-ctan /macros/latex/contrib/mla-paper
+catalogue-license bsd
+
+name mlist
+category Package
+revision 5457
+shortdesc Logical markup for lists.
+longdesc The package defines commands that create macros for typesetting
+longdesc vectors, matrices and functions, in a logical way. For example,
+longdesc logical indexing can then be used to refer to elements or
+longdesc arguments without hard-coding the symbols in the document.
+docfiles size=205389
+ texmf-dist/doc/latex/mlist/README details="Readme"
+ texmf-dist/doc/latex/mlist/mlist.pdf details="Package documentation"
+srcfiles size=48086
+ texmf-dist/source/latex/mlist/mlist.dtx
+ texmf-dist/source/latex/mlist/mlist.ins
+runfiles size=9902
+ texmf-dist/tex/latex/mlist/mlist.cfg
+ texmf-dist/tex/latex/mlist/mlist.sty
+catalogue-version 0.5
+catalogue-date 2007-09-18 17:43:29 +0200
+catalogue-ctan /macros/latex/contrib/mlist
+catalogue-license lppl
+
+name mltex
+category Package
+revision 1487
+shortdesc The MLTeX system.
+longdesc MLTeX is a modification of TeX version >=3.0 that allows the
+longdesc hyphenation of words with accented letters using ordinary
+longdesc Computer Modern (CM) fonts. The system is distributed as a TeX
+longdesc change file.
+docfiles size=26696
+ texmf-dist/doc/latex/mltex/README
+ texmf-dist/doc/latex/mltex/mltex.txt
+ texmf-dist/doc/latex/mltex/testmlft.dvi
+ texmf-dist/doc/latex/mltex/testmlft.tex
+ texmf-dist/doc/latex/mltex/testmlsw.dvi
+ texmf-dist/doc/latex/mltex/testmlsw.tex
+runfiles size=22668
+ texmf-dist/tex/latex/mltex/lo1enc.def
+ texmf-dist/tex/latex/mltex/mlltxchg.def
+ texmf-dist/tex/latex/mltex/mltex.sty
+ texmf-dist/tex/mltex/config/mltex.ini
+catalogue-version 2.2
+catalogue-date 2007-01-12 00:17:35 +0100
+catalogue-ctan /systems/generic/mltex
+catalogue-license unknown
+
+name mnhyphn
+category TLCore
+revision 0
+shortdesc Hyphenation patterns for Mongolian.
+longdesc Serves Mongolian written using Cyrillic letters, using T2A-
+longdesc encoded output. (Note that the montex bundle provides
+longdesc hyphenation patterns for its own encoding setup.)
+catalogue-version 1.1
+catalogue-date 2007-03-22 14:19:04 +0100
+catalogue-ctan /language/hyphenation/mnhyphn.tex
+catalogue-license lppl
+
+name mnras
+category Package
+revision 1487
+shortdesc Monthly Notices of the Royal Astronomical Society.
+docfiles size=238006
+ texmf-dist/doc/plain/mnras/fonttest.tex
+ texmf-dist/doc/plain/mnras/mnguide.dvi
+ texmf-dist/doc/plain/mnras/mnguide.tex
+ texmf-dist/doc/plain/mnras/mnland.dvi
+ texmf-dist/doc/plain/mnras/mnland.tex
+ texmf-dist/doc/plain/mnras/mnsample.dvi
+ texmf-dist/doc/plain/mnras/mnsample.tex
+ texmf-dist/doc/plain/mnras/readme.txt
+runfiles size=84419
+ texmf-dist/tex/plain/mnras/mn.tex
+catalogue-version
+catalogue-date 2007-01-04 23:51:59 +0100
+catalogue-ctan /nonfree/macros/latex/contrib/mnras
+catalogue-license nosell
+
+name mnsymbol
+category Package
+revision 4209
+shortdesc Mathematical symbol font for Adobe MinionPro.
+longdesc MnSymbol is a symbol font family, designed to be used in
+longdesc conjunction with Adobe Minion Pro (via the MinionPro package).
+longdesc Almost all of LaTeX and AMS mathematical symbols are provided;
+longdesc remaining coverage is available from the MinionPro font with
+longdesc the MinionPro package. The fonts are available in both MetaFont
+longdesc and Adobe Type 1 formats, and a comprehensive support package
+longdesc is provided. While the fonts were designed to fit with Minon
+longdesc Pro, the design should fit well with other renaissance or
+longdesc baroque faces: indeed, it will probably work with most fonts
+longdesc that are neither too wide nor too thin, for example Palatino or
+longdesc Times; it is known to look good with Sabon. There is no package
+longdesc designed to configure its use with any font other than Minion
+longdesc Pro, but (for example) simply loading mnsymbol after mathpazo
+longdesc will probably do what is needed.
+execute addMap MnSymbol.map
+docfiles size=308660
+ texmf-dist/doc/latex/mnsymbol/MnSymbol.pdf details="Package documentation"
+ texmf-dist/doc/latex/mnsymbol/README details="Readme"
+srcfiles size=135303
+ texmf-dist/source/latex/mnsymbol/MnSymbol.drv
+ texmf-dist/source/latex/mnsymbol/MnSymbol.dtx
+ texmf-dist/source/latex/mnsymbol/MnSymbol.ins
+runfiles size=5982261
+ texmf-dist/fonts/enc/dvips/mnsymbol/MnSymbolA.enc
+ texmf-dist/fonts/enc/dvips/mnsymbol/MnSymbolB.enc
+ texmf-dist/fonts/enc/dvips/mnsymbol/MnSymbolC.enc
+ texmf-dist/fonts/enc/dvips/mnsymbol/MnSymbolD.enc
+ texmf-dist/fonts/enc/dvips/mnsymbol/MnSymbolE.enc
+ texmf-dist/fonts/enc/dvips/mnsymbol/MnSymbolF.enc
+ texmf-dist/fonts/enc/dvips/mnsymbol/MnSymbolS.enc
+ texmf-dist/fonts/map/dvips/mnsymbol/MnSymbol.map
+ texmf-dist/fonts/map/vtex/mnsymbol/MnSymbol.ali
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol-Bold10.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol-Bold12.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol-Bold5.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol-Bold6.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol-Bold7.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol-Bold8.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol-Bold9.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol10.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol12.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol5.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol6.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol7.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol8.otf
+ texmf-dist/fonts/opentype/public/mnsymbol/MnSymbol9.otf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbol-Parameter.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA-Bold.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA-Bold10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA-Bold12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA-Bold5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA-Bold6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA-Bold7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA-Bold8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA-Bold9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolA9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB-Bold.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB-Bold10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB-Bold12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB-Bold5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB-Bold6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB-Bold7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB-Bold8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB-Bold9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolB9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC-Bold.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC-Bold10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC-Bold12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC-Bold5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC-Bold6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC-Bold7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC-Bold8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC-Bold9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolC9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD-Bold.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD-Bold10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD-Bold12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD-Bold5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD-Bold6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD-Bold7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD-Bold8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD-Bold9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolD9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE-Bold.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE-Bold10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE-Bold12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE-Bold5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE-Bold6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE-Bold7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE-Bold8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE-Bold9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolE9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF-Bold.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF-Bold10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF-Bold12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF-Bold5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF-Bold6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF-Bold7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF-Bold8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF-Bold9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolF9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS-Bold.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS-Bold10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS-Bold12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS-Bold5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS-Bold6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS-Bold7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS-Bold8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS-Bold9.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS10.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS12.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS5.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS6.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS7.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS8.mf
+ texmf-dist/fonts/source/public/mnsymbol/MnSymbolS9.mf
+ texmf-dist/fonts/source/public/mnsymbol/Sym-Accent.mf
+ texmf-dist/fonts/source/public/mnsymbol/Sym-Arrows.mf
+ texmf-dist/fonts/source/public/mnsymbol/Sym-Base.mf
+ texmf-dist/fonts/source/public/mnsymbol/Sym-Delim.mf
+ texmf-dist/fonts/source/public/mnsymbol/Sym-Geometric.mf
+ texmf-dist/fonts/source/public/mnsymbol/Sym-Init.mf
+ texmf-dist/fonts/source/public/mnsymbol/Sym-Operators.mf
+ texmf-dist/fonts/source/public/mnsymbol/Sym-Order.mf
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA-Bold10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA-Bold12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA-Bold5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA-Bold6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA-Bold7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA-Bold8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA-Bold9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolA9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB-Bold10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB-Bold12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB-Bold5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB-Bold6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB-Bold7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB-Bold8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB-Bold9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolB9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC-Bold10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC-Bold12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC-Bold5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC-Bold6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC-Bold7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC-Bold8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC-Bold9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolC9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD-Bold10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD-Bold12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD-Bold5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD-Bold6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD-Bold7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD-Bold8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD-Bold9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolD9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE-Bold10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE-Bold12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE-Bold5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE-Bold6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE-Bold7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE-Bold8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE-Bold9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolE9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF-Bold10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF-Bold12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF-Bold5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF-Bold6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF-Bold7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF-Bold8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF-Bold9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolF9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS-Bold10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS-Bold12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS-Bold5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS-Bold6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS-Bold7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS-Bold8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS-Bold9.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS10.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS12.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS5.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS6.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS7.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS8.tfm
+ texmf-dist/fonts/tfm/public/mnsymbol/MnSymbolS9.tfm
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol-Bold10.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol-Bold12.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol-Bold5.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol-Bold6.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol-Bold7.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol-Bold8.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol-Bold9.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol10.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol12.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol5.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol6.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol7.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol8.pfb
+ texmf-dist/fonts/type1/public/mnsymbol/MnSymbol9.pfb
+ texmf-dist/tex/latex/mnsymbol/MnSymbol.sty
+catalogue-version 1.4
+catalogue-date 2007-10-25 16:35:13 +0200
+catalogue-ctan /fonts/mnsymbol
+catalogue-license pd
+
+name moderncv
+category Package
+revision 4383
+shortdesc A modern curriculum vitae class.
+longdesc Moderncv provides a documentclass for typesetting modern
+longdesc curriculums vitae, both in a classic and in a casual style. It
+longdesc is fairly customizable, allowing you to define your own style
+longdesc by changing the colors, the fonts, etc.
+docfiles size=515162
+ texmf-dist/doc/latex/moderncv/CHANGELOG
+ texmf-dist/doc/latex/moderncv/KNOWN_BUGS
+ texmf-dist/doc/latex/moderncv/README details="Readme"
+ texmf-dist/doc/latex/moderncv/examples/letter.pdf
+ texmf-dist/doc/latex/moderncv/examples/letter.tex
+ texmf-dist/doc/latex/moderncv/examples/picture.eps
+ texmf-dist/doc/latex/moderncv/examples/picture.jpg
+ texmf-dist/doc/latex/moderncv/examples/publications.bib
+ texmf-dist/doc/latex/moderncv/examples/template_en.tex
+ texmf-dist/doc/latex/moderncv/examples/template_en_casual_blue.pdf details="Example: casual style"
+ texmf-dist/doc/latex/moderncv/examples/template_en_classic_green.pdf details="Example: classic style"
+runfiles size=30526
+ texmf-dist/tex/latex/moderncv/moderncv.cls
+ texmf-dist/tex/latex/moderncv/moderncvcompatibility.sty
+ texmf-dist/tex/latex/moderncv/moderncvthemecasual.sty
+ texmf-dist/tex/latex/moderncv/moderncvthemeclassic.sty
+ texmf-dist/tex/latex/moderncv/moderncvthemeempty.sty
+catalogue-version 0.6
+catalogue-date 2007-06-06 17:11:12 +0200
+catalogue-ctan /macros/latex/contrib/moderncv
+catalogue-license lppl
+
+name modroman
+category Package
+revision 1102
+shortdesc Write numbers in lower case roman numerals.
+longdesc This package provides only two macros viz. \modromannumeral
+longdesc which writes the number given as argument in lower case roman
+longdesc numeral with a ‘j’ instead of a ‘i’ as the final letter
+longdesc of numbers greater than 1 and \modroman{MyCounter} which writes
+longdesc the value of a counter in the same way. You use the first in
+longdesc the same way as the TeX primitive \romannumeral and the second
+longdesc as LaTeX command \roman. The default option is ‘vpourv’
+longdesc with which 5 is ‘translated’ by ‘v’ and option
+longdesc ‘upourv’ whith which the same 5 is given as ‘u’.
+docfiles size=183220
+ texmf-dist/doc/latex/modroman/LISEZMOI.txt
+ texmf-dist/doc/latex/modroman/README details="Readme"
+ texmf-dist/doc/latex/modroman/modroman.pdf details="Package documentation"
+ texmf-dist/doc/latex/modroman/modroman.tpm
+srcfiles size=19818
+ texmf-dist/source/latex/modroman/Makefile
+ texmf-dist/source/latex/modroman/modroman.dtx
+ texmf-dist/source/latex/modroman/modroman.ins
+runfiles size=1971
+ texmf-dist/tex/latex/modroman/modroman.sty
+catalogue-version 0.3
+catalogue-date 2007-01-04 23:51:59 +0100
+catalogue-ctan /macros/latex/contrib/modroman
+catalogue-license lppl
+
+name mongolian-babel
+category Package
+revision 5352
+shortdesc A language definition file for Mongolian in Babel.
+longdesc This package provides support for Mongolian in a Cyrillic
+longdesc alphabet. (The work derives from the earlier Russian work for
+longdesc babel.)
+docfiles size=101889
+ texmf-dist/doc/latex/mongolian-babel/README
+ texmf-dist/doc/latex/mongolian-babel/mongolian.pdf details="Package documentation"
+srcfiles size=44253
+ texmf-dist/source/latex/mongolian-babel/mongolian.dtx
+ texmf-dist/source/latex/mongolian-babel/mongolian.ins
+runfiles size=19946
+ texmf-dist/tex/latex/mongolian-babel/mn.def
+ texmf-dist/tex/latex/mongolian-babel/mongolian.ldf
+ texmf-dist/tex/latex/mongolian-babel/mongolian.sty
+catalogue-version 1.1
+catalogue-date 2007-03-22 16:49:27 +0100
+catalogue-ctan /language/mongolian/babel
+catalogue-license lppl
+
+name montex
+category Package
+revision 1487
+shortdesc Mongolian LaTeX.
+longdesc MonTeX provides Mongolian and Manju support for the TeX/LaTeX
+longdesc community. Mongolian is a language spoken in North East Asia,
+longdesc namely Mongolia and the Inner Mongol Autonomous Region of
+longdesc China. Today, it is written in an extended Cyrillic alphabet in
+longdesc Mongolia whereas the Uighur writing continues to be in use in
+longdesc Inner Mongolia, though it is also, legally speaking, the
+longdesc official writing system of Mongolia. Manju is another language
+longdesc of North East Asia, belonging to the Tungusic branch of the
+longdesc Altaic languages. Though it is hardly spoken nowadays, it
+longdesc survives in written form as Manju was the native language of
+longdesc the rulers of the Qing dynasty (1644–1911) in China. Large
+longdesc quantities of documents of the Imperial Archives survive, as
+longdesc well as some of the finest dictionaries ever compiled in Asia,
+longdesc like the Pentaglot, a dictionary comprising Manju, Tibetan,
+longdesc Mongolian, Uighur and Chinese. MonTeX provides all necessary
+longdesc characters for writing standard Mongolian in Cyrillic and
+longdesc Classical (aka Traditional or Uighur) writing, and Manju as
+longdesc well as transliterated Tibetan texts, for which purpose a
+longdesc number of additional characters was created. In MonTeX, both
+longdesc Mongolian and Manju are entered in romanized form. The
+longdesc retransliteration (from Latin input to Mongolian and Manju
+longdesc output) is completely realized in TeX/Metafont so that no
+longdesc external preprocessor is required. Please note that most of the
+longdesc enhanced functions of MonTeX require a working e-LaTeX
+longdesc environment. This is especially true when compiling documents
+longdesc with Mongolian or Manju as the main document language. It is
+longdesc recommended to choose pdfelatex as the resulting PDF files are
+longdesc truly portable. Vertical text generated by MonTeX is not
+longdesc supported in DVI.
+execute addMixedMap mongolian.map
+docfiles size=2171402
+ texmf-dist/doc/latex/montex/00README
+ texmf-dist/doc/latex/montex/00readme.1
+ texmf-dist/doc/latex/montex/fontlist.pdf
+ texmf-dist/doc/latex/montex/fontlist.tex
+ texmf-dist/doc/latex/montex/mls-diag.tex
+ texmf-dist/doc/latex/montex/mlsquick.pdf
+ texmf-dist/doc/latex/montex/mlsquick.tex
+ texmf-dist/doc/latex/montex/montex.pdf
+ texmf-dist/doc/latex/montex/montex.tex
+ texmf-dist/doc/latex/montex/zanabazr.pdf
+ texmf-dist/doc/latex/montex/zanabazr.tex
+srcfiles size=26431
+ texmf-dist/source/latex/montex/ANNOUNCE
+ texmf-dist/source/latex/montex/EMTEX
+ texmf-dist/source/latex/montex/HISTORY
+ texmf-dist/source/latex/montex/INSTALL
+ texmf-dist/source/latex/montex/MIKTEX
+ texmf-dist/source/latex/montex/TODO
+ texmf-dist/source/latex/montex/UPDATE
+ texmf-dist/source/latex/montex/change.log
+ texmf-dist/source/latex/montex/cyrename.pl
+ texmf-dist/source/latex/montex/mfinput/bithe/testfont.input
+ texmf-dist/source/latex/montex/mfinput/bithe/testfont.sh
+ texmf-dist/source/latex/montex/mkmlsmf.pl
+ texmf-dist/source/latex/montex/montex.xml
+ texmf-dist/source/latex/montex/testfont.input
+ texmf-dist/source/latex/montex/testfont.sh
+runfiles size=2887546
+ texmf-dist/fonts/map/dvips/montex/mongolian.map
+ texmf-dist/fonts/source/public/montex/bcghsb.mf
+ texmf-dist/fonts/source/public/montex/bcghsm.mf
+ texmf-dist/fonts/source/public/montex/bcghwb.mf
+ texmf-dist/fonts/source/public/montex/bcghwm.mf
+ texmf-dist/fonts/source/public/montex/bcgvsb.mf
+ texmf-dist/fonts/source/public/montex/bcgvsm.mf
+ texmf-dist/fonts/source/public/montex/bcgvwb.mf
+ texmf-dist/fonts/source/public/montex/bcgvwm.mf
+ texmf-dist/fonts/source/public/montex/bicighb.mf
+ texmf-dist/fonts/source/public/montex/bicighm.mf
+ texmf-dist/fonts/source/public/montex/bicigvb.mf
+ texmf-dist/fonts/source/public/montex/bicigvm.mf
+ texmf-dist/fonts/source/public/montex/bthhsb.mf
+ texmf-dist/fonts/source/public/montex/bthhsm.mf
+ texmf-dist/fonts/source/public/montex/bthhwb.mf
+ texmf-dist/fonts/source/public/montex/bthhwm.mf
+ texmf-dist/fonts/source/public/montex/bthvsb.mf
+ texmf-dist/fonts/source/public/montex/bthvsm.mf
+ texmf-dist/fonts/source/public/montex/bthvwb.mf
+ texmf-dist/fonts/source/public/montex/bthvwm.mf
+ texmf-dist/fonts/source/public/montex/bxghsb.mf
+ texmf-dist/fonts/source/public/montex/bxghsm.mf
+ texmf-dist/fonts/source/public/montex/bxghwb.mf
+ texmf-dist/fonts/source/public/montex/bxghwm.mf
+ texmf-dist/fonts/source/public/montex/bxgvsb.mf
+ texmf-dist/fonts/source/public/montex/bxgvsm.mf
+ texmf-dist/fonts/source/public/montex/bxgvwb.mf
+ texmf-dist/fonts/source/public/montex/bxgvwm.mf
+ texmf-dist/fonts/source/public/montex/cyrmorec.mf
+ texmf-dist/fonts/source/public/montex/cyrmorei.mf
+ texmf-dist/fonts/source/public/montex/cyrmorel.mf
+ texmf-dist/fonts/source/public/montex/cyrmoreu.mf
+ texmf-dist/fonts/source/public/montex/kmb10.mf
+ texmf-dist/fonts/source/public/montex/kmbx10.mf
+ texmf-dist/fonts/source/public/montex/kmbx12.mf
+ texmf-dist/fonts/source/public/montex/kmbx5.mf
+ texmf-dist/fonts/source/public/montex/kmbx6.mf
+ texmf-dist/fonts/source/public/montex/kmbx7.mf
+ texmf-dist/fonts/source/public/montex/kmbx8.mf
+ texmf-dist/fonts/source/public/montex/kmbx9.mf
+ texmf-dist/fonts/source/public/montex/kmbxsl10.mf
+ texmf-dist/fonts/source/public/montex/kmbxti10.mf
+ texmf-dist/fonts/source/public/montex/kmcsc10.mf
+ texmf-dist/fonts/source/public/montex/kmcsc8.mf
+ texmf-dist/fonts/source/public/montex/kmcsc9.mf
+ texmf-dist/fonts/source/public/montex/kmdunh10.mf
+ texmf-dist/fonts/source/public/montex/kmff10.mf
+ texmf-dist/fonts/source/public/montex/kmfi10.mf
+ texmf-dist/fonts/source/public/montex/kmfib8.mf
+ texmf-dist/fonts/source/public/montex/kminch.mf
+ texmf-dist/fonts/source/public/montex/kmitt10.mf
+ texmf-dist/fonts/source/public/montex/kmr10.mf
+ texmf-dist/fonts/source/public/montex/kmr12.mf
+ texmf-dist/fonts/source/public/montex/kmr17.mf
+ texmf-dist/fonts/source/public/montex/kmr5.mf
+ texmf-dist/fonts/source/public/montex/kmr6.mf
+ texmf-dist/fonts/source/public/montex/kmr7.mf
+ texmf-dist/fonts/source/public/montex/kmr8.mf
+ texmf-dist/fonts/source/public/montex/kmr9.mf
+ texmf-dist/fonts/source/public/montex/kmsl10.mf
+ texmf-dist/fonts/source/public/montex/kmsl12.mf
+ texmf-dist/fonts/source/public/montex/kmsl8.mf
+ texmf-dist/fonts/source/public/montex/kmsl9.mf
+ texmf-dist/fonts/source/public/montex/kmsltt10.mf
+ texmf-dist/fonts/source/public/montex/kmss10.mf
+ texmf-dist/fonts/source/public/montex/kmss12.mf
+ texmf-dist/fonts/source/public/montex/kmss17.mf
+ texmf-dist/fonts/source/public/montex/kmss8.mf
+ texmf-dist/fonts/source/public/montex/kmss9.mf
+ texmf-dist/fonts/source/public/montex/kmssbx10.mf
+ texmf-dist/fonts/source/public/montex/kmssdc10.mf
+ texmf-dist/fonts/source/public/montex/kmssi10.mf
+ texmf-dist/fonts/source/public/montex/kmssi12.mf
+ texmf-dist/fonts/source/public/montex/kmssi17.mf
+ texmf-dist/fonts/source/public/montex/kmssi8.mf
+ texmf-dist/fonts/source/public/montex/kmssi9.mf
+ texmf-dist/fonts/source/public/montex/kmssq8.mf
+ texmf-dist/fonts/source/public/montex/kmssqi8.mf
+ texmf-dist/fonts/source/public/montex/kmtcsc10.mf
+ texmf-dist/fonts/source/public/montex/kmti10.mf
+ texmf-dist/fonts/source/public/montex/kmti12.mf
+ texmf-dist/fonts/source/public/montex/kmti7.mf
+ texmf-dist/fonts/source/public/montex/kmti8.mf
+ texmf-dist/fonts/source/public/montex/kmti9.mf
+ texmf-dist/fonts/source/public/montex/kmtt10.mf
+ texmf-dist/fonts/source/public/montex/kmtt12.mf
+ texmf-dist/fonts/source/public/montex/kmtt8.mf
+ texmf-dist/fonts/source/public/montex/kmtt9.mf
+ texmf-dist/fonts/source/public/montex/kmu10.mf
+ texmf-dist/fonts/source/public/montex/kmvtt10.mf
+ texmf-dist/fonts/source/public/montex/kmvtti10.mf
+ texmf-dist/fonts/source/public/montex/lmligs.mf
+ texmf-dist/fonts/source/public/montex/macodes.mf
+ texmf-dist/fonts/source/public/montex/maglyphs.mf
+ texmf-dist/fonts/source/public/montex/mantrlig.mf
+ texmf-dist/fonts/source/public/montex/mbatoms.mf
+ texmf-dist/fonts/source/public/montex/mbcodes.mf
+ texmf-dist/fonts/source/public/montex/mbglyphs.mf
+ texmf-dist/fonts/source/public/montex/mbligtbl.mf
+ texmf-dist/fonts/source/public/montex/mbnums.mf
+ texmf-dist/fonts/source/public/montex/mbparmb.mf
+ texmf-dist/fonts/source/public/montex/mbparmm.mf
+ texmf-dist/fonts/source/public/montex/mbparms.mf
+ texmf-dist/fonts/source/public/montex/mbpunc.mf
+ texmf-dist/fonts/source/public/montex/mcccscco.mf
+ texmf-dist/fonts/source/public/montex/mccoding.mf
+ texmf-dist/fonts/source/public/montex/mctextit.mf
+ texmf-dist/fonts/source/public/montex/mcyccsc.mf
+ texmf-dist/fonts/source/public/montex/mcyitall.mf
+ texmf-dist/fonts/source/public/montex/mcyrill.mf
+ texmf-dist/fonts/source/public/montex/mcyrl.mf
+ texmf-dist/fonts/source/public/montex/mcyrligs.mf
+ texmf-dist/fonts/source/public/montex/mcyrsymb.mf
+ texmf-dist/fonts/source/public/montex/mcyru.mf
+ texmf-dist/fonts/source/public/montex/mcytitle.mf
+ texmf-dist/fonts/source/public/montex/mlscodes.mf
+ texmf-dist/fonts/source/public/montex/mocodes.mf
+ texmf-dist/fonts/source/public/montex/moglyphs.mf
+ texmf-dist/fonts/source/public/montex/montrlig.mf
+ texmf-dist/fonts/source/public/montex/mxcodes.mf
+ texmf-dist/fonts/source/public/montex/mxglyphs.mf
+ texmf-dist/fonts/source/public/montex/mxntrlig.mf
+ texmf-dist/fonts/tfm/public/montex/bcghsb.tfm
+ texmf-dist/fonts/tfm/public/montex/bcghsm.tfm
+ texmf-dist/fonts/tfm/public/montex/bcghwb.tfm
+ texmf-dist/fonts/tfm/public/montex/bcghwm.tfm
+ texmf-dist/fonts/tfm/public/montex/bcgvsb.tfm
+ texmf-dist/fonts/tfm/public/montex/bcgvsm.tfm
+ texmf-dist/fonts/tfm/public/montex/bcgvwb.tfm
+ texmf-dist/fonts/tfm/public/montex/bcgvwm.tfm
+ texmf-dist/fonts/tfm/public/montex/bicighb.tfm
+ texmf-dist/fonts/tfm/public/montex/bicighm.tfm
+ texmf-dist/fonts/tfm/public/montex/bicigvb.tfm
+ texmf-dist/fonts/tfm/public/montex/bicigvm.tfm
+ texmf-dist/fonts/tfm/public/montex/bthhsb.tfm
+ texmf-dist/fonts/tfm/public/montex/bthhsm.tfm
+ texmf-dist/fonts/tfm/public/montex/bthhwb.tfm
+ texmf-dist/fonts/tfm/public/montex/bthhwm.tfm
+ texmf-dist/fonts/tfm/public/montex/bthvsb.tfm
+ texmf-dist/fonts/tfm/public/montex/bthvsm.tfm
+ texmf-dist/fonts/tfm/public/montex/bthvwb.tfm
+ texmf-dist/fonts/tfm/public/montex/bthvwm.tfm
+ texmf-dist/fonts/tfm/public/montex/bxghsb.tfm
+ texmf-dist/fonts/tfm/public/montex/bxghsm.tfm
+ texmf-dist/fonts/tfm/public/montex/bxghwb.tfm
+ texmf-dist/fonts/tfm/public/montex/bxghwm.tfm
+ texmf-dist/fonts/tfm/public/montex/bxgvsb.tfm
+ texmf-dist/fonts/tfm/public/montex/bxgvsm.tfm
+ texmf-dist/fonts/tfm/public/montex/bxgvwb.tfm
+ texmf-dist/fonts/tfm/public/montex/bxgvwm.tfm
+ texmf-dist/fonts/tfm/public/montex/kmb10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmbx10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmbx12.tfm
+ texmf-dist/fonts/tfm/public/montex/kmbx5.tfm
+ texmf-dist/fonts/tfm/public/montex/kmbx6.tfm
+ texmf-dist/fonts/tfm/public/montex/kmbx7.tfm
+ texmf-dist/fonts/tfm/public/montex/kmbx8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmbx9.tfm
+ texmf-dist/fonts/tfm/public/montex/kmbxsl10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmbxti10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmcsc10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmcsc8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmcsc9.tfm
+ texmf-dist/fonts/tfm/public/montex/kmdunh10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmff10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmfi10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmfib8.tfm
+ texmf-dist/fonts/tfm/public/montex/kminch.tfm
+ texmf-dist/fonts/tfm/public/montex/kmitt10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmr10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmr12.tfm
+ texmf-dist/fonts/tfm/public/montex/kmr17.tfm
+ texmf-dist/fonts/tfm/public/montex/kmr5.tfm
+ texmf-dist/fonts/tfm/public/montex/kmr6.tfm
+ texmf-dist/fonts/tfm/public/montex/kmr7.tfm
+ texmf-dist/fonts/tfm/public/montex/kmr8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmr9.tfm
+ texmf-dist/fonts/tfm/public/montex/kmsl10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmsl12.tfm
+ texmf-dist/fonts/tfm/public/montex/kmsl8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmsl9.tfm
+ texmf-dist/fonts/tfm/public/montex/kmsltt10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmss10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmss12.tfm
+ texmf-dist/fonts/tfm/public/montex/kmss17.tfm
+ texmf-dist/fonts/tfm/public/montex/kmss8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmss9.tfm
+ texmf-dist/fonts/tfm/public/montex/kmssbx10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmssdc10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmssi10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmssi12.tfm
+ texmf-dist/fonts/tfm/public/montex/kmssi17.tfm
+ texmf-dist/fonts/tfm/public/montex/kmssi8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmssi9.tfm
+ texmf-dist/fonts/tfm/public/montex/kmssq8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmssqi8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmtcsc10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmti10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmti12.tfm
+ texmf-dist/fonts/tfm/public/montex/kmti7.tfm
+ texmf-dist/fonts/tfm/public/montex/kmti8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmti9.tfm
+ texmf-dist/fonts/tfm/public/montex/kmtt10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmtt12.tfm
+ texmf-dist/fonts/tfm/public/montex/kmtt8.tfm
+ texmf-dist/fonts/tfm/public/montex/kmtt9.tfm
+ texmf-dist/fonts/tfm/public/montex/kmu10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmvtt10.tfm
+ texmf-dist/fonts/tfm/public/montex/kmvtti10.tfm
+ texmf-dist/fonts/type1/public/montex/bcghsb.pfb
+ texmf-dist/fonts/type1/public/montex/bcghsm.pfb
+ texmf-dist/fonts/type1/public/montex/bcghwb.pfb
+ texmf-dist/fonts/type1/public/montex/bcghwm.pfb
+ texmf-dist/fonts/type1/public/montex/bcgvsb.pfb
+ texmf-dist/fonts/type1/public/montex/bcgvsm.pfb
+ texmf-dist/fonts/type1/public/montex/bcgvwb.pfb
+ texmf-dist/fonts/type1/public/montex/bcgvwm.pfb
+ texmf-dist/fonts/type1/public/montex/bicighb.pfb
+ texmf-dist/fonts/type1/public/montex/bicighm.pfb
+ texmf-dist/fonts/type1/public/montex/bicigvb.pfb
+ texmf-dist/fonts/type1/public/montex/bicigvm.pfb
+ texmf-dist/fonts/type1/public/montex/bthhsb.pfb
+ texmf-dist/fonts/type1/public/montex/bthhsm.pfb
+ texmf-dist/fonts/type1/public/montex/bthhwb.pfb
+ texmf-dist/fonts/type1/public/montex/bthhwm.pfb
+ texmf-dist/fonts/type1/public/montex/bthvsb.pfb
+ texmf-dist/fonts/type1/public/montex/bthvsm.pfb
+ texmf-dist/fonts/type1/public/montex/bthvwb.pfb
+ texmf-dist/fonts/type1/public/montex/bthvwm.pfb
+ texmf-dist/fonts/type1/public/montex/bxghsb.pfb
+ texmf-dist/fonts/type1/public/montex/bxghsm.pfb
+ texmf-dist/fonts/type1/public/montex/bxghwb.pfb
+ texmf-dist/fonts/type1/public/montex/bxghwm.pfb
+ texmf-dist/fonts/type1/public/montex/bxgvsb.pfb
+ texmf-dist/fonts/type1/public/montex/bxgvsm.pfb
+ texmf-dist/fonts/type1/public/montex/bxgvwb.pfb
+ texmf-dist/fonts/type1/public/montex/bxgvwm.pfb
+ texmf-dist/fonts/type1/public/montex/kmbx10.pfb
+ texmf-dist/fonts/type1/public/montex/kmr10.pfb
+ texmf-dist/fonts/type1/public/montex/kmss10.pfb
+ texmf-dist/tex/latex/montex/bicig.def
+ texmf-dist/tex/latex/montex/bithe.def
+ texmf-dist/tex/latex/montex/buryat.def
+ texmf-dist/tex/latex/montex/cpctt.def
+ texmf-dist/tex/latex/montex/cpdbk.def
+ texmf-dist/tex/latex/montex/cpibmrus.def
+ texmf-dist/tex/latex/montex/cpkoi.def
+ texmf-dist/tex/latex/montex/cpmls.def
+ texmf-dist/tex/latex/montex/cpmnk.def
+ texmf-dist/tex/latex/montex/cpmos.def
+ texmf-dist/tex/latex/montex/cpncc.def
+ texmf-dist/tex/latex/montex/english.def
+ texmf-dist/tex/latex/montex/kazakh.def
+ texmf-dist/tex/latex/montex/lmabthhs.fd
+ texmf-dist/tex/latex/montex/lmabthhw.fd
+ texmf-dist/tex/latex/montex/lmabthvs.fd
+ texmf-dist/tex/latex/montex/lmabthvw.fd
+ texmf-dist/tex/latex/montex/lmaenc.def
+ texmf-dist/tex/latex/montex/lmccmdh.fd
+ texmf-dist/tex/latex/montex/lmccmfib.fd
+ texmf-dist/tex/latex/montex/lmccmfr.fd
+ texmf-dist/tex/latex/montex/lmccmiss.fd
+ texmf-dist/tex/latex/montex/lmccmr.fd
+ texmf-dist/tex/latex/montex/lmccmss.fd
+ texmf-dist/tex/latex/montex/lmccmssq.fd
+ texmf-dist/tex/latex/montex/lmccmtt.fd
+ texmf-dist/tex/latex/montex/lmccmvtt.fd
+ texmf-dist/tex/latex/montex/lmcenc.def
+ texmf-dist/tex/latex/montex/lmclcmss.fd
+ texmf-dist/tex/latex/montex/lmobcghs.fd
+ texmf-dist/tex/latex/montex/lmobcghw.fd
+ texmf-dist/tex/latex/montex/lmobcgvs.fd
+ texmf-dist/tex/latex/montex/lmobcgvw.fd
+ texmf-dist/tex/latex/montex/lmoenc.def
+ texmf-dist/tex/latex/montex/lmsbcgh.fd
+ texmf-dist/tex/latex/montex/lmsbcgv.fd
+ texmf-dist/tex/latex/montex/lmsenc.def
+ texmf-dist/tex/latex/montex/lmubxghs.fd
+ texmf-dist/tex/latex/montex/lmubxghw.fd
+ texmf-dist/tex/latex/montex/lmubxgvs.fd
+ texmf-dist/tex/latex/montex/lmubxgvw.fd
+ texmf-dist/tex/latex/montex/lmuenc.def
+ texmf-dist/tex/latex/montex/mls.sty
+ texmf-dist/tex/latex/montex/mlsgalig.tex
+ texmf-dist/tex/latex/montex/mlstrans.tex
+ texmf-dist/tex/latex/montex/mnhyphex.tex
+ texmf-dist/tex/latex/montex/rlbicig.sty
+ texmf-dist/tex/latex/montex/russian.def
+ texmf-dist/tex/latex/montex/xalx.def
+catalogue-version
+catalogue-date 2007-01-04 23:51:59 +0100
+catalogue-ctan /language/mongolian/montex
+catalogue-license gpl
+
+name morehelp
+category Package
+revision 1104
+shortdesc Improve LaTeX error messages.
+longdesc The package enhances LaTeX2e error messages by providing
+longdesc descriptions of the possible causes including those that may
+longdesc not be obvious. This style is effectively an online substitute
+longdesc for error lists found in the LaTeX books, although it cannot
+longdesc completely replace them. Only true LaTeX errors are included:
+longdesc TeX errors are beyond the reach of ordinary macros.
+docfiles size=4200
+ texmf-dist/doc/latex/morehelp/morehelp.README
+runfiles size=17589
+ texmf-dist/tex/latex/morehelp/morehelp.dyn
+ texmf-dist/tex/latex/morehelp/morehelp.eng
+ texmf-dist/tex/latex/morehelp/morehelp.sty
+catalogue-version 0.1alpha
+catalogue-date 2006-12-15 22:34:26 +0100
+catalogue-ctan /macros/latex/contrib/morehelp
+catalogue-license other
+
+name moresize
+category Package
+revision 1487
+shortdesc Allows font sizes up to 35.83pt.
+longdesc A package for using font sizes up to 35.88pt, for example with
+longdesc the EC fonts. New commands \HUGE and \ssmall for selecting font
+longdesc sizes are provided together with some options working around
+longdesc current LaTeX2e shortcomings in using big font sizes. The
+longdesc package also provides options for improving the typesetting of
+longdesc paragraphs (or headlines) with embedded math expressions at
+longdesc font sizes above 17.28pt.
+docfiles size=12779
+ texmf-dist/doc/latex/moresize/msizetst.dvi
+ texmf-dist/doc/latex/moresize/msizetst.tex
+srcfiles size=31777
+ texmf-dist/source/latex/moresize/moresize.dtx
+ texmf-dist/source/latex/moresize/moresize.ins
+ texmf-dist/source/latex/moresize/moresize.upl
+runfiles size=2690
+ texmf-dist/tex/latex/moresize/moresize.sty
+catalogue-version 1.9
+catalogue-date 2006-12-15 22:34:26 +0100
+catalogue-ctan /macros/latex/contrib/moresize
+catalogue-license lppl
+
+name moreverb
+category Package
+revision 2814
+shortdesc Extended verbatim.
+longdesc A verbatim mode that can handle TABs properly, can number
+longdesc lines, can number lines in an included file, can produce boxed
+longdesc verbatims, etc.
+docfiles size=106832
+ texmf-dist/doc/latex/moreverb/README details="Package Readme"
+ texmf-dist/doc/latex/moreverb/moreverb.pdf details="Package documentation"
+srcfiles size=20567
+ texmf-dist/source/latex/moreverb/moreverb.dtx
+ texmf-dist/source/latex/moreverb/moreverb.ins
+runfiles size=5822
+ texmf-dist/tex/latex/moreverb/moreverb.sty
+catalogue-version
+catalogue-date 2006-12-15 22:34:26 +0100
+catalogue-ctan /macros/latex/contrib/moreverb
+catalogue-license lppl
+
+name morse
+category Package
+revision 1487
+shortdesc Support for printing Morse code signs.
+longdesc The bundle contains both LaTeX macros and MetaFont source of a
+longdesc font for the package to use.
+docfiles size=21586
+ texmf-dist/doc/latex/morse/morse.doc
+ texmf-dist/doc/latex/morse/morsedoc.dvi
+ texmf-dist/doc/latex/morse/morsedoc.tex
+runfiles size=9471
+ texmf-dist/fonts/source/public/morse/morse.alf
+ texmf-dist/fonts/source/public/morse/morse.def
+ texmf-dist/fonts/source/public/morse/morse.num
+ texmf-dist/fonts/source/public/morse/morse10.mf
+ texmf-dist/fonts/tfm/public/morse/morse10.tfm
+ texmf-dist/tex/latex/morse/morse.sty
+catalogue-version 1.0
+catalogue-date 2006-12-15 22:34:26 +0100
+catalogue-ctan /fonts/morse
+catalogue-license nosell
+
+name movie15
+category Package
+revision 5443
+shortdesc Multimedia inclusion package.
+longdesc Provides an interface to embed movies, sounds and 3D objects
+longdesc into PDF documents for use with LaTeX as well as pdfLaTeX.
+longdesc Defines \includemovie with PDF-1.5 compatibility. Option
+longdesc 'autoplay' causes the media clip to be started right after the
+longdesc page has loaded. This is useful for side by side movie clips to
+longdesc be played back synchronously.
+docfiles size=790714
+ texmf-dist/doc/latex/movie15/3dsystem.fig
+ texmf-dist/doc/latex/movie15/3dsystem.pdf
+ texmf-dist/doc/latex/movie15/3dsystem.tex
+ texmf-dist/doc/latex/movie15/README details="README file"
+ texmf-dist/doc/latex/movie15/animation.js
+ texmf-dist/doc/latex/movie15/dice.u3d
+ texmf-dist/doc/latex/movie15/dice.vws
+ texmf-dist/doc/latex/movie15/dice.wrl
+ texmf-dist/doc/latex/movie15/lights.js
+ texmf-dist/doc/latex/movie15/mailto.png
+ texmf-dist/doc/latex/movie15/movie15.pdf
+ texmf-dist/doc/latex/movie15/movie15.tex
+ texmf-dist/doc/latex/movie15/overlay-example.pdf
+ texmf-dist/doc/latex/movie15/overlay-example.tex
+ texmf-dist/doc/latex/movie15/random.mpg
+ texmf-dist/doc/latex/movie15/turntable.js
+runfiles size=131734
+ texmf-dist/tex/latex/movie15/movie15.sty
+catalogue-version
+catalogue-date 2007-10-29 16:36:54 +0100
+catalogue-ctan /macros/latex/contrib/movie15
+catalogue-license lppl
+
+name mp3d
+category Package
+revision 104
+docfiles size=933782
+ texmf-dist/doc/metapost/mp3d/README
+ texmf-dist/doc/metapost/mp3d/examples/cube10.mp
+ texmf-dist/doc/metapost/mp3d/examples/cube4-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/cube5.mp
+ texmf-dist/doc/metapost/mp3d/examples/cube6.mp
+ texmf-dist/doc/metapost/mp3d/examples/cube7.mp
+ texmf-dist/doc/metapost/mp3d/examples/cube8.mp
+ texmf-dist/doc/metapost/mp3d/examples/cube9.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp1-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp1.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp2-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp2.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp3-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp3.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp4-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp4.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp5-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp5.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp6-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp6.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp7-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp7.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp8-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp8.mp
+ texmf-dist/doc/metapost/mp3d/examples/gutmp9.mp
+ texmf-dist/doc/metapost/mp3d/examples/monge-eng.mp
+ texmf-dist/doc/metapost/mp3d/examples/monge.mp
+ texmf-dist/doc/metapost/mp3d/gut2001.pdf
+ texmf-dist/doc/metapost/mp3d/paper1997corrected.pdf
+ texmf-dist/doc/metapost/mp3d/tb57roeg.pdf
+ texmf-dist/doc/metapost/mp3d/tb57roegel.ltx
+ texmf-dist/doc/metapost/mp3d/tugboat-geometry-space.pdf
+runfiles size=90928
+ texmf-dist/metapost/mp3d/3d.mp
+ texmf-dist/metapost/mp3d/3danim.mp
+ texmf-dist/metapost/mp3d/3dgeom.mp
+ texmf-dist/metapost/mp3d/3dpoly.mp
+ texmf-dist/metapost/mp3d/3dutil.mp
+ texmf-dist/metapost/mp3d/animpoly.mp
+ texmf-dist/metapost/mp3d/create_animation.sh
+
+name mparhack
+category Package
+revision 1109
+shortdesc A workaround for a LaTeX bug in marginpars.
+longdesc Implements a workaround for the LaTeX bug that marginpars will
+longdesc sometimes come out at the wrong margin.
+srcfiles size=34922
+ texmf-dist/source/latex/mparhack/mparhack.dtx
+ texmf-dist/source/latex/mparhack/mparhack.ins
+runfiles size=7963
+ texmf-dist/tex/latex/mparhack/mparhack.sty
+catalogue-version 1.4
+catalogue-date 2006-10-22 16:45:29 +0200
+catalogue-ctan /macros/latex/contrib/mparhack
+catalogue-license gpl
+
+name mpattern
+category Package
+revision 105
+shortdesc Patterns in MetaPost.
+longdesc A package for defining and using patterns in MetaPost, using
+longdesc the Pattern Color Space available in PostScript Level 2.
+docfiles size=11079
+ texmf-dist/doc/metapost/mpattern/README details="Package Readme (English)" language="en"
+ texmf-dist/doc/metapost/mpattern/README.PL details="Package Readme (Polish)" language="pl"
+ texmf-dist/doc/metapost/mpattern/test.mp
+ texmf-dist/doc/metapost/mpattern/test.tex
+srcfiles size=1323
+ texmf-dist/source/metapost/mpattern/mpp
+runfiles size=7191
+ texmf-dist/metapost/mpattern/mpattern.mp
+catalogue-version
+catalogue-date 2006-12-15 22:34:26 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/mpattern
+catalogue-license pd
+
+name ms
+category Package
+revision 4216
+shortdesc Various LaTeX packages by Martin Schröder.
+longdesc A collection of LaTeX packages by Martin Schröder; the
+longdesc collection comprises: – count1to, make use of fixed TeX
+longdesc counters; – everysel, set commands to execute every time a
+longdesc font is selected; – everyshi, set commands to execute
+longdesc whenever a page is shipped out; – multitoc, typeset the table
+longdesc of contents in multiple columns; – prelim2e, mark typeset
+longdesc pages as preliminary; and – ragged2e, typeset ragged text and
+longdesc allow hyphenation.
+docfiles size=891403
+ texmf-dist/doc/latex/ms/count1to.asc
+ texmf-dist/doc/latex/ms/count1to.bug
+ texmf-dist/doc/latex/ms/count1to.pdf
+ texmf-dist/doc/latex/ms/everysel.asc
+ texmf-dist/doc/latex/ms/everysel.bug
+ texmf-dist/doc/latex/ms/everysel.pdf
+ texmf-dist/doc/latex/ms/everyshi.asc
+ texmf-dist/doc/latex/ms/everyshi.bug
+ texmf-dist/doc/latex/ms/everyshi.pdf
+ texmf-dist/doc/latex/ms/multitoc.asc
+ texmf-dist/doc/latex/ms/multitoc.bug
+ texmf-dist/doc/latex/ms/multitoc.pdf
+ texmf-dist/doc/latex/ms/prelim2e.asc
+ texmf-dist/doc/latex/ms/prelim2e.bug
+ texmf-dist/doc/latex/ms/prelim2e.pdf
+ texmf-dist/doc/latex/ms/ragged2e.pdf
+srcfiles size=171111
+ texmf-dist/source/latex/ms/count1to.drv
+ texmf-dist/source/latex/ms/count1to.dtx
+ texmf-dist/source/latex/ms/count1to.ins
+ texmf-dist/source/latex/ms/everysel.drv
+ texmf-dist/source/latex/ms/everysel.dtx
+ texmf-dist/source/latex/ms/everysel.ins
+ texmf-dist/source/latex/ms/everyshi.drv
+ texmf-dist/source/latex/ms/everyshi.dtx
+ texmf-dist/source/latex/ms/everyshi.ins
+ texmf-dist/source/latex/ms/multitoc.drv
+ texmf-dist/source/latex/ms/multitoc.dtx
+ texmf-dist/source/latex/ms/multitoc.ins
+ texmf-dist/source/latex/ms/prelim2e.drv
+ texmf-dist/source/latex/ms/prelim2e.dtx
+ texmf-dist/source/latex/ms/prelim2e.ins
+ texmf-dist/source/latex/ms/ragged2e.drv
+ texmf-dist/source/latex/ms/ragged2e.dtx
+ texmf-dist/source/latex/ms/ragged2e.ins
+runfiles size=33218
+ texmf-dist/tex/latex/ms/count1to.sty
+ texmf-dist/tex/latex/ms/everysel.sty
+ texmf-dist/tex/latex/ms/everyshi.sty
+ texmf-dist/tex/latex/ms/multitoc.sty
+ texmf-dist/tex/latex/ms/prelim2e.sty
+ texmf-dist/tex/latex/ms/ragged2e.sty
+catalogue-version
+catalogue-date 2006-12-15 22:47:21 +0100
+catalogue-ctan /macros/latex/contrib/ms
+catalogue-license unknown
+
+name msc
+category Package
+revision 1110
+shortdesc Draw MSC diagrams.
+longdesc The package should be useful to all people that prepare their
+longdesc texts with LaTeX and want to draw Message Sequence Charts in
+longdesc their texts. The package is not an MSC editor; it simply takes
+longdesc a textual description of an MSC and draws the corresponding
+longdesc MSC. The current version of the MSC macro package supports the
+longdesc full MSC2000 language.
+docfiles size=160072
+ texmf-dist/doc/latex/msc/COPYRIGHT
+ texmf-dist/doc/latex/msc/README details="Package Readme"
+ texmf-dist/doc/latex/msc/maintenance.tex
+ texmf-dist/doc/latex/msc/manual.tex
+ texmf-dist/doc/latex/msc/refman.tex
+runfiles size=113463
+ texmf-dist/bibtex/bib/msc/biblio.bib
+ texmf-dist/tex/latex/msc/msc.sty
+catalogue-version 1.13
+catalogue-date 2006-12-15 23:21:51 +0100
+catalogue-ctan /macros/latex/contrib/msc
+catalogue-license lppl
+
+name msg
+category Package
+revision 3945
+shortdesc A package for LaTeX localisation.
+longdesc The package is designed to localise any document class or
+longdesc package. This should be very useful for end-users who could
+longdesc obtain messages in their own preferred language. It is really
+longdesc easy to use by writers of other classes and packages.
+longdesc Volunteers are urged to test the package, report, and even to
+longdesc localise the message file to their own language. Documentation
+longdesc is provided in English.
+docfiles size=1232281
+ texmf-dist/doc/latex/msg/CHANGES
+ texmf-dist/doc/latex/msg/README
+ texmf-dist/doc/latex/msg/README_msg_doc.txt
+ texmf-dist/doc/latex/msg/msg.pdf
+ texmf-dist/doc/latex/msg/msgguide.pdf
+ texmf-dist/doc/latex/msg/msgguide.tex
+ texmf-dist/doc/latex/msg/msgtest.tex
+srcfiles size=72248
+ texmf-dist/source/latex/msg/Makefile
+ texmf-dist/source/latex/msg/msg.dtx
+ texmf-dist/source/latex/msg/msg.ins
+ texmf-dist/source/latex/msg/msgfiles.dtx
+runfiles size=34208
+ texmf-dist/tex/latex/msg/french_msg-msg.tex
+ texmf-dist/tex/latex/msg/german_msg-msg.tex
+ texmf-dist/tex/latex/msg/msg-msg.tex
+ texmf-dist/tex/latex/msg/msg.sty
+ texmf-dist/tex/latex/msg/norsk_msg-msg.tex
+catalogue-version 0.40
+catalogue-date 2006-11-16 17:55:10 +0100
+catalogue-ctan /macros/latex/contrib/msg
+catalogue-license lppl
+
+name mslapa
+category Package
+revision 1487
+shortdesc Michael Landy's APA citation style.
+longdesc LaTeX and BibTeX style files for a respectably close
+longdesc approximation to APA (American Psychological Association)
+longdesc citation and reference style.
+docfiles size=6886
+ texmf-dist/doc/latex/mslapa/README
+ texmf-dist/doc/latex/mslapa/bibfile.bib
+ texmf-dist/doc/latex/mslapa/examp.dvi
+ texmf-dist/doc/latex/mslapa/examp.tex
+runfiles size=37716
+ texmf-dist/bibtex/bst/mslapa/mslapa.bst
+ texmf-dist/tex/latex/mslapa/mslapa.sty
+catalogue-version
+catalogue-date 2006-12-15 23:21:51 +0100
+catalogue-ctan /macros/latex/contrib/mslapa
+catalogue-license unknown
+
+name mtgreek
+category Package
+revision 1487
+shortdesc Use italic and upright greek letters with mathtime.
+longdesc This package is an add-on to the MathTime a style to provide
+longdesc TeX support for the use of the MathTime(tm) fonts (formerly
+longdesc distributed by YandY, Inc.). The MathTime package has uppercase
+longdesc Greek letters hardwired to be upright and only upright; this
+longdesc package provides a switch to choose between the two kinds of
+longdesc Greek uppercase letters.
+docfiles size=558
+ texmf-dist/doc/latex/mtgreek/mtgtest.dvi
+ texmf-dist/doc/latex/mtgreek/mtgtest.tex
+srcfiles size=6417
+ texmf-dist/source/latex/mtgreek/mtgreek.dtx
+ texmf-dist/source/latex/mtgreek/mtgreek.ins
+runfiles size=2833
+ texmf-dist/tex/latex/mtgreek/mtgreek.sty
+catalogue-version 1.1+
+catalogue-date 2006-12-15 23:21:51 +0100
+catalogue-ctan /macros/latex/contrib/mtgreek
+catalogue-license lppl
+
+name multenum
+category Package
+revision 1114
+shortdesc Multi-column enumerated lists.
+longdesc Defines an environment multienumerate, that produces an
+longdesc enumerated array in which columns are vertically aligned on the
+longdesc counter. The motivation was lists of answers for a text book,
+longdesc where there are many rather small items; the multienumerate
+longdesc environment goes some way to making such lists look neater.
+docfiles size=19266
+ texmf-dist/doc/latex/multenum/multienum.article
+ texmf-dist/doc/latex/multenum/multienum.sample
+runfiles size=7366
+ texmf-dist/tex/latex/multenum/multienum.sty
+catalogue-version
+catalogue-date 2006-12-15 15:26:27 +0100
+catalogue-ctan /macros/latex/contrib/multenum
+catalogue-license unknown
+
+name multi
+category Package
+revision 88
+runfiles size=29162
+ texmf-dist/dvips/multi/2up.pro
+ texmf-dist/dvips/multi/4up.pro
+ texmf-dist/dvips/multi/multi.pro
+
+name multibbl
+category Package
+revision 1115
+shortdesc Multiple bibliographies.
+longdesc The package multibbl redefines the standard bibliographic
+longdesc commands so that one can generate multiple reference sections.
+longdesc Each section has it own auxiliary file (for use with BibTeX)
+longdesc and title.
+docfiles size=111067
+ texmf-dist/doc/latex/multibbl/multibbl.pdf
+srcfiles size=9867
+ texmf-dist/source/latex/multibbl/multibbl.dtx
+ texmf-dist/source/latex/multibbl/multibbl.ins
+runfiles size=3384
+ texmf-dist/tex/latex/multibbl/multibbl.sty
+catalogue-version v1.1
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/multibbl
+catalogue-license lppl
+
+name multibib
+category Package
+revision 1116
+shortdesc Multiple bibliographies within one document.
+longdesc Multibib the creation of references to multiple bibliographies
+longdesc within one document. It thus provides complementary
+longdesc functionality to packages like bibunits and chapterbib, which
+longdesc allow the creation of one bibliography for multiple, but
+longdesc different parts of the document. Multibib is compatible with
+longdesc inlinebib, natbib, and koma-script.
+docfiles size=1531
+ texmf-dist/doc/latex/multibib/README details="Package Readme"
+ texmf-dist/doc/latex/multibib/bibtexall
+srcfiles size=40898
+ texmf-dist/source/latex/multibib/multibib.dtx
+ texmf-dist/source/latex/multibib/multibib.ins
+runfiles size=35308
+ texmf-dist/bibtex/bst/multibib/mbplain.bst
+ texmf-dist/makeindex/multibib/mbgglo.ist
+ texmf-dist/makeindex/multibib/mbgind.ist
+ texmf-dist/tex/latex/multibib/multibib.sty
+catalogue-version 1.1
+catalogue-date 2006-12-15 15:26:27 +0100
+catalogue-ctan /macros/latex/contrib/multibib
+catalogue-license lppl
+
+name multicap
+category Package
+revision 2815
+shortdesc Format captions inside multicols
+longdesc This is a package for formatting captions of column figures and
+longdesc column tabular material, which cannot be standard floats in a
+longdesc multicols environment. The package also provides a convenient
+longdesc way to customise your captions, whether they be in multicols or
+longdesc not.
+docfiles size=112626
+ texmf-dist/doc/latex/multicap/multicap.pdf
+srcfiles size=22034
+ texmf-dist/source/latex/multicap/multicap.dtx
+runfiles size=3717
+ texmf-dist/tex/latex/multicap/multicap.sty
+catalogue-version
+catalogue-date 2006-12-15 15:26:27 +0100
+catalogue-ctan /macros/latex/contrib/multicap
+catalogue-license lppl
+
+name multido
+category Package
+revision 613
+shortdesc A loop facility for Generic TeX.
+longdesc The package provides the \multido command, which was originally
+longdesc designed for use with with PSTricks. Fixed-point arithmetic is
+longdesc used when working on the loop variable, so that the package is
+longdesc equally applicable in graphics applications like PSTricks as it
+longdesc is with the more common integer loops.
+docfiles size=70626
+ texmf-dist/doc/generic/multido/multido-test.tex
+ texmf-dist/doc/generic/multido/multido.doc
+ texmf-dist/doc/generic/multido/multido.pdf
+runfiles size=10604
+ texmf-dist/tex/generic/multido/multido.sty
+ texmf-dist/tex/generic/multido/multido.tex
+catalogue-version 1.41
+catalogue-date 2006-12-15 15:26:27 +0100
+catalogue-ctan /macros/generic/multido
+catalogue-license lppl
+
+name multirow
+category Package
+revision 1118
+shortdesc Create tabular cells spanning multiple rows.
+longdesc The package has a lot of flexibility, including an option for
+longdesc specifying an entry at the “natural” width of its text. The
+longdesc package is distributed with the bigdelim and bigstrut packages,
+longdesc which can be used to advantage with \multirow cells.
+docfiles size=5115
+ texmf-dist/doc/latex/multirow/README
+runfiles size=11958
+ texmf-dist/tex/latex/multirow/bigdelim.sty
+ texmf-dist/tex/latex/multirow/bigstrut.sty
+ texmf-dist/tex/latex/multirow/multirow.sty
+catalogue-version 1.6
+catalogue-date 2006-12-15 15:26:27 +0100
+catalogue-ctan /macros/latex/contrib/multirow
+catalogue-license lppl
+
+name munich
+category Package
+revision 1960
+shortdesc An alternative authordate bibliography style.
+longdesc The Munich BibTeX style is produced with custom-bib, as a
+longdesc German (and, more generally, Continental European) alternative
+longdesc to such author-date styles as harvard and oxford.
+docfiles size=296309
+ texmf-dist/doc/latex/munich/README details="Readme"
+ texmf-dist/doc/latex/munich/documenation_munich_Bibtex_style.pdf details="Package documentation"
+ texmf-dist/doc/latex/munich/documenation_munich_Bibtex_style.tex
+ texmf-dist/doc/latex/munich/example_DB.bib
+ texmf-dist/doc/latex/munich/example_munich_Bibtex_style.pdf details="Usage example"
+ texmf-dist/doc/latex/munich/example_munich_Bibtex_style.tex
+runfiles size=32730
+ texmf-dist/bibtex/bst/munich/munich.bst
+catalogue-version
+catalogue-date 2007-03-10 12:18:05 +0100
+catalogue-ctan /biblio/bibtex/contrib/munich
+catalogue-license lppl
+
+name musictex
+category Package
+revision 1487
+shortdesc Typesetting music with TeX.
+longdesc MusicTeX is a set of macros, that first demonstrated the
+longdesc technique of simultaneous two-dimensional typesetting as
+longdesc applied to music. MusicTeX has its shortcomings (notably in the
+longdesc area of slurs), and is now largely superseded by MusiXTeX.
+docfiles size=1007764
+ texmf-dist/doc/generic/musictex/aa_readm.tex
+ texmf-dist/doc/generic/musictex/adagio.tex
+ texmf-dist/doc/generic/musictex/aria.tex
+ texmf-dist/doc/generic/musictex/avemario.tex
+ texmf-dist/doc/generic/musictex/carillon.tex
+ texmf-dist/doc/generic/musictex/choral.tex
+ texmf-dist/doc/generic/musictex/euromtex.dvi
+ texmf-dist/doc/generic/musictex/euromtex.tex
+ texmf-dist/doc/generic/musictex/extras.tex
+ texmf-dist/doc/generic/musictex/fantaisc.tex
+ texmf-dist/doc/generic/musictex/fantaisd.tex
+ texmf-dist/doc/generic/musictex/fantaisi.tex
+ texmf-dist/doc/generic/musictex/fugue.tex
+ texmf-dist/doc/generic/musictex/gymnoman.tex
+ texmf-dist/doc/generic/musictex/howtoget.tex
+ texmf-dist/doc/generic/musictex/lines.tex
+ texmf-dist/doc/generic/musictex/magnific.tex
+ texmf-dist/doc/generic/musictex/marcellx.tex
+ texmf-dist/doc/generic/musictex/musicdoc.bat
+ texmf-dist/doc/generic/musictex/musicdoc.dvi
+ texmf-dist/doc/generic/musictex/musicdoc.idx
+ texmf-dist/doc/generic/musictex/musicdoc.ilg
+ texmf-dist/doc/generic/musictex/musicdoc.ind
+ texmf-dist/doc/generic/musictex/musicdoc.inx
+ texmf-dist/doc/generic/musictex/musicdoc.ist
+ texmf-dist/doc/generic/musictex/musicref.dvi
+ texmf-dist/doc/generic/musictex/musictex.ins
+ texmf-dist/doc/generic/musictex/ostinato.tex
+ texmf-dist/doc/generic/musictex/pacifiqb.tex
+ texmf-dist/doc/generic/musictex/pacifiqn.tex
+ texmf-dist/doc/generic/musictex/praetori.tex
+ texmf-dist/doc/generic/musictex/praetorx.tex
+ texmf-dist/doc/generic/musictex/prelude.tex
+ texmf-dist/doc/generic/musictex/purcellx.tex
+ texmf-dist/doc/generic/musictex/racine.tex
+ texmf-dist/doc/generic/musictex/recit.tex
+ texmf-dist/doc/generic/musictex/recueil.tex
+ texmf-dist/doc/generic/musictex/reves.tex
+ texmf-dist/doc/generic/musictex/romances.tex
+ texmf-dist/doc/generic/musictex/screatim.tex
+ texmf-dist/doc/generic/musictex/souvenir.tex
+ texmf-dist/doc/generic/musictex/souvenix.tex
+ texmf-dist/doc/generic/musictex/tierce.tex
+runfiles size=511857
+ texmf-dist/fonts/source/public/musictex/beamd20.mf
+ texmf-dist/fonts/source/public/musictex/beamn11.mf
+ texmf-dist/fonts/source/public/musictex/beamn13.mf
+ texmf-dist/fonts/source/public/musictex/beamn16.mf
+ texmf-dist/fonts/source/public/musictex/beamn20.mf
+ texmf-dist/fonts/source/public/musictex/beamngen.mf
+ texmf-dist/fonts/source/public/musictex/beamq20.mf
+ texmf-dist/fonts/source/public/musictex/beamt20.mf
+ texmf-dist/fonts/source/public/musictex/beamv20.mf
+ texmf-dist/fonts/source/public/musictex/musicbra.mf
+ texmf-dist/fonts/source/public/musictex/musicbrb.mf
+ texmf-dist/fonts/source/public/musictex/musicbrg.mf
+ texmf-dist/fonts/source/public/musictex/musicbrh.mf
+ texmf-dist/fonts/source/public/musictex/musicd11.mf
+ texmf-dist/fonts/source/public/musictex/musicd13.mf
+ texmf-dist/fonts/source/public/musictex/musicd16.mf
+ texmf-dist/fonts/source/public/musictex/musicd20.mf
+ texmf-dist/fonts/source/public/musictex/musicdef.mf
+ texmf-dist/fonts/source/public/musictex/musicg16.mf
+ texmf-dist/fonts/source/public/musictex/musicgen.mf
+ texmf-dist/fonts/source/public/musictex/musicn11.mf
+ texmf-dist/fonts/source/public/musictex/musicn13.mf
+ texmf-dist/fonts/source/public/musictex/musicn16.mf
+ texmf-dist/fonts/source/public/musictex/musicn20.mf
+ texmf-dist/fonts/source/public/musictex/musikd11.mf
+ texmf-dist/fonts/source/public/musictex/musikd13.mf
+ texmf-dist/fonts/source/public/musictex/musikd16.mf
+ texmf-dist/fonts/source/public/musictex/musikd20.mf
+ texmf-dist/fonts/source/public/musictex/musikgen.mf
+ texmf-dist/fonts/source/public/musictex/musikn11.mf
+ texmf-dist/fonts/source/public/musictex/musikn13.mf
+ texmf-dist/fonts/source/public/musictex/musikn16.mf
+ texmf-dist/fonts/source/public/musictex/musikn20.mf
+ texmf-dist/fonts/source/public/musictex/slur16.mf
+ texmf-dist/fonts/source/public/musictex/slurdd16.mf
+ texmf-dist/fonts/source/public/musictex/slurdu16.mf
+ texmf-dist/fonts/source/public/musictex/slurgen.mf
+ texmf-dist/fonts/source/public/musictex/slurn16.mf
+ texmf-dist/fonts/source/public/musictex/slurn20.mf
+ texmf-dist/fonts/source/public/musictex/slurud16.mf
+ texmf-dist/fonts/source/public/musictex/sluruu16.mf
+ texmf-dist/fonts/tfm/public/musictex/beamn11.tfm
+ texmf-dist/fonts/tfm/public/musictex/beamn13.tfm
+ texmf-dist/fonts/tfm/public/musictex/beamn16.tfm
+ texmf-dist/fonts/tfm/public/musictex/beamn20.tfm
+ texmf-dist/fonts/tfm/public/musictex/musicbra.tfm
+ texmf-dist/fonts/tfm/public/musictex/musicbrb.tfm
+ texmf-dist/fonts/tfm/public/musictex/musicn11.tfm
+ texmf-dist/fonts/tfm/public/musictex/musicn13.tfm
+ texmf-dist/fonts/tfm/public/musictex/musicn16.tfm
+ texmf-dist/fonts/tfm/public/musictex/musicn20.tfm
+ texmf-dist/fonts/tfm/public/musictex/musikn11.tfm
+ texmf-dist/fonts/tfm/public/musictex/musikn13.tfm
+ texmf-dist/fonts/tfm/public/musictex/musikn16.tfm
+ texmf-dist/fonts/tfm/public/musictex/musikn20.tfm
+ texmf-dist/fonts/tfm/public/musictex/slurdd16.tfm
+ texmf-dist/fonts/tfm/public/musictex/slurdu16.tfm
+ texmf-dist/fonts/tfm/public/musictex/slurn16.tfm
+ texmf-dist/fonts/tfm/public/musictex/slurn20.tfm
+ texmf-dist/fonts/tfm/public/musictex/slurud16.tfm
+ texmf-dist/fonts/tfm/public/musictex/sluruu16.tfm
+ texmf-dist/tex/generic/musictex/musicadd.tex
+ texmf-dist/tex/generic/musictex/musicdoc.tex
+ texmf-dist/tex/generic/musictex/musicext.tex
+ texmf-dist/tex/generic/musictex/musicnew.tex
+ texmf-dist/tex/generic/musictex/musicnft.tex
+ texmf-dist/tex/generic/musictex/musicper.tex
+ texmf-dist/tex/generic/musictex/musicpln.tex
+ texmf-dist/tex/generic/musictex/musicpos.tex
+ texmf-dist/tex/generic/musictex/musicpre.tex
+ texmf-dist/tex/generic/musictex/musicref.tex
+ texmf-dist/tex/generic/musictex/musicsix.tex
+ texmf-dist/tex/generic/musictex/musicsty.tex
+ texmf-dist/tex/generic/musictex/musictex.tex
+ texmf-dist/tex/generic/musictex/musictrp.tex
+ texmf-dist/tex/generic/musictex/musicvbm.tex
+ texmf-dist/tex/latex/musictex/a4report.sty
+ texmf-dist/tex/latex/musictex/bigmusic.sty
+ texmf-dist/tex/latex/musictex/musicper.sty
+ texmf-dist/tex/latex/musictex/musictex.sty
+ texmf-dist/tex/latex/musictex/musictrp.sty
+ texmf-dist/tex/latex/musictex/musicvbm.sty
+catalogue-version 5.20
+catalogue-date 2007-01-04 23:51:59 +0100
+catalogue-ctan /macros/musictex
+catalogue-license unknown
+
+name musixlyr
+category Package
+revision 1487
+shortdesc MusiXTeX Extension Package for Lyrics Handling.
+longdesc This package improves the performance of Taupin's MusixTeX for
+longdesc vocal music, dealing with the problems with the base
+longdesc package’s \zcharnote macro for incorporating lyrics.
+docfiles size=177737
+ texmf-dist/doc/latex/musixlyr/COPYING
+ texmf-dist/doc/latex/musixlyr/README
+ texmf-dist/doc/latex/musixlyr/mxlyrdoc.dvi
+ texmf-dist/doc/latex/musixlyr/mxlyrdoc.mx1
+ texmf-dist/doc/latex/musixlyr/mxlyrdoc.tex
+runfiles size=33324
+ texmf-dist/tex/generic/musixlyr/musixlyr.tex
+catalogue-version 2.1c
+catalogue-date 2007-01-15 14:14:33 +0100
+catalogue-ctan /macros/musixtex/taupin/add-ons/musixlyr21c.zip
+catalogue-license unknown
+
+name musixps
+category Package
+revision 613
+docfiles size=1497
+ texmf-dist/doc/generic/musixps/readme.txt
+runfiles size=50179
+ texmf-dist/dvips/musixps/psslurs.pro
+ texmf-dist/fonts/source/public/musixps/mxsk.mf
+ texmf-dist/fonts/tfm/public/musixps/mxsk.tfm
+ texmf-dist/tex/generic/musixps/musixps.tex
+ texmf-dist/tex/generic/musixps/slurs.tex
+
+name musixtex
+category Package
+revision 613
+shortdesc Sophisticated music typesetting
+longdesc MusiXTeX is a set of macros, based on the earlier MusicTeX, for
+longdesc typesetting music with TeX. MusicTeX demonstrated that TeX
+longdesc alone cannot practically typeset good-looking ties and slurs;
+longdesc MusiXTeX therefore works with a separate processor (musixflx)
+longdesc to generate the slurs. As a result, MusixTeX is a three-pass
+longdesc system: TeX, musixflx, and TeX again. This version of MusixTeX
+longdesc builds upon work by Andreas Egler, whose own version is no
+longdesc longer being developed. Raw MusiXTeX macros are universally
+longdesc acknowledged to be tricky to write: most users employ the pmx
+longdesc preprocessor, which takes much of the strain. However, no-one
+longdesc would claim that even pmx could serve as a ‘composer's
+longdesc workbench’ — among free software offerings, the composer is
+longdesc probably best served by lilypond, and there are several good
+longdesc (and very expensive) commercial packages.
+execute addMixedMap musix.map
+docfiles size=2560660
+ texmf-dist/doc/generic/musixtex/CHANGES
+ texmf-dist/doc/generic/musixtex/README details="Package documentation"
+ texmf-dist/doc/generic/musixtex/README.psfonts
+ texmf-dist/doc/generic/musixtex/backgrnd.sty
+ texmf-dist/doc/generic/musixtex/examples/adagio.tex
+ texmf-dist/doc/generic/musixtex/examples/albinoni.tex
+ texmf-dist/doc/generic/musixtex/examples/angescam.tex
+ texmf-dist/doc/generic/musixtex/examples/angescao.tex
+ texmf-dist/doc/generic/musixtex/examples/angescax.tex
+ texmf-dist/doc/generic/musixtex/examples/avemaria.tex
+ texmf-dist/doc/generic/musixtex/examples/avemarid.tex
+ texmf-dist/doc/generic/musixtex/examples/avemaril.tex
+ texmf-dist/doc/generic/musixtex/examples/avemario.tex
+ texmf-dist/doc/generic/musixtex/examples/avemarix.tex
+ texmf-dist/doc/generic/musixtex/examples/avemaroo.tex
+ texmf-dist/doc/generic/musixtex/examples/aveverch.tex
+ texmf-dist/doc/generic/musixtex/examples/aveverdd.tex
+ texmf-dist/doc/generic/musixtex/examples/aveveruc.tex
+ texmf-dist/doc/generic/musixtex/examples/aveverud.tex
+ texmf-dist/doc/generic/musixtex/examples/aveverum.tex
+ texmf-dist/doc/generic/musixtex/examples/canticor.tex
+ texmf-dist/doc/generic/musixtex/examples/canticox.tex
+ texmf-dist/doc/generic/musixtex/examples/chanson.tex
+ texmf-dist/doc/generic/musixtex/examples/dissonan.tex
+ texmf-dist/doc/generic/musixtex/examples/fantaisc.tex
+ texmf-dist/doc/generic/musixtex/examples/fantaisd.tex
+ texmf-dist/doc/generic/musixtex/examples/fantaisi.tex
+ texmf-dist/doc/generic/musixtex/examples/fantcmol.tex
+ texmf-dist/doc/generic/musixtex/examples/fantfuga.tex
+ texmf-dist/doc/generic/musixtex/examples/fugcmoll.tex
+ texmf-dist/doc/generic/musixtex/examples/fugue.tex
+ texmf-dist/doc/generic/musixtex/examples/gloriab.tex
+ texmf-dist/doc/generic/musixtex/examples/glorias.tex
+ texmf-dist/doc/generic/musixtex/examples/gloriax.tex
+ texmf-dist/doc/generic/musixtex/examples/gymnoman.tex
+ texmf-dist/doc/generic/musixtex/examples/ilestne.tex
+ texmf-dist/doc/generic/musixtex/examples/ilestnex.tex
+ texmf-dist/doc/generic/musixtex/examples/ilfaitda.tex
+ texmf-dist/doc/generic/musixtex/examples/ilfaitdx.tex
+ texmf-dist/doc/generic/musixtex/examples/kv315.tex
+ texmf-dist/doc/generic/musixtex/examples/kv315f.tex
+ texmf-dist/doc/generic/musixtex/examples/kv315h.tex
+ texmf-dist/doc/generic/musixtex/examples/kv315o.tex
+ texmf-dist/doc/generic/musixtex/examples/marcello.tex
+ texmf-dist/doc/generic/musixtex/examples/marcon1.tex
+ texmf-dist/doc/generic/musixtex/examples/marcon2.tex
+ texmf-dist/doc/generic/musixtex/examples/marcon3.tex
+ texmf-dist/doc/generic/musixtex/examples/marconf.tex
+ texmf-dist/doc/generic/musixtex/examples/marconh.tex
+ texmf-dist/doc/generic/musixtex/examples/marcono.tex
+ texmf-dist/doc/generic/musixtex/examples/onuitbri.tex
+ texmf-dist/doc/generic/musixtex/examples/onuitbrr.tex
+ texmf-dist/doc/generic/musixtex/examples/onuitbrx.tex
+ texmf-dist/doc/generic/musixtex/examples/ostinato.tex
+ texmf-dist/doc/generic/musixtex/examples/pacifiqc.tex
+ texmf-dist/doc/generic/musixtex/examples/pacifiqn.tex
+ texmf-dist/doc/generic/musixtex/examples/parnasum.tex
+ texmf-dist/doc/generic/musixtex/examples/prelfug.tex
+ texmf-dist/doc/generic/musixtex/examples/prelude.tex
+ texmf-dist/doc/generic/musixtex/examples/recit.tex
+ texmf-dist/doc/generic/musixtex/examples/recueil.tex
+ texmf-dist/doc/generic/musixtex/examples/romances.tex
+ texmf-dist/doc/generic/musixtex/examples/souvenir.tex
+ texmf-dist/doc/generic/musixtex/examples/souvenix.tex
+ texmf-dist/doc/generic/musixtex/examples/tierce.tex
+ texmf-dist/doc/generic/musixtex/examples/traeumer.tex
+ texmf-dist/doc/generic/musixtex/examples/widor.tex
+ texmf-dist/doc/generic/musixtex/examples/widor_16.tex
+ texmf-dist/doc/generic/musixtex/examples/widor_20.tex
+ texmf-dist/doc/generic/musixtex/license.txt
+ texmf-dist/doc/generic/musixtex/musixdoc.bat
+ texmf-dist/doc/generic/musixtex/musixdoc.mx1
+ texmf-dist/doc/generic/musixtex/musixdoc.mx2
+ texmf-dist/doc/generic/musixtex/musixdoc.pdf details="Package documentation"
+ texmf-dist/doc/generic/musixtex/musixdoc.sty
+ texmf-dist/doc/generic/musixtex/musixdoc.tex
+ texmf-dist/doc/generic/musixtex/musixflx.1
+runfiles size=5343309
+ texmf-dist/dvips/musixtex/config.musixtex
+ texmf-dist/fonts/map/dvips/musixtex/musix.map
+ texmf-dist/fonts/source/public/musixtex/musexgen.mf
+ texmf-dist/fonts/source/public/musixtex/musix11.mf
+ texmf-dist/fonts/source/public/musixtex/musix13.mf
+ texmf-dist/fonts/source/public/musixtex/musix16.mf
+ texmf-dist/fonts/source/public/musixtex/musix20.mf
+ texmf-dist/fonts/source/public/musixtex/musix24.mf
+ texmf-dist/fonts/source/public/musixtex/musix25.mf
+ texmf-dist/fonts/source/public/musixtex/musix29.mf
+ texmf-dist/fonts/source/public/musixtex/musixgen.mf
+ texmf-dist/fonts/source/public/musixtex/musixsps.mf
+ texmf-dist/fonts/source/public/musixtex/musixspx.mf
+ texmf-dist/fonts/source/public/musixtex/xdrawsl.mf
+ texmf-dist/fonts/source/public/musixtex/xdrawzl.mf
+ texmf-dist/fonts/source/public/musixtex/xgreg11.mf
+ texmf-dist/fonts/source/public/musixtex/xgreg13.mf
+ texmf-dist/fonts/source/public/musixtex/xgreg16.mf
+ texmf-dist/fonts/source/public/musixtex/xgreg20.mf
+ texmf-dist/fonts/source/public/musixtex/xgreg24.mf
+ texmf-dist/fonts/source/public/musixtex/xgreg25.mf
+ texmf-dist/fonts/source/public/musixtex/xgreg29.mf
+ texmf-dist/fonts/source/public/musixtex/xgreggen.mf
+ texmf-dist/fonts/source/public/musixtex/xsld11.mf
+ texmf-dist/fonts/source/public/musixtex/xsld11d.mf
+ texmf-dist/fonts/source/public/musixtex/xsld13.mf
+ texmf-dist/fonts/source/public/musixtex/xsld13d.mf
+ texmf-dist/fonts/source/public/musixtex/xsld16.mf
+ texmf-dist/fonts/source/public/musixtex/xsld16d.mf
+ texmf-dist/fonts/source/public/musixtex/xsld20.mf
+ texmf-dist/fonts/source/public/musixtex/xsld20d.mf
+ texmf-dist/fonts/source/public/musixtex/xsld24.mf
+ texmf-dist/fonts/source/public/musixtex/xsld24d.mf
+ texmf-dist/fonts/source/public/musixtex/xsld29.mf
+ texmf-dist/fonts/source/public/musixtex/xsld29d.mf
+ texmf-dist/fonts/source/public/musixtex/xsldd20.mf
+ texmf-dist/fonts/source/public/musixtex/xsldu20.mf
+ texmf-dist/fonts/source/public/musixtex/xslgen.mf
+ texmf-dist/fonts/source/public/musixtex/xslgend.mf
+ texmf-dist/fonts/source/public/musixtex/xslgenu.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd11.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd11d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd13.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd13d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd16.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd16d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd20.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd20d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd24.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd24d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd29.mf
+ texmf-dist/fonts/source/public/musixtex/xslhd29d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu11.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu11d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu13.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu13d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu16.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu16d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu20.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu20d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu24.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu24d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu29.mf
+ texmf-dist/fonts/source/public/musixtex/xslhu29d.mf
+ texmf-dist/fonts/source/public/musixtex/xslhz-o.mf
+ texmf-dist/fonts/source/public/musixtex/xslhz.mf
+ texmf-dist/fonts/source/public/musixtex/xslhz20.mf
+ texmf-dist/fonts/source/public/musixtex/xslhz20d.mf
+ texmf-dist/fonts/source/public/musixtex/xslu11.mf
+ texmf-dist/fonts/source/public/musixtex/xslu11d.mf
+ texmf-dist/fonts/source/public/musixtex/xslu13.mf
+ texmf-dist/fonts/source/public/musixtex/xslu13d.mf
+ texmf-dist/fonts/source/public/musixtex/xslu16.mf
+ texmf-dist/fonts/source/public/musixtex/xslu16d.mf
+ texmf-dist/fonts/source/public/musixtex/xslu20.mf
+ texmf-dist/fonts/source/public/musixtex/xslu20d.mf
+ texmf-dist/fonts/source/public/musixtex/xslu24.mf
+ texmf-dist/fonts/source/public/musixtex/xslu24d.mf
+ texmf-dist/fonts/source/public/musixtex/xslu29.mf
+ texmf-dist/fonts/source/public/musixtex/xslu29d.mf
+ texmf-dist/fonts/source/public/musixtex/xslud20.mf
+ texmf-dist/fonts/source/public/musixtex/xslup20.mf
+ texmf-dist/fonts/source/public/musixtex/xslz.mf
+ texmf-dist/fonts/source/public/musixtex/xslz20.mf
+ texmf-dist/fonts/source/public/musixtex/xslz20d.mf
+ texmf-dist/fonts/source/public/musixtex/xtie20.mf
+ texmf-dist/fonts/tfm/public/musixtex/musix11.tfm
+ texmf-dist/fonts/tfm/public/musixtex/musix13.tfm
+ texmf-dist/fonts/tfm/public/musixtex/musix16.tfm
+ texmf-dist/fonts/tfm/public/musixtex/musix20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/musix24.tfm
+ texmf-dist/fonts/tfm/public/musixtex/musix25.tfm
+ texmf-dist/fonts/tfm/public/musixtex/musix29.tfm
+ texmf-dist/fonts/tfm/public/musixtex/musixsps.tfm
+ texmf-dist/fonts/tfm/public/musixtex/musixspx.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xgreg11.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xgreg13.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xgreg16.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xgreg20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xgreg24.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xgreg29.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld11.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld11d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld13.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld13d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld16.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld16d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld20d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld24.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld24d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld29.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsld29d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsldd20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xsldu20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd11.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd11d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd13.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd13d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd16.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd16d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd20d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd24.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd24d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd29.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhd29d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu11.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu11d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu13.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu13d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu16.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu16d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu20d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu20m.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu24.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu24d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu29.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhu29d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhz20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslhz20d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu11.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu11d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu13.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu13d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu16.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu16d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu20d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu24.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu24d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu29.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslu29d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslud20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslup20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslz20.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xslz20d.tfm
+ texmf-dist/fonts/tfm/public/musixtex/xtie20.tfm
+ texmf-dist/fonts/type1/public/musixtex/musix11.pfb
+ texmf-dist/fonts/type1/public/musixtex/musix13.pfb
+ texmf-dist/fonts/type1/public/musixtex/musix16.pfb
+ texmf-dist/fonts/type1/public/musixtex/musix20.pfb
+ texmf-dist/fonts/type1/public/musixtex/musix24.pfb
+ texmf-dist/fonts/type1/public/musixtex/musix29.pfb
+ texmf-dist/fonts/type1/public/musixtex/musixsps.pfb
+ texmf-dist/fonts/type1/public/musixtex/musixspx.pfb
+ texmf-dist/fonts/type1/public/musixtex/xgreg11.pfb
+ texmf-dist/fonts/type1/public/musixtex/xgreg13.pfb
+ texmf-dist/fonts/type1/public/musixtex/xgreg16.pfb
+ texmf-dist/fonts/type1/public/musixtex/xgreg20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xgreg24.pfb
+ texmf-dist/fonts/type1/public/musixtex/xgreg29.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld11.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld11d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld13.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld13d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld16.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld16d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld20d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld24.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld24d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld29.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsld29d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsldd20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xsldu20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd11.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd11d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd13.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd13d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd16.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd16d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd20d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd24.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd24d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd29.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhd29d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu11.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu11d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu13.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu13d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu16.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu16d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu20d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu24.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu24d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu29.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhu29d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhz20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslhz20d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu11.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu11d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu13.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu13d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu16.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu16d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu20d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu24.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu24d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu29.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslu29d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslud20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslup20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslz20.pfb
+ texmf-dist/fonts/type1/public/musixtex/xslz20d.pfb
+ texmf-dist/fonts/type1/public/musixtex/xtie20.pfb
+ texmf-dist/tex/generic/musixtex/musixadd.tex
+ texmf-dist/tex/generic/musixtex/musixbar.tex
+ texmf-dist/tex/generic/musixtex/musixbbm.tex
+ texmf-dist/tex/generic/musixtex/musixblx.tex
+ texmf-dist/tex/generic/musixtex/musixbm.tex
+ texmf-dist/tex/generic/musixtex/musixcho.tex
+ texmf-dist/tex/generic/musixtex/musixcpt.sty
+ texmf-dist/tex/generic/musixtex/musixcpt.tex
+ texmf-dist/tex/generic/musixtex/musixdat.tex
+ texmf-dist/tex/generic/musixtex/musixdia.tex
+ texmf-dist/tex/generic/musixtex/musixeng.tex
+ texmf-dist/tex/generic/musixtex/musixevo.tex
+ texmf-dist/tex/generic/musixtex/musixext.tex
+ texmf-dist/tex/generic/musixtex/musixfll.sty
+ texmf-dist/tex/generic/musixtex/musixfll.tex
+ texmf-dist/tex/generic/musixtex/musixgre.tex
+ texmf-dist/tex/generic/musixtex/musixgui.tex
+ texmf-dist/tex/generic/musixtex/musixhor.tex
+ texmf-dist/tex/generic/musixtex/musixhou.tex
+ texmf-dist/tex/generic/musixtex/musixinv.tex
+ texmf-dist/tex/generic/musixtex/musixlit.tex
+ texmf-dist/tex/generic/musixtex/musixltx.tex
+ texmf-dist/tex/generic/musixtex/musixmad.tex
+ texmf-dist/tex/generic/musixtex/musixper.tex
+ texmf-dist/tex/generic/musixtex/musixpoi.tex
+ texmf-dist/tex/generic/musixtex/musixref.tex
+ texmf-dist/tex/generic/musixtex/musixslu.tex
+ texmf-dist/tex/generic/musixtex/musixsqr.tex
+ texmf-dist/tex/generic/musixtex/musixste.tex
+ texmf-dist/tex/generic/musixtex/musixstf.tex
+ texmf-dist/tex/generic/musixtex/musixstr.tex
+ texmf-dist/tex/generic/musixtex/musixsty.tex
+ texmf-dist/tex/generic/musixtex/musixtex.ins
+ texmf-dist/tex/generic/musixtex/musixtex.sty
+ texmf-dist/tex/generic/musixtex/musixtex.tex
+ texmf-dist/tex/generic/musixtex/musixtri.tex
+catalogue-version T.113
+catalogue-date 2006-12-21 23:43:15 +0100
+catalogue-ctan /macros/musixtex/taupin
+catalogue-license gpl
+
+name muthesis
+category Package
+revision 4856
+shortdesc Classes for University of Manchester Dept of Computer Science.
+longdesc Includes thesis and project report document classes from the
+longdesc University of Manchester's Department of Computer Science.
+docfiles size=514
+ texmf-dist/doc/latex/muthesis/README
+runfiles size=21544
+ texmf-dist/tex/latex/muthesis/muthesis.cls
+ texmf-dist/tex/latex/muthesis/third-rep.cls
+catalogue-version
+catalogue-date 2007-09-03 18:03:58 +0200
+catalogue-ctan /macros/latex/contrib/muthesis
+catalogue-license lppl
+
+name mwcls
+category Package
+revision 2411
+shortdesc Polish-oriented document classes.
+longdesc mwcls is a set of document classes for LaTeX 2e designed with
+longdesc Polish typographical tradition in mind. Classes include:
+longdesc 'mwart' (which is a replacement for 'article'), 'mwrep'
+longdesc ('report'), and 'mwbk' ('book'). Most features present in
+longdesc standard classes work with mwcls. Some extensions/exceptions
+longdesc include: sectioning commands allow for second optional argument
+longdesc (it's possible to state different texts for running head and
+longdesc for TOC), new environments 'itemize*' and 'enumerate*' for
+longdesc lists with long items, page styles have variants for normal,
+longdesc opening, closing, and blank pages.
+docfiles size=177889
+ texmf-dist/doc/latex/mwcls/CZYTAJ details="Package README" language="pl"
+ texmf-dist/doc/latex/mwcls/ChangeLog
+ texmf-dist/doc/latex/mwcls/README details="Package README" language="en"
+ texmf-dist/doc/latex/mwcls/mwclsdoc.pdf details="Package documentation" language="pl"
+srcfiles size=141667
+ texmf-dist/source/latex/mwcls/mwcls.dtx
+ texmf-dist/source/latex/mwcls/mwcls.ins
+runfiles size=142804
+ texmf-dist/tex/latex/mwcls/mw10.clo
+ texmf-dist/tex/latex/mwcls/mw11.clo
+ texmf-dist/tex/latex/mwcls/mw12.clo
+ texmf-dist/tex/latex/mwcls/mwart.cls
+ texmf-dist/tex/latex/mwcls/mwbk.cls
+ texmf-dist/tex/latex/mwcls/mwbk10.clo
+ texmf-dist/tex/latex/mwcls/mwbk11.clo
+ texmf-dist/tex/latex/mwcls/mwbk12.clo
+ texmf-dist/tex/latex/mwcls/mwrep.cls
+catalogue-version 0.65
+catalogue-date 2006-11-09 21:22:44 +0100
+catalogue-ctan /macros/latex/contrib/mwcls
+catalogue-license lppl
+
+name mwrite
+category Package
+revision 1123
+shortdesc Write information to files.
+longdesc Write information to arbitrarily many files with names
+longdesc \jobname.<ext>. The package itself writes to a file
+longdesc \jobname.col; the user should not ask the package to write to
+longdesc that, or to any of the other standard LaTeX extensions like
+longdesc tex, aux, log, and so on.
+runfiles size=4850
+ texmf-dist/tex/latex/mwrite/mwrite.sty
+catalogue-version 2.2
+catalogue-date 2007-01-04 23:51:59 +0100
+catalogue-ctan /macros/latex/contrib/mwrite/mwrite.sty
+catalogue-license other
+
+name mxd
+category Package
+revision 1487
+shortdesc Support for Mongolian "horizontal" (Xewtee Dorwoljin) script.
+longdesc This package provides macro support, and MetaFont fonts, for
+longdesc typesetting the Mongolian Xäwtää Dörbölijn script in
+longdesc LaTeX. The script is an archaic one, which meets the needs of
+longdesc Mongolian, Tibetan and Sanskrit, but is now little used. The
+longdesc package is of alpha status, presented for evaluation.
+docfiles size=35891
+ texmf-dist/doc/latex/mxd/README details="Readme"
+ texmf-dist/doc/latex/mxd/mxd4tex.dvi
+ texmf-dist/doc/latex/mxd/mxd4tex.tex
+srcfiles size=619
+ texmf-dist/source/latex/mxd/INSTALL
+runfiles size=54959
+ texmf-dist/fonts/source/public/mxd/mxdatoms.mf
+ texmf-dist/fonts/source/public/mxd/mxdcodes.mf
+ texmf-dist/fonts/source/public/mxd/mxdglyph.mf
+ texmf-dist/fonts/source/public/mxd/mxdligs.mf
+ texmf-dist/fonts/source/public/mxd/mxdparmb.mf
+ texmf-dist/fonts/source/public/mxd/mxdparmr.mf
+ texmf-dist/fonts/source/public/mxd/mxdrb.mf
+ texmf-dist/fonts/source/public/mxd/mxdrm.mf
+ texmf-dist/fonts/source/public/mxd/mxdsb.mf
+ texmf-dist/fonts/source/public/mxd/mxdsm.mf
+ texmf-dist/fonts/tfm/public/mxd/mxdrb.tfm
+ texmf-dist/fonts/tfm/public/mxd/mxdrm.tfm
+ texmf-dist/fonts/tfm/public/mxd/mxdsb.tfm
+ texmf-dist/fonts/tfm/public/mxd/mxdsm.tfm
+ texmf-dist/tex/latex/mxd/lmxenc.def
+ texmf-dist/tex/latex/mxd/lmxmxd.fd
+ texmf-dist/tex/latex/mxd/mxd.sty
+catalogue-version 0.4 alpha
+catalogue-date 2007-03-10 12:18:05 +0100
+catalogue-ctan /language/mongolian/mxd
+catalogue-license unknown
+
+name mxedruli
+category Package
+revision 1487
+shortdesc A pair of Georgian fonts.
+longdesc Two Georgian fonts, written in MetaFont, which cover the
+longdesc Mxedruli and the Xucuri alphabets.
+docfiles size=65288
+ texmf-dist/doc/latex/mxedruli/mxeddoc.ps.gz
+ texmf-dist/doc/latex/mxedruli/ossetic.dvi
+ texmf-dist/doc/latex/mxedruli/ossetic.tex
+ texmf-dist/doc/latex/mxedruli/readme details="Readme"
+ texmf-dist/doc/latex/mxedruli/vepxis.dvi
+ texmf-dist/doc/latex/mxedruli/vepxis.tex
+runfiles size=196767
+ texmf-dist/fonts/source/public/mxedruli/mxed.mf
+ texmf-dist/fonts/source/public/mxedruli/mxed10.mf
+ texmf-dist/fonts/source/public/mxedruli/mxedacc.mf
+ texmf-dist/fonts/source/public/mxedruli/mxedbase.mf
+ texmf-dist/fonts/source/public/mxedruli/mxedbf10.mf
+ texmf-dist/fonts/source/public/mxedruli/mxedc10.mf
+ texmf-dist/fonts/source/public/mxedruli/mxedcaps.mf
+ texmf-dist/fonts/source/public/mxedruli/mxedd.mf
+ texmf-dist/fonts/source/public/mxedruli/mxedfont.mf
+ texmf-dist/fonts/source/public/mxedruli/mxedi10.mf
+ texmf-dist/fonts/source/public/mxedruli/mxedp.mf
+ texmf-dist/fonts/source/public/mxedruli/xuc.mf
+ texmf-dist/fonts/source/public/mxedruli/xuc10.mf
+ texmf-dist/fonts/source/public/mxedruli/xucbase.mf
+ texmf-dist/fonts/source/public/mxedruli/xucd.mf
+ texmf-dist/fonts/source/public/mxedruli/xucfont.mf
+ texmf-dist/fonts/source/public/mxedruli/xucl.mf
+ texmf-dist/fonts/source/public/mxedruli/xucp.mf
+ texmf-dist/fonts/tfm/public/mxedruli/mxed10.tfm
+ texmf-dist/fonts/tfm/public/mxedruli/mxedbf10.tfm
+ texmf-dist/fonts/tfm/public/mxedruli/mxedc10.tfm
+ texmf-dist/fonts/tfm/public/mxedruli/mxedi10.tfm
+ texmf-dist/fonts/tfm/public/mxedruli/xuc10.tfm
+ texmf-dist/tex/latex/mxedruli/Umxed.fd
+ texmf-dist/tex/latex/mxedruli/Uxuc.fd
+ texmf-dist/tex/latex/mxedruli/mxedruli.sty
+ texmf-dist/tex/latex/mxedruli/xucuri.sty
+catalogue-version
+catalogue-date 2007-03-10 12:18:05 +0100
+catalogue-ctan /fonts/georgian/mxedruli
+catalogue-license unknown
+
+name nag
+category Package
+revision 4461
+shortdesc Detecting and warning about obsolete LaTeX commands
+longdesc Old habits die hard. All the same, there are commands, classes
+longdesc and packages which are outdated and superseded. The nag package
+longdesc provides routines to warn the user about the use of such
+longdesc obsolete things. As an example, we provide an extension that
+longdesc detects many of the “sins” described in l2tabu.
+docfiles size=198036
+ texmf-dist/doc/latex/nag/README details="Readme"
+ texmf-dist/doc/latex/nag/nag.pdf details="Package documentation"
+ texmf-dist/doc/latex/nag/nagdemo.tex
+srcfiles size=45918
+ texmf-dist/source/latex/nag/nag.dtx
+ texmf-dist/source/latex/nag/nag.ins
+runfiles size=22253
+ texmf-dist/tex/latex/nag/nag-abort.cfg
+ texmf-dist/tex/latex/nag/nag-experimental.cfg
+ texmf-dist/tex/latex/nag/nag-l2tabu.cfg
+ texmf-dist/tex/latex/nag/nag-orthodox.cfg
+ texmf-dist/tex/latex/nag/nag.sty
+catalogue-version 0.55
+catalogue-date 2007-06-11 15:06:43 +0200
+catalogue-ctan /macros/latex/contrib/nag
+catalogue-license lppl
+
+name namespc
+category Package
+revision 5011
+shortdesc Rudimentary c++-like namespaces in LaTeX.
+longdesc The namespc package adds rudimentary c++-like namespace
+longdesc functionality to LaTeX. It may be used to declare local LaTeX
+longdesc commands, which can be made accessible in a later contexts
+longdesc without defining them globally.
+docfiles size=138697
+ texmf-dist/doc/latex/namespc/README details="Readme"
+ texmf-dist/doc/latex/namespc/namespc.pdf details="Package documentation"
+srcfiles size=10392
+ texmf-dist/source/latex/namespc/namespc.dtx
+runfiles size=1106
+ texmf-dist/tex/latex/namespc/namespc.sty
+catalogue-version
+catalogue-date 2006-12-22 14:37:19 +0100
+catalogue-ctan /macros/latex/contrib/namespc
+catalogue-license lppl
+
+name natbib
+category Package
+revision 5316
+shortdesc Flexible bibliography support.
+longdesc Provides a style with author-year and numbered references, as
+longdesc well as much detailed of support for other bibliography use.
+longdesc Provides versions of the standard BibTeX styles that are
+longdesc compatible with natbib - plainnat, unsrtnat, abbrnat. The
+longdesc bibliography styles produced by custom-bib are designed from
+longdesc the start to be compatible with natbib.
+docfiles size=289996
+ texmf-dist/doc/latex/natbib/README.1st details="First README"
+ texmf-dist/doc/latex/natbib/README.v81 details="README for this release"
+ texmf-dist/doc/latex/natbib/natbib.pdf details="Package documentation"
+ texmf-dist/doc/latex/natbib/natnotes.pdf details="Reference Sheet"
+ texmf-dist/doc/latex/natbib/natnotes.tex
+srcfiles size=231920
+ texmf-dist/source/latex/natbib/bibentry.drv
+ texmf-dist/source/latex/natbib/bibentry.dtx
+ texmf-dist/source/latex/natbib/bibentry.ins
+ texmf-dist/source/latex/natbib/natbib.drv
+ texmf-dist/source/latex/natbib/natbib.dtx
+ texmf-dist/source/latex/natbib/natbib.ins
+runfiles size=119795
+ texmf-dist/bibtex/bst/natbib/abbrvnat.bst
+ texmf-dist/bibtex/bst/natbib/plainnat.bst
+ texmf-dist/bibtex/bst/natbib/unsrtnat.bst
+ texmf-dist/tex/latex/natbib/bibentry.sty
+ texmf-dist/tex/latex/natbib/natbib.sty
+catalogue-version 8.1
+catalogue-date 2007-10-30 23:01:23 +0100
+catalogue-ctan /macros/latex/contrib/natbib
+catalogue-license lppl
+
+name nath
+category Package
+revision 1129
+docfiles size=188321
+ texmf-dist/doc/latex/nath/README
+ texmf-dist/doc/latex/nath/nathguide.pdf
+ texmf-dist/doc/latex/nath/nathguide.tex
+runfiles size=83430
+ texmf-dist/tex/latex/nath/nath.sty
+
+name nature
+category Package
+revision 1130
+shortdesc Prepare papers for the journal Nature.
+longdesc Nature does not accept papers in LaTeX, but it does accept PDF.
+longdesc This class and BibTeX style provide what seems to be necessary
+longdesc to produce papers in a format acceptable to the publisher.
+docfiles size=6319
+ texmf-dist/doc/latex/nature/README
+ texmf-dist/doc/latex/nature/nature-template.tex
+runfiles size=39826
+ texmf-dist/bibtex/bst/nature/naturemag.bst
+ texmf-dist/tex/latex/nature/nature.cls
+catalogue-version 1.0
+catalogue-date 2006-12-22 14:37:19 +0100
+catalogue-ctan /macros/latex/contrib/nature
+catalogue-license unknown
+
+name ncclatex
+category Package
+revision 2240
+docfiles size=694357
+ texmf-dist/doc/latex/ncclatex/README
+ texmf-dist/doc/latex/ncclatex/changes.txt
+ texmf-dist/doc/latex/ncclatex/manifest.txt
+ texmf-dist/doc/latex/ncclatex/ncclatex.pdf
+ texmf-dist/doc/latex/ncclatex/ncclatex.tex
+ texmf-dist/doc/latex/ncclatex/nccnews.pdf
+runfiles size=82038
+ texmf-dist/tex/latex/ncclatex/cp1251-light.def
+ texmf-dist/tex/latex/ncclatex/ncc.cls
+ texmf-dist/tex/latex/ncclatex/ncc10.clo
+ texmf-dist/tex/latex/ncclatex/ncc11.clo
+ texmf-dist/tex/latex/ncclatex/ncc12.clo
+ texmf-dist/tex/latex/ncclatex/ncc14.clo
+ texmf-dist/tex/latex/ncclatex/nccart.clo
+ texmf-dist/tex/latex/ncclatex/nccbiblist.sty
+ texmf-dist/tex/latex/ncclatex/nccbook.clo
+ texmf-dist/tex/latex/ncclatex/nccdefaults.sty
+ texmf-dist/tex/latex/ncclatex/nccfit.clo
+ texmf-dist/tex/latex/ncclatex/ncchdr.sty
+ texmf-dist/tex/latex/ncclatex/nccheadings.sty
+ texmf-dist/tex/latex/ncclatex/nccindex.sty
+ texmf-dist/tex/latex/ncclatex/ncclatex.sty
+ texmf-dist/tex/latex/ncclatex/nccltrus.sty
+ texmf-dist/tex/latex/ncclatex/nccold.sty
+ texmf-dist/tex/latex/ncclatex/nccproc.cls
+ texmf-dist/tex/latex/ncclatex/nccsections.sty
+ texmf-dist/tex/latex/ncclatex/ncctheorems.sty
+ texmf-dist/tex/latex/ncclatex/ncctitle.clo
+ texmf-dist/tex/latex/ncclatex/ncctitle.sty
+ texmf-dist/tex/latex/ncclatex/ncctitlepage.sty
+ texmf-dist/tex/latex/ncclatex/sibjnm.cls
+
+name ncctools
+category Package
+revision 2240
+shortdesc A collection of general packages for LaTeX
+longdesc The NCCtools bundle contains many packages for general use
+longdesc under LaTeX; many are also used by NCC LaTeX. The bundle
+longdesc includes tools for: execute commands after a package is loaded;
+longdesc watermarks; counter manipulation (dynamic counters, changing
+longdesc counter numbering with another counter); improvements to the
+longdesc description environment; hyphenation of compound words; new
+longdesc levels of footnotes; space-filling patterns; "poor man's" Black
+longdesc Board Bold symbols; alignment of the content of a box; use
+longdesc comma as decimal separator; boxes with their own crop marks;
+longdesc page cropmarks; improvements to fancy headers; float "styles",
+longdesc mini floats, side floats; manually marked footnotes; extension
+longdesc of amsmath; control of paragraph skip; an envelope to the
+longdesc graphicx package; dashed and multiple rules; alternative
+longdesc techniques for declarations of sections, captions, and toc-
+longdesc entries; generalised text-stretching; generation of new
+longdesc theorem-like environments; control of the text area; centred
+longdesc page layouts; and an un-numbered top-level section.
+docfiles size=2913682
+ texmf-dist/doc/latex/ncctools/README
+ texmf-dist/doc/latex/ncctools/README.source
+ texmf-dist/doc/latex/ncctools/afterpackage.pdf
+ texmf-dist/doc/latex/ncctools/changes.txt
+ texmf-dist/doc/latex/ncctools/dcounter.pdf
+ texmf-dist/doc/latex/ncctools/desclist.pdf
+ texmf-dist/doc/latex/ncctools/extdash.pdf
+ texmf-dist/doc/latex/ncctools/manifest.txt
+ texmf-dist/doc/latex/ncctools/manyfoot.pdf
+ texmf-dist/doc/latex/ncctools/mboxfill.pdf
+ texmf-dist/doc/latex/ncctools/nccbbb.pdf
+ texmf-dist/doc/latex/ncctools/nccboxes.pdf
+ texmf-dist/doc/latex/ncctools/ncccomma.pdf
+ texmf-dist/doc/latex/ncctools/ncccropbox.pdf
+ texmf-dist/doc/latex/ncctools/ncccropmark.pdf
+ texmf-dist/doc/latex/ncctools/nccfancyhdr.pdf
+ texmf-dist/doc/latex/ncctools/nccfloats.pdf
+ texmf-dist/doc/latex/ncctools/nccfoots.pdf
+ texmf-dist/doc/latex/ncctools/nccmath.pdf
+ texmf-dist/doc/latex/ncctools/nccparskip.pdf
+ texmf-dist/doc/latex/ncctools/nccpic.pdf
+ texmf-dist/doc/latex/ncctools/nccrules.pdf
+ texmf-dist/doc/latex/ncctools/nccsect.pdf
+ texmf-dist/doc/latex/ncctools/nccstretch.pdf
+ texmf-dist/doc/latex/ncctools/nccthm.pdf
+ texmf-dist/doc/latex/ncctools/ncctools.pdf
+ texmf-dist/doc/latex/ncctools/ncctools.tex
+ texmf-dist/doc/latex/ncctools/textarea.pdf
+ texmf-dist/doc/latex/ncctools/tocenter.pdf
+ texmf-dist/doc/latex/ncctools/topsection.pdf
+ texmf-dist/doc/latex/ncctools/watermark.pdf
+srcfiles size=441868
+ texmf-dist/source/latex/ncctools/afterpackage.dtx
+ texmf-dist/source/latex/ncctools/dcounter.dtx
+ texmf-dist/source/latex/ncctools/desclist.dtx
+ texmf-dist/source/latex/ncctools/extdash.dtx
+ texmf-dist/source/latex/ncctools/manyfoot.dtx
+ texmf-dist/source/latex/ncctools/mboxfill.dtx
+ texmf-dist/source/latex/ncctools/nccbbb.dtx
+ texmf-dist/source/latex/ncctools/nccboxes.dtx
+ texmf-dist/source/latex/ncctools/ncccomma.dtx
+ texmf-dist/source/latex/ncctools/ncccropbox.dtx
+ texmf-dist/source/latex/ncctools/ncccropmark.dtx
+ texmf-dist/source/latex/ncctools/nccfancyhdr.dtx
+ texmf-dist/source/latex/ncctools/nccfloats.dtx
+ texmf-dist/source/latex/ncctools/nccfoots.dtx
+ texmf-dist/source/latex/ncctools/nccmath.dtx
+ texmf-dist/source/latex/ncctools/nccparskip.dtx
+ texmf-dist/source/latex/ncctools/nccpic.dtx
+ texmf-dist/source/latex/ncctools/nccrules.dtx
+ texmf-dist/source/latex/ncctools/nccsect.dtx
+ texmf-dist/source/latex/ncctools/nccstretch.dtx
+ texmf-dist/source/latex/ncctools/nccthm.dtx
+ texmf-dist/source/latex/ncctools/ncctools.ins
+ texmf-dist/source/latex/ncctools/textarea.dtx
+ texmf-dist/source/latex/ncctools/tocenter.dtx
+ texmf-dist/source/latex/ncctools/topsection.dtx
+ texmf-dist/source/latex/ncctools/watermark.dtx
+runfiles size=124377
+ texmf-dist/tex/latex/ncctools/afterpackage.sty
+ texmf-dist/tex/latex/ncctools/dcounter.sty
+ texmf-dist/tex/latex/ncctools/desclist.sty
+ texmf-dist/tex/latex/ncctools/extdash.sty
+ texmf-dist/tex/latex/ncctools/manyfoot.sty
+ texmf-dist/tex/latex/ncctools/mboxfill.sty
+ texmf-dist/tex/latex/ncctools/nccbbb.sty
+ texmf-dist/tex/latex/ncctools/nccboxes.sty
+ texmf-dist/tex/latex/ncctools/ncccomma.sty
+ texmf-dist/tex/latex/ncctools/ncccropbox.sty
+ texmf-dist/tex/latex/ncctools/ncccropmark.sty
+ texmf-dist/tex/latex/ncctools/nccfancyhdr.sty
+ texmf-dist/tex/latex/ncctools/nccfloats.sty
+ texmf-dist/tex/latex/ncctools/nccfoots.sty
+ texmf-dist/tex/latex/ncctools/nccmath.sty
+ texmf-dist/tex/latex/ncctools/nccparskip.sty
+ texmf-dist/tex/latex/ncctools/nccpic.sty
+ texmf-dist/tex/latex/ncctools/nccrules.sty
+ texmf-dist/tex/latex/ncctools/nccsect.sty
+ texmf-dist/tex/latex/ncctools/nccstretch.sty
+ texmf-dist/tex/latex/ncctools/nccthm.sty
+ texmf-dist/tex/latex/ncctools/textarea.sty
+ texmf-dist/tex/latex/ncctools/tocenter.sty
+ texmf-dist/tex/latex/ncctools/topsection.sty
+ texmf-dist/tex/latex/ncctools/watermark.sty
+catalogue-version 3.5
+catalogue-date 2006-12-22 14:37:19 +0100
+catalogue-ctan /macros/latex/contrib/ncctools
+catalogue-license lppl
+
+name ncntrsbk
+category Package
+revision 2488
+runfiles size=989411
+ texmf-dist/dvips/ncntrsbk/config.unc
+ texmf-dist/fonts/afm/adobe/ncntrsbk/pncb8a.afm
+ texmf-dist/fonts/afm/adobe/ncntrsbk/pncbi8a.afm
+ texmf-dist/fonts/afm/adobe/ncntrsbk/pncr8a.afm
+ texmf-dist/fonts/afm/adobe/ncntrsbk/pncri8a.afm
+ texmf-dist/fonts/afm/urw/ncntrsbk/uncb8a.afm
+ texmf-dist/fonts/afm/urw/ncntrsbk/uncbi8a.afm
+ texmf-dist/fonts/afm/urw/ncntrsbk/uncr8a.afm
+ texmf-dist/fonts/afm/urw/ncntrsbk/uncri8a.afm
+ texmf-dist/fonts/map/dvips/ncntrsbk/unc.map
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncb.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncb7t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncb8c.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncb8r.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncb8t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbc.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbc7t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbc8t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbi.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbi7t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbi8c.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbi8r.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbi8t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbo.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbo7t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbo8c.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbo8r.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncbo8t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncr.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncr7t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncr8c.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncr8r.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncr8t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncrc.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncrc7t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncrc8t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncri.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncri7t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncri8c.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncri8r.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncri8t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncro.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncro7t.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncro8c.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncro8r.tfm
+ texmf-dist/fonts/tfm/adobe/ncntrsbk/pncro8t.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/pncb8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/pncbc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/pncbi8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/pncr8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/pncrc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/pncri8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/pncrv8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/rpncb.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/rpncbi.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/rpncr.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/ncntrsbk/rpncri.tfm
+ texmf-dist/fonts/tfm/groff/ncntrsbk/pncb8g.tfm
+ texmf-dist/fonts/tfm/groff/ncntrsbk/pncbi8g.tfm
+ texmf-dist/fonts/tfm/groff/ncntrsbk/pncr8g.tfm
+ texmf-dist/fonts/tfm/groff/ncntrsbk/pncri8g.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncb7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncb8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncb8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncb8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbi7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbi8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbi8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbi8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncbo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncr7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncr8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncr8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncr8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncrc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncrc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncri7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncri8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncri8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncri8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncro7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncro8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncro8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/ncntrsbk/uncro8t.tfm
+ texmf-dist/fonts/type1/urw/ncntrsbk/uncb8a.pfb
+ texmf-dist/fonts/type1/urw/ncntrsbk/uncb8a.pfm
+ texmf-dist/fonts/type1/urw/ncntrsbk/uncbi8a.pfb
+ texmf-dist/fonts/type1/urw/ncntrsbk/uncbi8a.pfm
+ texmf-dist/fonts/type1/urw/ncntrsbk/uncr8a.pfb
+ texmf-dist/fonts/type1/urw/ncntrsbk/uncr8a.pfm
+ texmf-dist/fonts/type1/urw/ncntrsbk/uncri8a.pfb
+ texmf-dist/fonts/type1/urw/ncntrsbk/uncri8a.pfm
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncb.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncb7t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncb8c.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncb8t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbc.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbc7t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbc8t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbi.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbi7t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbi8c.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbi8t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbo.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbo7t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbo8c.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncbo8t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncr.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncr7t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncr8c.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncr8t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncrc.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncrc7t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncrc8t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncri.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncri7t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncri8c.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncri8t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncro.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncro7t.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncro8c.vf
+ texmf-dist/fonts/vf/adobe/ncntrsbk/pncro8t.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/ncntrsbk/pncb8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/ncntrsbk/pncbc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/ncntrsbk/pncbi8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/ncntrsbk/pncr8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/ncntrsbk/pncrc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/ncntrsbk/pncri8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/ncntrsbk/pncrv8z.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncb7t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncb8c.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncb8t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncbc7t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncbc8t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncbi7t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncbi8c.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncbi8t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncbo7t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncbo8c.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncbo8t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncr7t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncr8c.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncr8t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncrc7t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncrc8t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncri7t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncri8c.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncri8t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncro7t.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncro8c.vf
+ texmf-dist/fonts/vf/urw35vf/ncntrsbk/uncro8t.vf
+ texmf-dist/tex/latex/ncntrsbk/8runc.fd
+ texmf-dist/tex/latex/ncntrsbk/omlunc.fd
+ texmf-dist/tex/latex/ncntrsbk/omsunc.fd
+ texmf-dist/tex/latex/ncntrsbk/ot1unc.fd
+ texmf-dist/tex/latex/ncntrsbk/t1unc.fd
+ texmf-dist/tex/latex/ncntrsbk/ts1unc.fd
+
+name newalg
+category Package
+revision 1487
+shortdesc Format algorithms like Cormen, Leiserson and Rivest.
+longdesc For comparison, see Cormen's own clrscode.
+docfiles size=14472
+ texmf-dist/doc/latex/newalg/newalg.dvi
+srcfiles size=14910
+ texmf-dist/source/latex/newalg/README
+ texmf-dist/source/latex/newalg/newalg.dtx
+ texmf-dist/source/latex/newalg/newalg.ins
+runfiles size=4203
+ texmf-dist/tex/latex/newalg/newalg.sty
+catalogue-version
+catalogue-date 2006-12-22 19:14:47 +0100
+catalogue-ctan /macros/latex/contrib/newalg
+catalogue-license unknown
+
+name newfile
+category Package
+revision 1135
+shortdesc User level management of LaTeX input and output.
+longdesc Commands are defined to manage the limited pool of input and
+longdesc output handles provided by TeX. The streams so provided are
+longdesc mapped to various of the LaTeX input and output mechanisms.
+longdesc Some facilities of the verbatim package are also mapped.
+docfiles size=960
+ texmf-dist/doc/latex/newfile/README details="Readme"
+srcfiles size=34373
+ texmf-dist/source/latex/newfile/newfile.dtx
+ texmf-dist/source/latex/newfile/newfile.ins
+runfiles size=6280
+ texmf-dist/tex/latex/newfile/newfile.sty
+catalogue-version 1.0b
+catalogue-date 2006-12-22 19:14:47 +0100
+catalogue-ctan /macros/latex/contrib/newfile
+catalogue-license lppl
+
+name newlfm
+category Package
+revision 1136
+shortdesc Write letters, facsimiles, and memos.
+longdesc Integrates the letter class with fancyhdr and geometry to
+longdesc automatically make letterhead stationary. Useful for writing
+longdesc letters, fax, and memos. You can set up an address book using
+longdesc ‘wrapper’ macros. You put all the information for a person
+longdesc into a wrapper and then put the wrapper in a document. The
+longdesc class handles letterheads automatically. You place the object
+longdesc for the letterhead (picture, information, etc.) in a box and
+longdesc all sizing is set automatically.
+docfiles size=1191470
+ texmf-dist/doc/latex/newlfm/README details="Readme"
+ texmf-dist/doc/latex/newlfm/draft.eps
+ texmf-dist/doc/latex/newlfm/draft.pdf
+ texmf-dist/doc/latex/newlfm/extracd.tex
+ texmf-dist/doc/latex/newlfm/letrinfo.tex
+ texmf-dist/doc/latex/newlfm/lvb.eps
+ texmf-dist/doc/latex/newlfm/lvb.pdf
+ texmf-dist/doc/latex/newlfm/make_clean
+ texmf-dist/doc/latex/newlfm/make_unix
+ texmf-dist/doc/latex/newlfm/make_win.bat
+ texmf-dist/doc/latex/newlfm/makeclean_win.bat
+ texmf-dist/doc/latex/newlfm/manual.pdf details="Package documentation"
+ texmf-dist/doc/latex/newlfm/mintrx.bat
+ texmf-dist/doc/latex/newlfm/newlfm.pdf
+ texmf-dist/doc/latex/newlfm/newlfm.txt
+ texmf-dist/doc/latex/newlfm/palm.eps
+ texmf-dist/doc/latex/newlfm/palm.pdf
+ texmf-dist/doc/latex/newlfm/setup.bat
+ texmf-dist/doc/latex/newlfm/sfaxpage.tex
+ texmf-dist/doc/latex/newlfm/smemosec.tex
+ texmf-dist/doc/latex/newlfm/sprsrls.tex
+ texmf-dist/doc/latex/newlfm/test1.tex
+ texmf-dist/doc/latex/newlfm/test10.tex
+ texmf-dist/doc/latex/newlfm/test11.tex
+ texmf-dist/doc/latex/newlfm/test12.tex
+ texmf-dist/doc/latex/newlfm/test1alt.tex
+ texmf-dist/doc/latex/newlfm/test2.tex
+ texmf-dist/doc/latex/newlfm/test2a.tex
+ texmf-dist/doc/latex/newlfm/test2alt.tex
+ texmf-dist/doc/latex/newlfm/test3.tex
+ texmf-dist/doc/latex/newlfm/test3alt.tex
+ texmf-dist/doc/latex/newlfm/test4.tex
+ texmf-dist/doc/latex/newlfm/test4alt.tex
+ texmf-dist/doc/latex/newlfm/test5.tex
+ texmf-dist/doc/latex/newlfm/test5alt.tex
+ texmf-dist/doc/latex/newlfm/test6.tex
+ texmf-dist/doc/latex/newlfm/test6alt.tex
+ texmf-dist/doc/latex/newlfm/test7.tex
+ texmf-dist/doc/latex/newlfm/test7alt.tex
+ texmf-dist/doc/latex/newlfm/test8.tex
+ texmf-dist/doc/latex/newlfm/test8alt.tex
+ texmf-dist/doc/latex/newlfm/test9.tex
+ texmf-dist/doc/latex/newlfm/testz.tex
+ texmf-dist/doc/latex/newlfm/wine.eps
+ texmf-dist/doc/latex/newlfm/wine.pdf
+srcfiles size=251933
+ texmf-dist/source/latex/newlfm/newlfm.dtx
+ texmf-dist/source/latex/newlfm/newlfm.ins
+runfiles size=133519
+ texmf-dist/tex/latex/newlfm/addrset.sty
+ texmf-dist/tex/latex/newlfm/newlfm.cls
+ texmf-dist/tex/latex/newlfm/setdim.sty
+catalogue-version 9.1
+catalogue-date 2007-01-19 15:40:55 +0100
+catalogue-ctan /macros/latex/contrib/newlfm
+catalogue-license lppl
+
+name newsletr
+category Package
+revision 1487
+shortdesc Macros for making newsletters with Plain TeX.
+docfiles size=47779
+ texmf-dist/doc/plain/newsletr/READ.ME
+ texmf-dist/doc/plain/newsletr/losample.tex
+ texmf-dist/doc/plain/newsletr/newsletr.txt details="Help for newsletr format"
+ texmf-dist/doc/plain/newsletr/newssamp.tex
+ texmf-dist/doc/plain/newsletr/sample.dvi
+runfiles size=63687
+ texmf-dist/tex/plain/newsletr/italic.tex
+ texmf-dist/tex/plain/newsletr/lodriver.tex
+ texmf-dist/tex/plain/newsletr/newsletr.tex
+ texmf-dist/tex/plain/newsletr/quote.tex
+catalogue-version
+catalogue-date 2006-12-22 19:14:47 +0100
+catalogue-ctan /macros/plain/contrib/newsletr
+catalogue-license other-free
+
+name newthm
+category Package
+revision 1137
+shortdesc Obsolete version of ntheorem.
+longdesc A modified version of the theorem-style which provides
+longdesc generation of lists of theorems. This has been superseded by
+longdesc ntheorem. The package is no longer available from CTAN.
+runfiles size=16308
+ texmf-dist/tex/latex/newthm/n-thb.sty
+ texmf-dist/tex/latex/newthm/n-thbno.sty
+ texmf-dist/tex/latex/newthm/n-thc.sty
+ texmf-dist/tex/latex/newthm/n-thcb.sty
+ texmf-dist/tex/latex/newthm/n-thcbno.sty
+ texmf-dist/tex/latex/newthm/n-thcno.sty
+ texmf-dist/tex/latex/newthm/n-thm.sty
+ texmf-dist/tex/latex/newthm/n-thmb.sty
+ texmf-dist/tex/latex/newthm/n-thmbno.sty
+ texmf-dist/tex/latex/newthm/n-thmno.sty
+ texmf-dist/tex/latex/newthm/n-thp.sty
+ texmf-dist/tex/latex/newthm/n-thpno.sty
+ texmf-dist/tex/latex/newthm/newthm.sty
+catalogue-version
+catalogue-date 2006-10-12 21:26:49 +0200
+catalogue-ctan
+catalogue-license unknown
+
+name newvbtm
+category Package
+revision 1487
+shortdesc Define your own verbatim-like environment.
+longdesc Defines general purpose macro named \newverbatim to define your
+longdesc own verbatim-like environment. It also has a supplementary
+longdesc style file varvbtm.sty to provide set of macros for variants of
+longdesc verbatim, such as tab emulation.
+docfiles size=23543
+ texmf-dist/doc/latex/newvbtm/README details="Readme"
+ texmf-dist/doc/latex/newvbtm/newvbtm-man.dvi
+ texmf-dist/doc/latex/newvbtm/newvbtm-man.tex
+srcfiles size=46819
+ texmf-dist/source/latex/newvbtm/newvbtm.dtx
+ texmf-dist/source/latex/newvbtm/newvbtm.ins
+runfiles size=11514
+ texmf-dist/tex/latex/newvbtm/newvbtm.sty
+ texmf-dist/tex/latex/newvbtm/varvbtm.sty
+catalogue-version 1.0
+catalogue-date 2006-12-22 19:14:47 +0100
+catalogue-ctan /macros/latex/contrib/newvbtm
+catalogue-license lppl
+
+name niceframe
+category Package
+revision 1139
+shortdesc Support for fancy frames.
+longdesc The package defines means of drawing frames around boxes, using
+longdesc dingbat fonts. Some (MetaFont) font sources are included; the
+longdesc fonts are available separately in Type 1 format.
+docfiles size=65647
+ texmf-dist/doc/latex/niceframe/bbding10.600pk
+ texmf-dist/doc/latex/niceframe/example.tex
+ texmf-dist/doc/latex/niceframe/karta15.600pk
+srcfiles size=24856
+ texmf-dist/source/latex/niceframe/niceframe.drv
+ texmf-dist/source/latex/niceframe/niceframe.dtx
+ texmf-dist/source/latex/niceframe/niceframe.ins
+runfiles size=314974
+ texmf-dist/fonts/source/public/niceframe/bbding10.mf
+ texmf-dist/fonts/source/public/niceframe/dingbat.mf
+ texmf-dist/fonts/source/public/niceframe/karta.mf
+ texmf-dist/fonts/source/public/niceframe/karta15.mf
+ texmf-dist/fonts/source/public/niceframe/umrand.mf
+ texmf-dist/fonts/source/public/niceframe/umranda.mf
+ texmf-dist/fonts/source/public/niceframe/umrandb.mf
+ texmf-dist/fonts/tfm/public/niceframe/bbding10.tfm
+ texmf-dist/fonts/tfm/public/niceframe/karta15.tfm
+ texmf-dist/tex/latex/niceframe/niceframe.sty
+catalogue-version
+catalogue-date 2007-01-04 23:51:59 +0100
+catalogue-ctan /macros/latex/contrib/niceframe
+catalogue-license unknown
+
+name nih
+category Package
+revision 2230
+shortdesc A class for NIH grant applications.
+longdesc The nih class offers support for grant applications to NIH, the
+longdesc National Institutes of Health, a US government agency. The
+longdesc example-* files provide a template for using nih.cls and
+longdesc submitting the biographical sketches the NIH wants. They
+longdesc (potentially) use denselists package, which just reduces list
+longdesc spacing; the package is distributed with the class, but is not
+longdesc part of the class proper. (The examples may be distributed
+longdesc without even the restrictions of the LaTeX licence.)
+docfiles size=62124
+ texmf-dist/doc/latex/nih/README
+ texmf-dist/doc/latex/nih/example-biosketch.pdf details="Example -- an NIH biographical sketch"
+ texmf-dist/doc/latex/nih/example-biosketch.tex
+ texmf-dist/doc/latex/nih/example-nih-cls.pdf details="Example -- the class in normal use"
+ texmf-dist/doc/latex/nih/example-nih-cls.tex
+runfiles size=5163
+ texmf-dist/tex/latex/nih/denselists.sty
+ texmf-dist/tex/latex/nih/nih.cls
+catalogue-version
+catalogue-date 2007-03-10 12:31:42 +0100
+catalogue-ctan /macros/latex/contrib/nih
+catalogue-license lppl
+
+name nkarta
+category Package
+revision 104
+shortdesc A "new" version of the karta cartographic fonts.
+longdesc A development of the karta font, offering more mathematical
+longdesc stability in MetaFont. A version that will produce the glyphs
+longdesc as Encapsulated PostScript, using MetaPost, is also provided.
+docfiles size=158084
+ texmf-dist/doc/fonts/nkarta/README details="Readme"
+ texmf-dist/doc/fonts/nkarta/figtable.pdf details="A table of the the MetaPost images"
+ texmf-dist/doc/fonts/nkarta/figtable.tex
+ texmf-dist/doc/fonts/nkarta/fonttable.pdf details="A testfont table of the font"
+ texmf-dist/doc/fonts/nkarta/fonttable.tex
+runfiles size=265219
+ texmf-dist/fonts/source/public/nkarta/nkarta.mf
+ texmf-dist/fonts/source/public/nkarta/nkarta15.mf
+ texmf-dist/fonts/source/public/nkarta/nkchars.mf
+ texmf-dist/fonts/tfm/public/nkarta/nkarta15.tfm
+ texmf-dist/metapost/nkarta/nkarta.mp
+catalogue-version
+catalogue-date 2007-10-07 21:46:05 +0200
+catalogue-ctan /fonts/nkarta
+catalogue-license unknown
+
+name noitcrul
+category Package
+revision 1799
+shortdesc Improved underlines in mathematics.
+longdesc The package provides a (maths mode) \underline variant which
+longdesc doesn’t impose italics correction at the end.
+docfiles size=101557
+ texmf-dist/doc/latex/noitcrul/README details="Readme"
+ texmf-dist/doc/latex/noitcrul/noitcrul.pdf details="Benutzerdoku:" language="de"
+srcfiles size=8535
+ texmf-dist/source/latex/noitcrul/noitcrul.dtx
+ texmf-dist/source/latex/noitcrul/noitcrul.ins
+runfiles size=1718
+ texmf-dist/tex/latex/noitcrul/noitcrul.sty
+catalogue-version 0.2
+catalogue-date 2007-03-10 12:31:42 +0100
+catalogue-ctan /macros/latex/contrib/noitcrul
+catalogue-license lppl
+
+name nomencl
+category Package
+revision 1140
+shortdesc Produce lists of symbols as in nomenclature.
+longdesc Produces lists of symbols using the capabilities of the
+longdesc MakeIndex program.
+docfiles size=206347
+ texmf-dist/doc/latex/nomencl/README details="Readme"
+ texmf-dist/doc/latex/nomencl/nomencl.pdf details="Package documentation"
+srcfiles size=60074
+ texmf-dist/source/latex/nomencl/nomencl.drv
+ texmf-dist/source/latex/nomencl/nomencl.dtx
+ texmf-dist/source/latex/nomencl/nomencl.ins
+runfiles size=17185
+ texmf-dist/makeindex/nomencl/nomencl.ist
+ texmf-dist/tex/latex/nomencl/nomencl.sty
+ texmf-dist/tex/latex/nomencl/sample01.cfg
+ texmf-dist/tex/latex/nomencl/sample02.cfg
+ texmf-dist/tex/latex/nomencl/sample04.cfg
+ texmf-dist/tex/latex/nomencl/sample05.cfg
+catalogue-version 3.1a
+catalogue-date 2007-01-12 00:17:35 +0100
+catalogue-ctan /macros/latex/contrib/nomencl
+catalogue-license lppl
+
+name nomentbl
+category Package
+revision 1794
+shortdesc Nomenclature typeset in a longtable
+longdesc Nomentbl typeset nomenclatures in a longtable instead of the
+longdesc makeindex style of nomencl. A nomenclature entry may have three
+longdesc arguments: Symbol, description and physical unit.
+docfiles size=208818
+ texmf-dist/doc/latex/nomentbl/README
+ texmf-dist/doc/latex/nomentbl/example.pdf details="Example of use"
+ texmf-dist/doc/latex/nomentbl/example.tex
+ texmf-dist/doc/latex/nomentbl/nomentbl.pdf details="Package documentation"
+srcfiles size=20465
+ texmf-dist/source/latex/nomentbl/nomentbl.dtx
+ texmf-dist/source/latex/nomentbl/nomentbl.ins
+runfiles size=7172
+ texmf-dist/makeindex/nomentbl/nomentbl.ist
+ texmf-dist/tex/latex/nomentbl/nomentbl.sty
+catalogue-version 0.4
+catalogue-date 2007-01-12 00:17:35 +0100
+catalogue-ctan /macros/latex/contrib/nomentbl
+catalogue-license lppl
+
+name nonfloat
+category Package
+revision 3786
+shortdesc Non-floating table and figure captions.
+longdesc Adjusts the figure and table environments to ensure that
+longdesc centered objects as one line captions are centered as well.
+longdesc Also the vertical spaces for table captions above the table are
+longdesc changed.
+docfiles size=121755
+ texmf-dist/doc/latex/nonfloat/nonfloat.pdf details="Package documentation (German)" language="de"
+srcfiles size=16719
+ texmf-dist/source/latex/nonfloat/nonfloat.drv
+ texmf-dist/source/latex/nonfloat/nonfloat.dtx
+ texmf-dist/source/latex/nonfloat/nonfloat.ins
+runfiles size=2638
+ texmf-dist/tex/latex/nonfloat/nonfloat.sty
+catalogue-version 1.0
+catalogue-date 2007-01-12 00:17:35 +0100
+catalogue-ctan /macros/latex/contrib/nonfloat
+catalogue-license pd
+
+name norasi
+category Package
+revision 98
+depend c90enc
+execute addMap norasi.map
+runfiles size=509707
+ texmf-dist/dvips/norasi/config.norasi
+ texmf-dist/fonts/afm/public/norasi/norasib.afm
+ texmf-dist/fonts/afm/public/norasi/norasibi.afm
+ texmf-dist/fonts/afm/public/norasi/norasii.afm
+ texmf-dist/fonts/afm/public/norasi/norasin.afm
+ texmf-dist/fonts/map/dvips/norasi/norasi.map
+ texmf-dist/fonts/tfm/public/norasi/ftnb8z.tfm
+ texmf-dist/fonts/tfm/public/norasi/ftnbi8z.tfm
+ texmf-dist/fonts/tfm/public/norasi/ftni8z.tfm
+ texmf-dist/fonts/tfm/public/norasi/ftnr8z.tfm
+ texmf-dist/fonts/type1/public/norasi/norasib.pfb
+ texmf-dist/fonts/type1/public/norasi/norasibi.pfb
+ texmf-dist/fonts/type1/public/norasi/norasii.pfb
+ texmf-dist/fonts/type1/public/norasi/norasin.pfb
+
+name notes
+category Package
+revision 1487
+shortdesc Mark sections of a document.
+longdesc The package provides environments to highlight significant
+longdesc portions of text within a document, by putting the text in a
+longdesc box and adding an icon in the margin. (The icons are provided
+longdesc as ‘fig’ sources, processable by xfig.)
+docfiles size=40534
+ texmf-dist/doc/latex/notes/notes.dvi
+ texmf-dist/doc/latex/notes/testnotes.dvi
+ texmf-dist/doc/latex/notes/testnotes.tex
+srcfiles size=23030
+ texmf-dist/source/latex/notes/Makefile
+ texmf-dist/source/latex/notes/book.layout
+ texmf-dist/source/latex/notes/hand.fig
+ texmf-dist/source/latex/notes/info.fig
+ texmf-dist/source/latex/notes/makedoc
+ texmf-dist/source/latex/notes/makedoc.bat
+ texmf-dist/source/latex/notes/notes.drv
+ texmf-dist/source/latex/notes/notes.dtx
+ texmf-dist/source/latex/notes/notes.inc
+ texmf-dist/source/latex/notes/notes.ins
+ texmf-dist/source/latex/notes/warn.fig
+runfiles size=5997
+ texmf-dist/tex/latex/notes/notes.sty
+catalogue-version v1.0.1
+catalogue-date 2006-09-14 22:20:05 +0200
+catalogue-ctan /macros/latex/contrib/notes
+catalogue-license lppl
+
+name notes2bib
+category Package
+revision 5321
+shortdesc Integrating notes into the bibliography.
+longdesc The notes2bib package defines a new type of note, bibnote,
+longdesc which will always be added to the bibliography. The package
+longdesc allows footnotes and endnotes to be moved into the bibliography
+longdesc in the same way. The package can be used with natbib and
+longdesc biblatex as well as plain LaTeX citations. Both sorted and
+longdesc unsorted bibliography styles are supported. The package makes
+longdesc use of the e-TeX extensions (any post-2005 LaTeX distribution
+longdesc will provide these by default, but users of older systems may
+longdesc need to use an elatex command or equivalent).
+docfiles size=205223
+ texmf-dist/doc/latex/notes2bib/README details="Readme"
+ texmf-dist/doc/latex/notes2bib/notes2bib.pdf details="Package documentation"
+srcfiles size=54386
+ texmf-dist/source/latex/notes2bib/notes2bib.dtx
+ texmf-dist/source/latex/notes2bib/notes2bib.ins
+runfiles size=13293
+ texmf-dist/tex/latex/notes2bib/jawltxdoc.sty
+ texmf-dist/tex/latex/notes2bib/notes2bib.sty
+catalogue-version 1.2a
+catalogue-date 2007-10-31 15:08:58 +0100
+catalogue-ctan /macros/latex/contrib/notes2bib
+catalogue-license lppl
+
+name nrc
+category Package
+revision 1144
+shortdesc Class for the NRC technical journals.
+longdesc Macros, and some documentation, for typesetting papers for
+longdesc submission to journals published by the National Research
+longdesc Council of Canada. The macros are provided as a pair of
+longdesc classes, one for journals printed in two columns and the other
+longdesc for journals (such as the Canadian Journal of Physics, post-
+longdesc 1997) which are printed in a single-column format.
+docfiles size=293658
+ texmf-dist/doc/latex/nrc/README details="Readme"
+ texmf-dist/doc/latex/nrc/authors.txt details="Notes for authors"
+ texmf-dist/doc/latex/nrc/userguide.pdf details="Package documentation"
+ texmf-dist/doc/latex/nrc/userguide.tex
+srcfiles size=163596
+ texmf-dist/source/latex/nrc/nrc.dtx
+ texmf-dist/source/latex/nrc/nrc.ins
+runfiles size=128889
+ texmf-dist/tex/latex/nrc/nrc1.cls
+ texmf-dist/tex/latex/nrc/nrc1.sty
+ texmf-dist/tex/latex/nrc/nrc2.cls
+ texmf-dist/tex/latex/nrc/nrc2.sty
+ texmf-dist/tex/latex/nrc/nrcdoc.sty
+catalogue-version
+catalogue-date 2007-01-12 08:59:52 +0100
+catalogue-ctan /macros/latex/contrib/nrc
+catalogue-license lppl
+
+name ntabbing
+category Package
+revision 1487
+shortdesc Simple tabbing extension for automatic line numbering.
+longdesc An extension of the tabbing environment that supports automatic
+longdesc line numbering. The lines can be referenced using the standard
+longdesc \label and \ref mechanism.
+docfiles size=6982
+ texmf-dist/doc/latex/ntabbing/ntabbing.dvi
+ texmf-dist/doc/latex/ntabbing/ntabbing.tex
+runfiles size=1906
+ texmf-dist/tex/latex/ntabbing/ntabbing.sty
+catalogue-version
+catalogue-date 2007-01-12 08:59:52 +0100
+catalogue-ctan /macros/latex/contrib/ntabbing
+catalogue-license dfsg
+
+name ntg
+category Documentation
+revision 15
+shortdesc Dutch TeX Users Group information.
+docfiles size=981722
+ texmf-doc/doc/dutch/ntg/amazon/home.gif
+ texmf-doc/doc/dutch/ntg/amazon/html.html
+ texmf-doc/doc/dutch/ntg/amazon/index.html
+ texmf-doc/doc/dutch/ntg/amazon/java.html
+ texmf-doc/doc/dutch/ntg/amazon/javascript.html
+ texmf-doc/doc/dutch/ntg/amazon/latex.html
+ texmf-doc/doc/dutch/ntg/amazon/litprog.html
+ texmf-doc/doc/dutch/ntg/amazon/perl.html
+ texmf-doc/doc/dutch/ntg/amazon/ps-pdf.html
+ texmf-doc/doc/dutch/ntg/amazon/readmore.gif
+ texmf-doc/doc/dutch/ntg/amazon/sgml.html
+ texmf-doc/doc/dutch/ntg/amazon/tex.html
+ texmf-doc/doc/dutch/ntg/amazon/typeset.html
+ texmf-doc/doc/dutch/ntg/amazon/xml.html
+ texmf-doc/doc/dutch/ntg/bestuur.html
+ texmf-doc/doc/dutch/ntg/bijeenkomsten.html
+ texmf-doc/doc/dutch/ntg/ctan.html
+ texmf-doc/doc/dutch/ntg/distributie.html
+ texmf-doc/doc/dutch/ntg/doelstellingen.html
+ texmf-doc/doc/dutch/ntg/english.html
+ texmf-doc/doc/dutch/ntg/graphics/nline.gif
+ texmf-doc/doc/dutch/ntg/graphics/ntglogo.gif
+ texmf-doc/doc/dutch/ntg/graphics/tex.gif
+ texmf-doc/doc/dutch/ntg/index.html
+ texmf-doc/doc/dutch/ntg/info.html
+ texmf-doc/doc/dutch/ntg/lidmaatschap.html
+ texmf-doc/doc/dutch/ntg/links.html
+ texmf-doc/doc/dutch/ntg/mail.html
+ texmf-doc/doc/dutch/ntg/maps.html
+ texmf-doc/doc/dutch/ntg/maps/100faq.html
+ texmf-doc/doc/dutch/ntg/maps/electromaps.html
+ texmf-doc/doc/dutch/ntg/maps/eurotex95.html
+ texmf-doc/doc/dutch/ntg/maps/maps-bib.html
+ texmf-doc/doc/dutch/ntg/maps/maps.gif
+ texmf-doc/doc/dutch/ntg/maps/maps1.html
+ texmf-doc/doc/dutch/ntg/maps/maps10.html
+ texmf-doc/doc/dutch/ntg/maps/maps11.html
+ texmf-doc/doc/dutch/ntg/maps/maps12.html
+ texmf-doc/doc/dutch/ntg/maps/maps13.html
+ texmf-doc/doc/dutch/ntg/maps/maps14.html
+ texmf-doc/doc/dutch/ntg/maps/maps15.html
+ texmf-doc/doc/dutch/ntg/maps/maps16.html
+ texmf-doc/doc/dutch/ntg/maps/maps17.html
+ texmf-doc/doc/dutch/ntg/maps/maps2.html
+ texmf-doc/doc/dutch/ntg/maps/maps3.html
+ texmf-doc/doc/dutch/ntg/maps/maps4.html
+ texmf-doc/doc/dutch/ntg/maps/maps5.html
+ texmf-doc/doc/dutch/ntg/maps/maps6.html
+ texmf-doc/doc/dutch/ntg/maps/maps7.html
+ texmf-doc/doc/dutch/ntg/maps/maps8.html
+ texmf-doc/doc/dutch/ntg/maps/maps9.html
+ texmf-doc/doc/dutch/ntg/mfmp.html
+ texmf-doc/doc/dutch/ntg/newmember.html
+ texmf-doc/doc/dutch/ntg/nieuws.html
+ texmf-doc/doc/dutch/ntg/publicaties.html
+ texmf-doc/doc/dutch/ntg/statuten.html
+ texmf-doc/doc/dutch/ntg/tex-nl.html
+ texmf-doc/doc/dutch/ntg/texprog.html
+ texmf-doc/doc/dutch/ntg/watistex.html
+ texmf-doc/doc/dutch/ntg/werkgroepen.html
+catalogue-version
+catalogue-date 2007-01-21 12:53:12 +0100
+catalogue-ctan /usergrps/ntg
+catalogue-license dfsg
+
+name ntgclass
+category Package
+revision 1146
+shortdesc "European" versions of standard classes.
+longdesc Versions of the standard LaTeX article and report classes,
+longdesc rewritten to reflect a more European design, by the Dutch TeX
+longdesc Users Group NTG.
+docfiles size=1247580
+ texmf-dist/doc/latex/ntgclass/00readme.txt
+ texmf-dist/doc/latex/ntgclass/a4.pdf
+ texmf-dist/doc/latex/ntgclass/artdoc.pdf details="The artikel classes" language="nl"
+ texmf-dist/doc/latex/ntgclass/artdoc.tex
+ texmf-dist/doc/latex/ntgclass/brief.pdf
+ texmf-dist/doc/latex/ntgclass/brief.tex
+ texmf-dist/doc/latex/ntgclass/briefdoc.pdf
+ texmf-dist/doc/latex/ntgclass/briefdoc.tex
+ texmf-dist/doc/latex/ntgclass/catalog.txt
+ texmf-dist/doc/latex/ntgclass/changes.txt
+ texmf-dist/doc/latex/ntgclass/classdoc.pdf details="Introduction to the classes"
+ texmf-dist/doc/latex/ntgclass/classdoc.tex
+ texmf-dist/doc/latex/ntgclass/manifest.txt
+ texmf-dist/doc/latex/ntgclass/ntgclass.pdf
+ texmf-dist/doc/latex/ntgclass/rapdoc.pdf details="The rapport classes" language="nl"
+ texmf-dist/doc/latex/ntgclass/rapdoc.tex
+srcfiles size=294617
+ texmf-dist/source/latex/ntgclass/a4.dtx
+ texmf-dist/source/latex/ntgclass/a4.ins
+ texmf-dist/source/latex/ntgclass/brief.dtx
+ texmf-dist/source/latex/ntgclass/ntgclass.dtx
+ texmf-dist/source/latex/ntgclass/ntgclass.ins
+runfiles size=275552
+ texmf-dist/tex/latex/ntgclass/a4.sty
+ texmf-dist/tex/latex/ntgclass/artikel1.cls
+ texmf-dist/tex/latex/ntgclass/artikel2.cls
+ texmf-dist/tex/latex/ntgclass/artikel3.cls
+ texmf-dist/tex/latex/ntgclass/boek.cls
+ texmf-dist/tex/latex/ntgclass/boek3.cls
+ texmf-dist/tex/latex/ntgclass/brief.cls
+ texmf-dist/tex/latex/ntgclass/ntg10.clo
+ texmf-dist/tex/latex/ntgclass/ntg11.clo
+ texmf-dist/tex/latex/ntgclass/ntg12.clo
+ texmf-dist/tex/latex/ntgclass/rapport1.cls
+ texmf-dist/tex/latex/ntgclass/rapport3.cls
+catalogue-version
+catalogue-date 2006-12-05 17:23:05 +0100
+catalogue-ctan /macros/latex/contrib/ntgclass
+catalogue-license lppl
+
+name ntheorem
+category Package
+revision 3824
+shortdesc Enhanced theorem environment.
+longdesc Enhancements for theorem-like environments: easier control of
+longdesc layout; proper placement of endmarks even when the environment
+longdesc ends with \end{enumerate} or \end{displaymath} (including
+longdesc support for amsmath displayed-equation environments); and
+longdesc support for making a list of theorems like \listoffigures.
+docfiles size=377452
+ texmf-dist/doc/latex/ntheorem/README details="Readme"
+ texmf-dist/doc/latex/ntheorem/ntheorem.pdf details="Package documentation:" language="en"
+srcfiles size=180070
+ texmf-dist/source/latex/ntheorem/ntheorem.drv
+ texmf-dist/source/latex/ntheorem/ntheorem.dtx
+ texmf-dist/source/latex/ntheorem/ntheorem.ins
+runfiles size=41052
+ texmf-dist/tex/latex/ntheorem/ntheorem.std
+ texmf-dist/tex/latex/ntheorem/ntheorem.sty
+catalogue-version 1.25
+catalogue-date 2006-12-30 22:14:40 +0100
+catalogue-ctan /macros/latex/contrib/ntheorem
+catalogue-license lppl
+
+name ntheorem-vn
+category Documentation
+revision 1860
+docfiles size=534547
+ texmf-doc/doc/vietnamese/ntheorem-vn/COPYING
+ texmf-doc/doc/vietnamese/ntheorem-vn/FILELIST
+ texmf-doc/doc/vietnamese/ntheorem-vn/README
+ texmf-doc/doc/vietnamese/ntheorem-vn/ntheorem-doc-vn.pdf
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/Makefile
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/README.src
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/TODO
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/endmarks.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/example.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/help.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/interference.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/intro.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/license.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/ntheorem-doc-vn.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/preamble.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/thanks.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/title-abstract.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/src/user-interface.tex
+ texmf-doc/doc/vietnamese/ntheorem-vn/test.pdf
+ texmf-doc/doc/vietnamese/ntheorem-vn/test.tex
+
+name numline
+category Package
+revision 1148
+shortdesc LaTeX macros for numbering lines.
+longdesc The package works by patching the output routine; while it
+longdesc seems to work, it is definitely fragile.
+runfiles size=14875
+ texmf-dist/tex/latex/numline/numline.sty
+catalogue-version
+catalogue-date 2006-12-30 22:14:40 +0100
+catalogue-ctan /macros/latex/contrib/numline
+catalogue-license unknown
+
+name numname
+category Package
+revision 4615
+shortdesc Convert a number to its English expression.
+longdesc The package can generate cardinal (one, two, ...) and ordinal
+longdesc (first, second, ...) numbers. The code derives from the memoir
+longdesc class, and is extracted for the convenience of non-users of
+longdesc that class.
+docfiles size=344
+ texmf-dist/doc/latex/numname/README details="Readme"
+runfiles size=16487
+ texmf-dist/tex/latex/numname/numname.sty
+catalogue-version
+catalogue-date 2007-07-08 15:31:34 +0200
+catalogue-ctan /macros/latex/contrib/numname
+catalogue-license lppl
+
+name numprint
+category Package
+revision 3258
+shortdesc Print numbers with separators and exponent if necessary.
+longdesc The package numprint prints numbers with a separator every
+longdesc three digits and converts numbers given as 12345.6e789 to
+longdesc 12\,345,6\cdot 10^{789}. Numbers are printed in the current
+longdesc mode (text or math) in order to use the correct font. Many
+longdesc things, including the decimal sign, the thousand separator, as
+longdesc well as the product sign can be changed by the user, e.g., to
+longdesc reach 12,345.6\times 10^{789}. If an optional argument is given
+longdesc it is printed upright as unit. Numbers can be rounded to a
+longdesc given number of digits. The package supports an automatic,
+longdesc language-dependent change of the number format. Tabular
+longdesc alignment using the tabular(*), array, tabularx, and longtable
+longdesc environments (similar to the dcolumn and rccol packages) is
+longdesc supported using all features of numprint. Additional text can
+longdesc be added before and after the formatted number.
+docfiles size=1346842
+ texmf-dist/doc/latex/numprint/ChangeLog.nbaseprt
+ texmf-dist/doc/latex/numprint/ChangeLog.numprint
+ texmf-dist/doc/latex/numprint/README
+ texmf-dist/doc/latex/numprint/getversion.tex
+ texmf-dist/doc/latex/numprint/nbaseprt.pdf
+ texmf-dist/doc/latex/numprint/nbaseprt.xml
+ texmf-dist/doc/latex/numprint/nbaseprttest.tex
+ texmf-dist/doc/latex/numprint/numprint.pdf
+ texmf-dist/doc/latex/numprint/numprint.xml
+ texmf-dist/doc/latex/numprint/numprinttest.tex
+srcfiles size=241540
+ texmf-dist/source/latex/numprint/Makefile
+ texmf-dist/source/latex/numprint/nbaseprt.dtx
+ texmf-dist/source/latex/numprint/numprint.dtx
+ texmf-dist/source/latex/numprint/numprint.ins
+ texmf-dist/source/latex/numprint/numprint032.dtx
+runfiles size=64400
+ texmf-dist/tex/latex/numprint/nbaseprt.sty
+ texmf-dist/tex/latex/numprint/numprint.sty
+ texmf-dist/tex/latex/numprint/numprint032.sty
+catalogue-version 1.37
+catalogue-date 2007-01-08 17:18:58 +0100
+catalogue-ctan /macros/latex/contrib/numprint
+catalogue-license lppl
+
+name oberdiek
+category Package
+revision 5458
+docfiles size=14747278
+ texmf-dist/doc/latex/oberdiek/accsupp-example1.tex
+ texmf-dist/doc/latex/oberdiek/accsupp-example2.tex
+ texmf-dist/doc/latex/oberdiek/accsupp.pdf
+ texmf-dist/doc/latex/oberdiek/aliascnt.pdf
+ texmf-dist/doc/latex/oberdiek/alphalph.pdf
+ texmf-dist/doc/latex/oberdiek/askinclude.pdf
+ texmf-dist/doc/latex/oberdiek/atbegshi-example.tex
+ texmf-dist/doc/latex/oberdiek/atbegshi.pdf
+ texmf-dist/doc/latex/oberdiek/atenddvi.pdf
+ texmf-dist/doc/latex/oberdiek/attachfile2.pdf
+ texmf-dist/doc/latex/oberdiek/auxhook.pdf
+ texmf-dist/doc/latex/oberdiek/bigintcalc.pdf
+ texmf-dist/doc/latex/oberdiek/bitset.pdf
+ texmf-dist/doc/latex/oberdiek/bmpsize.pdf
+ texmf-dist/doc/latex/oberdiek/bookmark-example.tex
+ texmf-dist/doc/latex/oberdiek/bookmark.pdf
+ texmf-dist/doc/latex/oberdiek/catchfile.pdf
+ texmf-dist/doc/latex/oberdiek/centernot.pdf
+ texmf-dist/doc/latex/oberdiek/chemarr-example.tex
+ texmf-dist/doc/latex/oberdiek/chemarr.pdf
+ texmf-dist/doc/latex/oberdiek/classlist.pdf
+ texmf-dist/doc/latex/oberdiek/colonequals.pdf
+ texmf-dist/doc/latex/oberdiek/dvipscol.pdf
+ texmf-dist/doc/latex/oberdiek/embedfile-example-collection.tex
+ texmf-dist/doc/latex/oberdiek/embedfile-example-plain.tex
+ texmf-dist/doc/latex/oberdiek/embedfile.pdf
+ texmf-dist/doc/latex/oberdiek/engord.pdf
+ texmf-dist/doc/latex/oberdiek/epstopdf.pdf
+ texmf-dist/doc/latex/oberdiek/etexcmds.pdf
+ texmf-dist/doc/latex/oberdiek/example-mycolorsetup.sty
+ texmf-dist/doc/latex/oberdiek/flags.pdf
+ texmf-dist/doc/latex/oberdiek/grfext.pdf
+ texmf-dist/doc/latex/oberdiek/grffile.pdf
+ texmf-dist/doc/latex/oberdiek/holtxdoc.pdf
+ texmf-dist/doc/latex/oberdiek/hycolor.pdf
+ texmf-dist/doc/latex/oberdiek/hypbmsec.pdf
+ texmf-dist/doc/latex/oberdiek/hypcap.pdf
+ texmf-dist/doc/latex/oberdiek/hypdestopt.pdf
+ texmf-dist/doc/latex/oberdiek/hypdoc.pdf
+ texmf-dist/doc/latex/oberdiek/hypgotoe-example.tex
+ texmf-dist/doc/latex/oberdiek/hypgotoe.pdf
+ texmf-dist/doc/latex/oberdiek/ifdraft.pdf
+ texmf-dist/doc/latex/oberdiek/iflang.pdf
+ texmf-dist/doc/latex/oberdiek/ifpdf.pdf
+ texmf-dist/doc/latex/oberdiek/ifvtex.pdf
+ texmf-dist/doc/latex/oberdiek/infwarerr.pdf
+ texmf-dist/doc/latex/oberdiek/inputenx-licrcmds.txt
+ texmf-dist/doc/latex/oberdiek/inputenx-utf8enc.txt
+ texmf-dist/doc/latex/oberdiek/inputenx.pdf
+ texmf-dist/doc/latex/oberdiek/intcalc.pdf
+ texmf-dist/doc/latex/oberdiek/kvoptions.pdf
+ texmf-dist/doc/latex/oberdiek/kvsetkeys-example.tex
+ texmf-dist/doc/latex/oberdiek/kvsetkeys.pdf
+ texmf-dist/doc/latex/oberdiek/listingsutf8.pdf
+ texmf-dist/doc/latex/oberdiek/makerobust-example.tex
+ texmf-dist/doc/latex/oberdiek/makerobust.pdf
+ texmf-dist/doc/latex/oberdiek/oberdiek.pdf
+ texmf-dist/doc/latex/oberdiek/pagesel.pdf
+ texmf-dist/doc/latex/oberdiek/pdfcol.pdf
+ texmf-dist/doc/latex/oberdiek/pdfcolfoot.pdf
+ texmf-dist/doc/latex/oberdiek/pdfcolmk.pdf
+ texmf-dist/doc/latex/oberdiek/pdfcolparallel.pdf
+ texmf-dist/doc/latex/oberdiek/pdfcolparcolumns.pdf
+ texmf-dist/doc/latex/oberdiek/pdfcrypt.pdf
+ texmf-dist/doc/latex/oberdiek/pdfescape.pdf
+ texmf-dist/doc/latex/oberdiek/pdflscape.pdf
+ texmf-dist/doc/latex/oberdiek/pdftexcmds.pdf
+ texmf-dist/doc/latex/oberdiek/picture-example.tex
+ texmf-dist/doc/latex/oberdiek/picture.pdf
+ texmf-dist/doc/latex/oberdiek/pmboxdraw.pdf
+ texmf-dist/doc/latex/oberdiek/refcount.pdf
+ texmf-dist/doc/latex/oberdiek/selinput.pdf
+ texmf-dist/doc/latex/oberdiek/setouterhbox-example.tex
+ texmf-dist/doc/latex/oberdiek/setouterhbox.pdf
+ texmf-dist/doc/latex/oberdiek/settobox-example.tex
+ texmf-dist/doc/latex/oberdiek/settobox.pdf
+ texmf-dist/doc/latex/oberdiek/soulutf8.pdf
+ texmf-dist/doc/latex/oberdiek/stackrel.pdf
+ texmf-dist/doc/latex/oberdiek/stringenc.pdf
+ texmf-dist/doc/latex/oberdiek/tabularht-example1.tex
+ texmf-dist/doc/latex/oberdiek/tabularht-example2.tex
+ texmf-dist/doc/latex/oberdiek/tabularht.pdf
+ texmf-dist/doc/latex/oberdiek/tabularkv-example.tex
+ texmf-dist/doc/latex/oberdiek/tabularkv.pdf
+ texmf-dist/doc/latex/oberdiek/telprint.pdf
+ texmf-dist/doc/latex/oberdiek/test/ExtractRotate.java
+ texmf-dist/doc/latex/oberdiek/test/accsupp-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/alphalph-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/alphalph-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/alphalph-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-a.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-b.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-c.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test10.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test11.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test12.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test13.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test14.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test15.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test16.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test17.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test18.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test19.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test20.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test21.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test22.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test23.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test24.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test4.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test5.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test6.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test7.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test8.tex
+ texmf-dist/doc/latex/oberdiek/test/askinclude-test9.tex
+ texmf-dist/doc/latex/oberdiek/test/atbegshi-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/atbegshi-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/atbegshi-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/bigintcalc-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/bigintcalc-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/bigintcalc-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/bitset-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/bitset-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/bitset-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/catchfile-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/catchfile-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/catchfile-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/embedfile-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/embedfile-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/embedfile-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/engord-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/epstopdf-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/etexcmds-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/etexcmds-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/etexcmds-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/etexcmds-test4.tex
+ texmf-dist/doc/latex/oberdiek/test/grfext-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/grfext-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/hycolor-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/hycolor-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/iflang-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/iflang-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/iflang-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/iflang-test4.tex
+ texmf-dist/doc/latex/oberdiek/test/iflang-test5.tex
+ texmf-dist/doc/latex/oberdiek/test/ifpdf-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/ifvtex-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/infwarerr-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/infwarerr-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/infwarerr-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/intcalc-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/intcalc-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/intcalc-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/intcalc-test4.tex
+ texmf-dist/doc/latex/oberdiek/test/kvoptions-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/kvoptions-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/kvsetkeys-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/kvsetkeys-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/kvsetkeys-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/listingsutf8-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/listingsutf8-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/listingsutf8-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/listingsutf8-test4.tex
+ texmf-dist/doc/latex/oberdiek/test/listingsutf8-test5.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfcol-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfcol-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfcol-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfcolfoot-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfcolparallel-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfcolparcolumns-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfescape-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfescape-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfescape-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfescape-test4.tex
+ texmf-dist/doc/latex/oberdiek/test/pdfescape-test5.tex
+ texmf-dist/doc/latex/oberdiek/test/pdflscape-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/pdflscape-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/pdflscape-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/pdflscape-test4.tex
+ texmf-dist/doc/latex/oberdiek/test/pdflscape-test5.tex
+ texmf-dist/doc/latex/oberdiek/test/pdflscape-test6.tex
+ texmf-dist/doc/latex/oberdiek/test/pdflscape-test6.txt
+ texmf-dist/doc/latex/oberdiek/test/selinput-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/selinput-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/selinput-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/selinput-test4.tex
+ texmf-dist/doc/latex/oberdiek/test/selinput-test5.tex
+ texmf-dist/doc/latex/oberdiek/test/setouterhbox-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/setouterhbox-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/soulutf8-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/soulutf8-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/soulutf8-test3.tex
+ texmf-dist/doc/latex/oberdiek/test/soulutf8-test4.tex
+ texmf-dist/doc/latex/oberdiek/test/soulutf8-test5.tex
+ texmf-dist/doc/latex/oberdiek/test/stringenc-test1.tex
+ texmf-dist/doc/latex/oberdiek/test/stringenc-test2.tex
+ texmf-dist/doc/latex/oberdiek/test/telprint-test1.tex
+ texmf-dist/doc/latex/oberdiek/transparent-example.tex
+ texmf-dist/doc/latex/oberdiek/transparent.pdf
+ texmf-dist/doc/latex/oberdiek/twoopt.pdf
+ texmf-dist/doc/latex/oberdiek/zref-example.tex
+ texmf-dist/doc/latex/oberdiek/zref.pdf
+srcfiles size=3026228
+ texmf-dist/source/latex/oberdiek/accsupp.dtx
+ texmf-dist/source/latex/oberdiek/aliascnt.dtx
+ texmf-dist/source/latex/oberdiek/alphalph.dtx
+ texmf-dist/source/latex/oberdiek/askinclude.dtx
+ texmf-dist/source/latex/oberdiek/atbegshi.dtx
+ texmf-dist/source/latex/oberdiek/atenddvi.dtx
+ texmf-dist/source/latex/oberdiek/attachfile2.dtx
+ texmf-dist/source/latex/oberdiek/auxhook.dtx
+ texmf-dist/source/latex/oberdiek/bigintcalc.dtx
+ texmf-dist/source/latex/oberdiek/bitset.dtx
+ texmf-dist/source/latex/oberdiek/bmpsize.dtx
+ texmf-dist/source/latex/oberdiek/bookmark.dtx
+ texmf-dist/source/latex/oberdiek/catchfile.dtx
+ texmf-dist/source/latex/oberdiek/centernot.dtx
+ texmf-dist/source/latex/oberdiek/chemarr.dtx
+ texmf-dist/source/latex/oberdiek/classlist.dtx
+ texmf-dist/source/latex/oberdiek/colonequals.dtx
+ texmf-dist/source/latex/oberdiek/dvipscol.dtx
+ texmf-dist/source/latex/oberdiek/embedfile.dtx
+ texmf-dist/source/latex/oberdiek/engord.dtx
+ texmf-dist/source/latex/oberdiek/epstopdf.dtx
+ texmf-dist/source/latex/oberdiek/etexcmds.dtx
+ texmf-dist/source/latex/oberdiek/flags.dtx
+ texmf-dist/source/latex/oberdiek/grfext.dtx
+ texmf-dist/source/latex/oberdiek/grffile.dtx
+ texmf-dist/source/latex/oberdiek/holtxdoc.dtx
+ texmf-dist/source/latex/oberdiek/hycolor.dtx
+ texmf-dist/source/latex/oberdiek/hypbmsec.dtx
+ texmf-dist/source/latex/oberdiek/hypcap.dtx
+ texmf-dist/source/latex/oberdiek/hypdestopt.dtx
+ texmf-dist/source/latex/oberdiek/hypdoc.dtx
+ texmf-dist/source/latex/oberdiek/hypgotoe.dtx
+ texmf-dist/source/latex/oberdiek/ifdraft.dtx
+ texmf-dist/source/latex/oberdiek/iflang.dtx
+ texmf-dist/source/latex/oberdiek/ifpdf.dtx
+ texmf-dist/source/latex/oberdiek/ifvtex.dtx
+ texmf-dist/source/latex/oberdiek/infwarerr.dtx
+ texmf-dist/source/latex/oberdiek/inputenx.dtx
+ texmf-dist/source/latex/oberdiek/intcalc.dtx
+ texmf-dist/source/latex/oberdiek/kvoptions.dtx
+ texmf-dist/source/latex/oberdiek/kvsetkeys.dtx
+ texmf-dist/source/latex/oberdiek/listingsutf8.dtx
+ texmf-dist/source/latex/oberdiek/makerobust.dtx
+ texmf-dist/source/latex/oberdiek/oberdiek.ins
+ texmf-dist/source/latex/oberdiek/oberdiek.tex
+ texmf-dist/source/latex/oberdiek/pagesel.dtx
+ texmf-dist/source/latex/oberdiek/pdfcol.dtx
+ texmf-dist/source/latex/oberdiek/pdfcolfoot.dtx
+ texmf-dist/source/latex/oberdiek/pdfcolmk.dtx
+ texmf-dist/source/latex/oberdiek/pdfcolparallel.dtx
+ texmf-dist/source/latex/oberdiek/pdfcolparcolumns.dtx
+ texmf-dist/source/latex/oberdiek/pdfcrypt.dtx
+ texmf-dist/source/latex/oberdiek/pdfescape.dtx
+ texmf-dist/source/latex/oberdiek/pdflscape.dtx
+ texmf-dist/source/latex/oberdiek/pdftexcmds.dtx
+ texmf-dist/source/latex/oberdiek/picture.dtx
+ texmf-dist/source/latex/oberdiek/pmboxdraw.dtx
+ texmf-dist/source/latex/oberdiek/readme-ctan.txt
+ texmf-dist/source/latex/oberdiek/refcount.dtx
+ texmf-dist/source/latex/oberdiek/selinput.dtx
+ texmf-dist/source/latex/oberdiek/setouterhbox.dtx
+ texmf-dist/source/latex/oberdiek/settobox.dtx
+ texmf-dist/source/latex/oberdiek/soulutf8.dtx
+ texmf-dist/source/latex/oberdiek/stackrel.dtx
+ texmf-dist/source/latex/oberdiek/stringenc.dtx
+ texmf-dist/source/latex/oberdiek/tabularht.dtx
+ texmf-dist/source/latex/oberdiek/tabularkv.dtx
+ texmf-dist/source/latex/oberdiek/telprint.dtx
+ texmf-dist/source/latex/oberdiek/transparent.dtx
+ texmf-dist/source/latex/oberdiek/twoopt.dtx
+ texmf-dist/source/latex/oberdiek/zref.dtx
+runfiles size=1445153
+ texmf-dist/scripts/oberdiek/pdfatfi.pl
+ texmf-dist/tex/generic/oberdiek/alphalph.sty
+ texmf-dist/tex/generic/oberdiek/atbegshi.sty
+ texmf-dist/tex/generic/oberdiek/bigintcalc.sty
+ texmf-dist/tex/generic/oberdiek/bitset.sty
+ texmf-dist/tex/generic/oberdiek/catchfile.sty
+ texmf-dist/tex/generic/oberdiek/engord.sty
+ texmf-dist/tex/generic/oberdiek/etexcmds.sty
+ texmf-dist/tex/generic/oberdiek/iflang.sty
+ texmf-dist/tex/generic/oberdiek/ifpdf.sty
+ texmf-dist/tex/generic/oberdiek/ifvtex.sty
+ texmf-dist/tex/generic/oberdiek/infwarerr.sty
+ texmf-dist/tex/generic/oberdiek/intcalc.sty
+ texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
+ texmf-dist/tex/generic/oberdiek/pdfcol.sty
+ texmf-dist/tex/generic/oberdiek/pdfcrypt.sty
+ texmf-dist/tex/generic/oberdiek/pdfescape.sty
+ texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
+ texmf-dist/tex/generic/oberdiek/se-ascii.def
+ texmf-dist/tex/generic/oberdiek/se-cp1250.def
+ texmf-dist/tex/generic/oberdiek/se-cp1251.def
+ texmf-dist/tex/generic/oberdiek/se-cp1252.def
+ texmf-dist/tex/generic/oberdiek/se-cp1257.def
+ texmf-dist/tex/generic/oberdiek/se-cp437.def
+ texmf-dist/tex/generic/oberdiek/se-cp850.def
+ texmf-dist/tex/generic/oberdiek/se-cp852.def
+ texmf-dist/tex/generic/oberdiek/se-cp855.def
+ texmf-dist/tex/generic/oberdiek/se-cp858.def
+ texmf-dist/tex/generic/oberdiek/se-cp865.def
+ texmf-dist/tex/generic/oberdiek/se-cp866.def
+ texmf-dist/tex/generic/oberdiek/se-dec-mcs.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-1.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-10.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-11.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-13.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-14.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-15.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-16.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-2.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-3.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-4.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-5.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-6.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-7.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-8.def
+ texmf-dist/tex/generic/oberdiek/se-iso-8859-9.def
+ texmf-dist/tex/generic/oberdiek/se-koi8-r.def
+ texmf-dist/tex/generic/oberdiek/se-mac-centeuro.def
+ texmf-dist/tex/generic/oberdiek/se-mac-cyrillic.def
+ texmf-dist/tex/generic/oberdiek/se-mac-roman.def
+ texmf-dist/tex/generic/oberdiek/se-nextstep.def
+ texmf-dist/tex/generic/oberdiek/se-pdfdoc.def
+ texmf-dist/tex/generic/oberdiek/se-utf16le.def
+ texmf-dist/tex/generic/oberdiek/se-utf32be.def
+ texmf-dist/tex/generic/oberdiek/se-utf32le.def
+ texmf-dist/tex/generic/oberdiek/se-utf8.def
+ texmf-dist/tex/generic/oberdiek/setouterhbox.sty
+ texmf-dist/tex/generic/oberdiek/soulutf8.sty
+ texmf-dist/tex/generic/oberdiek/stringenc.sty
+ texmf-dist/tex/generic/oberdiek/telprint.sty
+ texmf-dist/tex/latex/oberdiek/accsupp-dvipdfm.def
+ texmf-dist/tex/latex/oberdiek/accsupp-dvips.def
+ texmf-dist/tex/latex/oberdiek/accsupp-pdftex.def
+ texmf-dist/tex/latex/oberdiek/accsupp.sty
+ texmf-dist/tex/latex/oberdiek/aliascnt.sty
+ texmf-dist/tex/latex/oberdiek/askinclude.sty
+ texmf-dist/tex/latex/oberdiek/atenddvi.sty
+ texmf-dist/tex/latex/oberdiek/atfidvips.def
+ texmf-dist/tex/latex/oberdiek/atfipdftex.def
+ texmf-dist/tex/latex/oberdiek/attachfile2.sty
+ texmf-dist/tex/latex/oberdiek/auxhook.sty
+ texmf-dist/tex/latex/oberdiek/bkm-dvipdfm.def
+ texmf-dist/tex/latex/oberdiek/bkm-dvips.def
+ texmf-dist/tex/latex/oberdiek/bkm-dvipsone.def
+ texmf-dist/tex/latex/oberdiek/bkm-pdftex.def
+ texmf-dist/tex/latex/oberdiek/bkm-textures.def
+ texmf-dist/tex/latex/oberdiek/bkm-vtex.def
+ texmf-dist/tex/latex/oberdiek/bmpsize-base.sty
+ texmf-dist/tex/latex/oberdiek/bmpsize-dvipdfm.def
+ texmf-dist/tex/latex/oberdiek/bmpsize-dvipdfmx.def
+ texmf-dist/tex/latex/oberdiek/bmpsize-dvips.def
+ texmf-dist/tex/latex/oberdiek/bmpsize-test.tex
+ texmf-dist/tex/latex/oberdiek/bmpsize.sty
+ texmf-dist/tex/latex/oberdiek/bookmark.sty
+ texmf-dist/tex/latex/oberdiek/centernot.sty
+ texmf-dist/tex/latex/oberdiek/chemarr.sty
+ texmf-dist/tex/latex/oberdiek/classlist.sty
+ texmf-dist/tex/latex/oberdiek/colonequals.sty
+ texmf-dist/tex/latex/oberdiek/dtx-attach.sty
+ texmf-dist/tex/latex/oberdiek/dvipscol.sty
+ texmf-dist/tex/latex/oberdiek/embedfile.sty
+ texmf-dist/tex/latex/oberdiek/epstopdf.sty
+ texmf-dist/tex/latex/oberdiek/flags.sty
+ texmf-dist/tex/latex/oberdiek/grfext.sty
+ texmf-dist/tex/latex/oberdiek/grffile.sty
+ texmf-dist/tex/latex/oberdiek/holtxdoc.sty
+ texmf-dist/tex/latex/oberdiek/hycolor.sty
+ texmf-dist/tex/latex/oberdiek/hypbmsec.sty
+ texmf-dist/tex/latex/oberdiek/hypcap.sty
+ texmf-dist/tex/latex/oberdiek/hypdestopt.sty
+ texmf-dist/tex/latex/oberdiek/hypdoc.sty
+ texmf-dist/tex/latex/oberdiek/hypgotoe.sty
+ texmf-dist/tex/latex/oberdiek/ifdraft.sty
+ texmf-dist/tex/latex/oberdiek/inputenx.sty
+ texmf-dist/tex/latex/oberdiek/ix-alias.def
+ texmf-dist/tex/latex/oberdiek/ix-math.def
+ texmf-dist/tex/latex/oberdiek/ix-name.def
+ texmf-dist/tex/latex/oberdiek/ix-slot.def
+ texmf-dist/tex/latex/oberdiek/ix-uc.def
+ texmf-dist/tex/latex/oberdiek/ix-utf8enc.dfu
+ texmf-dist/tex/latex/oberdiek/kvoptions-patch.sty
+ texmf-dist/tex/latex/oberdiek/kvoptions.sty
+ texmf-dist/tex/latex/oberdiek/listingsutf8.sty
+ texmf-dist/tex/latex/oberdiek/makerobust.sty
+ texmf-dist/tex/latex/oberdiek/pagesel.sty
+ texmf-dist/tex/latex/oberdiek/pdfcolfoot.sty
+ texmf-dist/tex/latex/oberdiek/pdfcolmk.sty
+ texmf-dist/tex/latex/oberdiek/pdfcolparallel.sty
+ texmf-dist/tex/latex/oberdiek/pdfcolparcolumns.sty
+ texmf-dist/tex/latex/oberdiek/pdflscape.sty
+ texmf-dist/tex/latex/oberdiek/picture.sty
+ texmf-dist/tex/latex/oberdiek/pmboxdraw.sty
+ texmf-dist/tex/latex/oberdiek/pmboxdrawenc.dfu
+ texmf-dist/tex/latex/oberdiek/refcount.sty
+ texmf-dist/tex/latex/oberdiek/selinput.sty
+ texmf-dist/tex/latex/oberdiek/settobox.sty
+ texmf-dist/tex/latex/oberdiek/stackrel.sty
+ texmf-dist/tex/latex/oberdiek/tabularht.sty
+ texmf-dist/tex/latex/oberdiek/tabularkv.sty
+ texmf-dist/tex/latex/oberdiek/transparent.sty
+ texmf-dist/tex/latex/oberdiek/twoopt.sty
+ texmf-dist/tex/latex/oberdiek/x-ascii.def
+ texmf-dist/tex/latex/oberdiek/x-cp1250.def
+ texmf-dist/tex/latex/oberdiek/x-cp1251.def
+ texmf-dist/tex/latex/oberdiek/x-cp1252.def
+ texmf-dist/tex/latex/oberdiek/x-cp1257.def
+ texmf-dist/tex/latex/oberdiek/x-cp437.def
+ texmf-dist/tex/latex/oberdiek/x-cp850.def
+ texmf-dist/tex/latex/oberdiek/x-cp852.def
+ texmf-dist/tex/latex/oberdiek/x-cp855.def
+ texmf-dist/tex/latex/oberdiek/x-cp858.def
+ texmf-dist/tex/latex/oberdiek/x-cp865.def
+ texmf-dist/tex/latex/oberdiek/x-cp866.def
+ texmf-dist/tex/latex/oberdiek/x-dec-mcs.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-1.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-10.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-13.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-14.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-15.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-16.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-2.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-3.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-4.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-5.def
+ texmf-dist/tex/latex/oberdiek/x-iso-8859-9.def
+ texmf-dist/tex/latex/oberdiek/x-koi8-r.def
+ texmf-dist/tex/latex/oberdiek/x-mac-centeuro.def
+ texmf-dist/tex/latex/oberdiek/x-mac-cyrillic.def
+ texmf-dist/tex/latex/oberdiek/x-mac-roman.def
+ texmf-dist/tex/latex/oberdiek/x-nextstep.def
+ texmf-dist/tex/latex/oberdiek/zref-abspage.sty
+ texmf-dist/tex/latex/oberdiek/zref-base.sty
+ texmf-dist/tex/latex/oberdiek/zref-counter.sty
+ texmf-dist/tex/latex/oberdiek/zref-dotfill.sty
+ texmf-dist/tex/latex/oberdiek/zref-hyperref.sty
+ texmf-dist/tex/latex/oberdiek/zref-lastpage.sty
+ texmf-dist/tex/latex/oberdiek/zref-perpage.sty
+ texmf-dist/tex/latex/oberdiek/zref-savepos.sty
+ texmf-dist/tex/latex/oberdiek/zref-titleref.sty
+ texmf-dist/tex/latex/oberdiek/zref-totpages.sty
+ texmf-dist/tex/latex/oberdiek/zref-user.sty
+ texmf-dist/tex/latex/oberdiek/zref-xr.sty
+ texmf-dist/tex/latex/oberdiek/zref.sty
+
+name objectz
+category Package
+revision 1487
+shortdesc Macros for typesetting Object Z.
+longdesc The package will typeset both Z and Object-Z specifications; it
+longdesc develops the original zed package
+docfiles size=129512
+ texmf-dist/doc/latex/objectz/ozguide.dvi
+ texmf-dist/doc/latex/objectz/ozguide.tex
+ texmf-dist/doc/latex/objectz/oztest.dvi
+ texmf-dist/doc/latex/objectz/oztest.tex
+srcfiles size=59005
+ texmf-dist/source/latex/objectz/catalog
+ texmf-dist/source/latex/objectz/makefile
+ texmf-dist/source/latex/objectz/manifest
+ texmf-dist/source/latex/objectz/oz.dtx
+ texmf-dist/source/latex/objectz/oz.ins
+ texmf-dist/source/latex/objectz/readme
+runfiles size=38537
+ texmf-dist/tex/latex/objectz/oz.sty
+catalogue-version
+catalogue-date 2006-12-30 22:14:40 +0100
+catalogue-ctan /macros/latex/contrib/objectz
+catalogue-license lppl
+
+name oca
+category Package
+revision 101
+shortdesc OCR A font.
+longdesc An OCR-A font in MetaFont format. The font ocr-a is said to be
+longdesc a better representation of the standard than oca.
+runfiles size=52248
+ texmf-dist/fonts/source/public/oca/ocra.mf
+ texmf-dist/fonts/source/public/oca/ocra10.mf
+ texmf-dist/fonts/source/public/oca/ocra12.mf
+ texmf-dist/fonts/source/public/oca/ocra17.mf
+catalogue-version
+catalogue-date 2007-10-07 21:46:05 +0200
+catalogue-ctan /fonts/oca
+catalogue-license unknown
+
+name ocherokee
+category Package
+revision 103
+shortdesc LaTeX Support for the Cherokee language.
+longdesc Macros and Type 1 fonts for Typesetting the Cherokee language
+longdesc with the Omega version of LaTeX (known as Lambda).
+execute addMap cherokee.map
+docfiles size=65143
+ texmf-dist/doc/lambda/ocherokee/cherokee.pdf
+ texmf-dist/doc/lambda/ocherokee/chief.tex
+ texmf-dist/doc/lambda/ocherokee/proverb.tex
+runfiles size=311655
+ texmf-dist/fonts/afm/public/ocherokee/Cherokee-Bold.afm
+ texmf-dist/fonts/afm/public/ocherokee/Cherokee.afm
+ texmf-dist/fonts/map/dvips/ocherokee/cherokee.map
+ texmf-dist/fonts/ofm/public/ocherokee/OCherokee.ofm
+ texmf-dist/fonts/ofm/public/ocherokee/OCherokeeb.ofm
+ texmf-dist/fonts/ofm/public/ocherokee/OCherokeebo.ofm
+ texmf-dist/fonts/ofm/public/ocherokee/OCherokeeo.ofm
+ texmf-dist/fonts/ovf/public/ocherokee/OCherokee.ovf
+ texmf-dist/fonts/ovf/public/ocherokee/OCherokeeb.ovf
+ texmf-dist/fonts/ovf/public/ocherokee/OCherokeebo.ovf
+ texmf-dist/fonts/ovf/public/ocherokee/OCherokeeo.ovf
+ texmf-dist/fonts/ovp/public/ocherokee/OCherokee.ovp
+ texmf-dist/fonts/ovp/public/ocherokee/OCherokeeb.ovp
+ texmf-dist/fonts/ovp/public/ocherokee/OCherokeebo.ovp
+ texmf-dist/fonts/ovp/public/ocherokee/OCherokeeo.ovp
+ texmf-dist/fonts/tfm/public/ocherokee/Cherokee.tfm
+ texmf-dist/fonts/tfm/public/ocherokee/Cherokeeb.tfm
+ texmf-dist/fonts/tfm/public/ocherokee/Cherokeebo.tfm
+ texmf-dist/fonts/tfm/public/ocherokee/Cherokeeo.tfm
+ texmf-dist/fonts/type1/public/ocherokee/Cherokee-Bold.pfb
+ texmf-dist/fonts/type1/public/ocherokee/Cherokee.pfb
+ texmf-dist/omega/ocp/ocherokee/cher2uni.ocp
+ texmf-dist/omega/otp/ocherokee/cher2uni.otp
+catalogue-version
+catalogue-date 2007-03-12 00:37:02 +0100
+catalogue-ctan /language/cherokee/ocherokee
+catalogue-license lppl
+
+name ocr-a
+category Package
+revision 101
+shortdesc Fonts for OCR-A.
+longdesc The fonts are distributed as MetaFont programs, derived from
+longdesc ANSI Standard X3.17-1977 (though use at your own risk).
+runfiles size=75423
+ texmf-dist/fonts/source/public/ocr-a/ocr-a.mf
+ texmf-dist/fonts/source/public/ocr-a/ocr-ai.mf
+ texmf-dist/fonts/source/public/ocr-a/ocr-aii.mf
+ texmf-dist/fonts/source/public/ocr-a/ocr-aiii.mf
+ texmf-dist/fonts/source/public/ocr-a/ocr-aiv.mf
+ texmf-dist/fonts/source/public/ocr-a/ocr.mf
+ texmf-dist/fonts/source/public/ocr-a/ocr10.mf
+ texmf-dist/fonts/source/public/ocr-a/ocr12.mf
+ texmf-dist/fonts/source/public/ocr-a/ocr16.mf
+catalogue-version
+catalogue-date 2006-12-30 22:14:40 +0100
+catalogue-ctan /fonts/ocr-a
+catalogue-license nosell
+
+name ocr-latex
+category Package
+revision 2189
+shortdesc LaTeX support for ocr fonts.
+longdesc The package supports use of both ocr-a and ocr-b fonts in LaTeX
+longdesc documents.
+docfiles size=189343
+ texmf-dist/doc/latex/ocr-latex/README
+ texmf-dist/doc/latex/ocr-latex/ocr.pdf details="Package documentation"
+ texmf-dist/doc/latex/ocr-latex/ocr.tex
+runfiles size=8443
+ texmf-dist/tex/latex/ocr-latex/ocr.sty
+ texmf-dist/tex/latex/ocr-latex/ot1oca.fd
+ texmf-dist/tex/latex/ocr-latex/ot1ocra.fd
+ texmf-dist/tex/latex/ocr-latex/ot1ocrb.fd
+ texmf-dist/tex/latex/ocr-latex/ot1ocrbn.fd
+ texmf-dist/tex/latex/ocr-latex/ot1ocrbns.fd
+ texmf-dist/tex/latex/ocr-latex/ot1ocrbo.fd
+ texmf-dist/tex/latex/ocr-latex/ot1ocrbs.fd
+catalogue-version
+catalogue-date 2007-03-11 14:06:37 +0100
+catalogue-ctan /macros/latex/contrib/ocr-latex
+catalogue-license gpl
+
+name octavo
+category Package
+revision 4023
+shortdesc Typeset books following classical design and layout.
+longdesc The octavo class is a modification of the standard LaTeX book
+longdesc class. Its purpose is to typeset books following classical
+longdesc design and layout principles, with the express intention of
+longdesc encouraging the making of beautiful books by anyone with access
+longdesc to a good printer and with an inclination towards venerable
+longdesc crafts, e.g., bookbinding. The octavo class differs from the
+longdesc book class by implementing many of the proposals and insights
+longdesc of respected experts, especially Jan Tschichold and Hugh
+longdesc Williamson. The documentation discusses methods to organise and
+longdesc print out any text into signatures, which can then be gathered,
+longdesc folded and sewn into a book.
+docfiles size=190115
+ texmf-dist/doc/latex/octavo/README details="Readme"
+ texmf-dist/doc/latex/octavo/changes
+ texmf-dist/doc/latex/octavo/tub-octavo.pdf details="Package documentation"
+srcfiles size=104767
+ texmf-dist/source/latex/octavo/octavo.dtx
+ texmf-dist/source/latex/octavo/octavo.ins
+runfiles size=37406
+ texmf-dist/tex/latex/octavo/oct10.clo
+ texmf-dist/tex/latex/octavo/oct11.clo
+ texmf-dist/tex/latex/octavo/oct12.clo
+ texmf-dist/tex/latex/octavo/octavo.cls
+catalogue-version 1.2
+catalogue-date 2007-03-07 18:02:23 +0100
+catalogue-ctan /macros/latex/contrib/octavo
+catalogue-license lppl
+
+name oesch
+category Package
+revision 1487
+shortdesc Font to provide the Österreichische Schulschrift.
+longdesc MetaFont sources and a LaTeX package for the Österreichische
+longdesc Schulschrift (Austrian school writing) of 1995, which differs
+longdesc from German school writing in a number of significant aspects.
+docfiles size=29770
+ texmf-dist/doc/latex/oesch/beispiel.dvi
+ texmf-dist/doc/latex/oesch/beispiel.tex
+ texmf-dist/doc/latex/oesch/example.dvi
+ texmf-dist/doc/latex/oesch/example.tex
+ texmf-dist/doc/latex/oesch/liesmich.txt details="Readme (German)" language="de"
+ texmf-dist/doc/latex/oesch/readme.txt details="Readme"
+runfiles size=67618
+ texmf-dist/fonts/source/public/oesch/lig.mf
+ texmf-dist/fonts/source/public/oesch/oesch.mf
+ texmf-dist/fonts/source/public/oesch/oesch_m.mf
+ texmf-dist/fonts/source/public/oesch/oeschb.mf
+ texmf-dist/tex/latex/oesch/oe.def
+ texmf-dist/tex/latex/oesch/oesch.sty
+catalogue-version
+catalogue-date 2006-12-30 22:14:40 +0100
+catalogue-ctan /fonts/oesch
+catalogue-license unknown
+
+name ofs
+category Package
+revision 613
+shortdesc Macros for managing large font collections.
+longdesc OFS (Olsak's Font System) is a set of Plain TeX and LaTeX
+longdesc macros for managing large font collections; it has been used by
+longdesc Czech/Slovak users for many years. Main features include: –
+longdesc Mapping from long names of fonts to the metric file name. The
+longdesc user can specify only exact long names in documents. –
+longdesc Support for many font encodings. – Printing of catalogues of
+longdesc fonts and test samples of font families; the interactive macro
+longdesc \showfonts shows all font families you have installed via OFS.
+longdesc – The user interface is the same for Plain TeX and for LaTeX,
+longdesc but the implementation differs: the LaTeX variant of OFS uses
+longdesc NFSS, but the Plain variant implements its own font management
+longdesc (which may even be better than NFSS) – Support for math fonts
+longdesc including TX fonts.
+docfiles size=1064563
+ texmf-dist/doc/generic/ofs/changes.txt
+ texmf-dist/doc/generic/ofs/eurotex2003-ofs.pdf
+ texmf-dist/doc/generic/ofs/eurotex2003-ofs.tex
+ texmf-dist/doc/generic/ofs/ofs-slt.pdf
+ texmf-dist/doc/generic/ofs/ofsdoc-e.pdf
+ texmf-dist/doc/generic/ofs/ofsdoc-e.tex
+ texmf-dist/doc/generic/ofs/ofsdoc.pdf
+ texmf-dist/doc/generic/ofs/ofsdoc.tex
+ texmf-dist/doc/generic/ofs/ofsmtdef.tex
+ texmf-dist/doc/generic/ofs/ofstest.tex
+ texmf-dist/doc/generic/ofs/readme.ofs details="Readme"
+runfiles size=305027
+ texmf-dist/tex/generic/ofs/a117.tex
+ texmf-dist/tex/generic/ofs/a35.sty
+ texmf-dist/tex/generic/ofs/a35.tex
+ texmf-dist/tex/generic/ofs/allfonts.sty
+ texmf-dist/tex/generic/ofs/allfonts.tex
+ texmf-dist/tex/generic/ofs/amsfn.tex
+ texmf-dist/tex/generic/ofs/mtfn.tex
+ texmf-dist/tex/generic/ofs/ofs-6a.tex
+ texmf-dist/tex/generic/ofs/ofs-6c.tex
+ texmf-dist/tex/generic/ofs/ofs-6k.tex
+ texmf-dist/tex/generic/ofs/ofs-6s.tex
+ texmf-dist/tex/generic/ofs/ofs-6t.tex
+ texmf-dist/tex/generic/ofs/ofs-6x.tex
+ texmf-dist/tex/generic/ofs/ofs-6y.tex
+ texmf-dist/tex/generic/ofs/ofs-8c.tex
+ texmf-dist/tex/generic/ofs/ofs-8t.tex
+ texmf-dist/tex/generic/ofs/ofs-8x.tex
+ texmf-dist/tex/generic/ofs/ofs-8z.tex
+ texmf-dist/tex/generic/ofs/ofs-ams.tex
+ texmf-dist/tex/generic/ofs/ofs-cm.tex
+ texmf-dist/tex/generic/ofs/ofs-mt.tex
+ texmf-dist/tex/generic/ofs/ofs-ps.tex
+ texmf-dist/tex/generic/ofs/ofs-px.tex
+ texmf-dist/tex/generic/ofs/ofs-slt.tex
+ texmf-dist/tex/generic/ofs/ofs-tx.tex
+ texmf-dist/tex/generic/ofs/ofs.sty
+ texmf-dist/tex/generic/ofs/ofs.tex
+ texmf-dist/tex/generic/ofs/ofsdef.tex
+ texmf-dist/tex/generic/ofs/pantyk.tex
+ texmf-dist/tex/generic/ofs/txfn.tex
+catalogue-version
+catalogue-date 2006-12-30 22:14:40 +0100
+catalogue-ctan /macros/generic/ofs
+catalogue-license knuth
+
+name ogham
+category Package
+revision 101
+shortdesc Fonts for typesetting Ogham script.
+longdesc The font provides the Ogham alphabet, which is found on a
+longdesc number of Irish and Pictish carvings dating from the 4th
+longdesc century AD. The font is distributed as a MetaFont program.
+runfiles size=4715
+ texmf-dist/fonts/source/public/ogham/ogham.mf
+ texmf-dist/fonts/tfm/public/ogham/ogham.tfm
+catalogue-version
+catalogue-date 2006-12-30 22:14:40 +0100
+catalogue-ctan /fonts/ogham
+catalogue-license unknown
+
+name ogonek
+category Package
+revision 1487
+shortdesc Support for Polish typography and the ogonek.
+longdesc Defines a \k command that, even in the absence of T1- or
+longdesc Polish-encoded fonts, permits an ogonek diacritic.
+docfiles size=25183
+ texmf-dist/doc/latex/ogonek/ogonek.dvi
+ texmf-dist/doc/latex/ogonek/togonek1.ltx
+ texmf-dist/doc/latex/ogonek/togonek2.ltx
+srcfiles size=20364
+ texmf-dist/source/latex/ogonek/ogonek.dtx
+ texmf-dist/source/latex/ogonek/ogonek.ins
+ texmf-dist/source/latex/ogonek/readme
+runfiles size=3924
+ texmf-dist/tex/latex/ogonek/ogonek.sty
+catalogue-version 0.51
+catalogue-date 2006-12-30 22:14:40 +0100
+catalogue-ctan /macros/latex/contrib/ogonek
+catalogue-license other
+
+name oinuit
+category Package
+revision 615
+shortdesc LaTeX Support for the Inuktitut Language.
+longdesc The oinuit system is a set of Lambda (Omega LaTeX) typesetting
+longdesc tools for the Inuktitut language. The oinuit package supports
+longdesc five different input methods and is bundled with the necessary
+longdesc fonts.
+execute addMap oinuit.map
+docfiles size=6196
+ texmf-dist/doc/fonts/oinuit/README.1ST
+ texmf-dist/doc/fonts/oinuit/examples/book.tex
+ texmf-dist/doc/fonts/oinuit/examples/taqtu.tex
+srcfiles size=44911
+ texmf-dist/source/lambda/oinuit/oinuit.dtx
+ texmf-dist/source/lambda/oinuit/oinuit.ins
+ texmf-dist/source/lambda/oinuit/oinuit.sty
+runfiles size=2243753
+ texmf-dist/fonts/map/dvips/oinuit/oinuit.map
+ texmf-dist/fonts/ofm/public/oinuit/OInuit.ofm
+ texmf-dist/fonts/ofm/public/oinuit/OInuitb.ofm
+ texmf-dist/fonts/ofm/public/oinuit/OInuitbo.ofm
+ texmf-dist/fonts/ofm/public/oinuit/OInuito.ofm
+ texmf-dist/fonts/ovf/public/oinuit/OInuit.ovf
+ texmf-dist/fonts/ovf/public/oinuit/OInuitb.ovf
+ texmf-dist/fonts/ovf/public/oinuit/OInuitbo.ovf
+ texmf-dist/fonts/ovf/public/oinuit/OInuito.ovf
+ texmf-dist/fonts/tfm/public/oinuit/Inuit.tfm
+ texmf-dist/fonts/tfm/public/oinuit/Inuitb.tfm
+ texmf-dist/fonts/tfm/public/oinuit/Inuitbo.tfm
+ texmf-dist/fonts/tfm/public/oinuit/Inuito.tfm
+ texmf-dist/fonts/type1/public/oinuit/Inuit.pfb
+ texmf-dist/fonts/type1/public/oinuit/Inuitb.pfb
+ texmf-dist/fonts/type1/public/oinuit/Inuitbo.pfb
+ texmf-dist/fonts/type1/public/oinuit/Inuito.pfb
+ texmf-dist/fonts/type1/public/oinuit/cmssbxo10.pfb
+ texmf-dist/omega/ocp/oinuit/Ninuit2uni.ocp
+ texmf-dist/omega/ocp/oinuit/Qinuit2uni.ocp
+ texmf-dist/omega/ocp/oinuit/inuitscii.ocp
+ texmf-dist/tex/lambda/oinuit/oinuit.sty
+catalogue-version
+catalogue-date 2007-02-23 22:01:12 +0100
+catalogue-ctan /language/inuktitut/oinuit
+catalogue-license lppl
+
+name oldstyle
+category Package
+revision 1155
+shortdesc Old style numbers in OT1 encoding.
+longdesc Font information needed to load the cmmi and cmmib fonts for
+longdesc use to produce oldstyle numbers.
+srcfiles size=5388
+ texmf-dist/source/latex/oldstyle/oldstyle.dtx
+ texmf-dist/source/latex/oldstyle/oldstyle.ins
+runfiles size=4147
+ texmf-dist/tex/latex/oldstyle/Ucmm.fd
+ texmf-dist/tex/latex/oldstyle/oldstyle.sty
+catalogue-version 0.2
+catalogue-date 2006-12-30 22:14:40 +0100
+catalogue-ctan /macros/latex/contrib/oldstyle
+catalogue-license lppl
+
+name omega
+category Package
+revision 1726
+shortdesc A wide-character-set extension of TeX.
+longdesc A development of TeX, which deals in multi-octet Unicode
+longdesc characters, to enable native treatment of a wide range of
+longdesc languages without changing character-set. Work on Omega seems,
+longdesc more or less, to have ceased: its immediate successor was to be
+longdesc the aleph project (though that too has stalled). Projects
+longdesc developing Omega (and Aleph) ideas include Omega-2 and LuaTeX.
+execute addMap omega.map
+docfiles size=558108
+ texmf-dist/doc/omega/base/doc-1.8.tex
+ texmf-dist/doc/omega/base/torture.ps
+ texmf-dist/doc/omega/base/torture.tex
+runfiles size=5298212
+ texmf-dist/dvips/omega/config.omega
+ texmf-dist/dvips/omega/omega.cfg
+ texmf-dist/fonts/afm/public/omega/omsea1.afm
+ texmf-dist/fonts/afm/public/omega/omsea1b.afm
+ texmf-dist/fonts/afm/public/omega/omsea2.afm
+ texmf-dist/fonts/afm/public/omega/omsea2b.afm
+ texmf-dist/fonts/afm/public/omega/omsea3.afm
+ texmf-dist/fonts/afm/public/omega/omsea3b.afm
+ texmf-dist/fonts/afm/public/omega/omseco.afm
+ texmf-dist/fonts/afm/public/omega/omsecob.afm
+ texmf-dist/fonts/afm/public/omega/omsecobi.afm
+ texmf-dist/fonts/afm/public/omega/omsecoi.afm
+ texmf-dist/fonts/afm/public/omega/omsecx.afm
+ texmf-dist/fonts/afm/public/omega/omsecy.afm
+ texmf-dist/fonts/afm/public/omega/omsegr.afm
+ texmf-dist/fonts/afm/public/omega/omsegrb.afm
+ texmf-dist/fonts/afm/public/omega/omsegrbi.afm
+ texmf-dist/fonts/afm/public/omega/omsegri.afm
+ texmf-dist/fonts/afm/public/omega/omseha.afm
+ texmf-dist/fonts/afm/public/omega/omsehe.afm
+ texmf-dist/fonts/afm/public/omega/omseip.afm
+ texmf-dist/fonts/afm/public/omega/omsela.afm
+ texmf-dist/fonts/afm/public/omega/omselab.afm
+ texmf-dist/fonts/afm/public/omega/omselabi.afm
+ texmf-dist/fonts/afm/public/omega/omselai.afm
+ texmf-dist/fonts/afm/public/omega/omseti.afm
+ texmf-dist/fonts/map/dvips/omega/omega.map
+ texmf-dist/fonts/ofm/public/omega/omarab.ofm
+ texmf-dist/fonts/ofm/public/omega/omarabb.ofm
+ texmf-dist/fonts/ofm/public/omega/omlgc.ofm
+ texmf-dist/fonts/ofm/public/omega/omlgcb.ofm
+ texmf-dist/fonts/ofm/public/omega/omlgcbi.ofm
+ texmf-dist/fonts/ofm/public/omega/omlgci.ofm
+ texmf-dist/fonts/ofm/public/omega/ucitt10.ofm
+ texmf-dist/fonts/ofm/public/omega/ucsltt10.ofm
+ texmf-dist/fonts/ofm/public/omega/uctt10.ofm
+ texmf-dist/fonts/ofm/public/omega/uctt12.ofm
+ texmf-dist/fonts/ofm/public/omega/uctt8.ofm
+ texmf-dist/fonts/ofm/public/omega/uctt9.ofm
+ texmf-dist/fonts/ofm/public/omega/ucvtt10.ofm
+ texmf-dist/fonts/ovf/public/omega/omarab.ovf
+ texmf-dist/fonts/ovf/public/omega/omarabb.ovf
+ texmf-dist/fonts/ovf/public/omega/omlgc.ovf
+ texmf-dist/fonts/ovf/public/omega/omlgcb.ovf
+ texmf-dist/fonts/ovf/public/omega/omlgcbi.ovf
+ texmf-dist/fonts/ovf/public/omega/omlgci.ovf
+ texmf-dist/fonts/ovf/public/omega/ucitt10.ovf
+ texmf-dist/fonts/ovf/public/omega/ucsltt10.ovf
+ texmf-dist/fonts/ovf/public/omega/uctt10.ovf
+ texmf-dist/fonts/ovf/public/omega/uctt12.ovf
+ texmf-dist/fonts/ovf/public/omega/uctt8.ovf
+ texmf-dist/fonts/ovf/public/omega/uctt9.ovf
+ texmf-dist/fonts/ovf/public/omega/ucvtt10.ovf
+ texmf-dist/fonts/ovp/public/omega/omarab.ovp
+ texmf-dist/fonts/ovp/public/omega/omarabb.ovp
+ texmf-dist/fonts/ovp/public/omega/omlgc.ovp
+ texmf-dist/fonts/ovp/public/omega/omlgcb.ovp
+ texmf-dist/fonts/ovp/public/omega/omlgcbi.ovp
+ texmf-dist/fonts/ovp/public/omega/omlgci.ovp
+ texmf-dist/fonts/ovp/public/omega/ucitt10.ovp
+ texmf-dist/fonts/ovp/public/omega/ucsltt10.ovp
+ texmf-dist/fonts/ovp/public/omega/uctt10.ovp
+ texmf-dist/fonts/ovp/public/omega/uctt12.ovp
+ texmf-dist/fonts/ovp/public/omega/uctt8.ovp
+ texmf-dist/fonts/ovp/public/omega/uctt9.ovp
+ texmf-dist/fonts/ovp/public/omega/ucvtt10.ovp
+ texmf-dist/fonts/tfm/public/omega/omding.tfm
+ texmf-dist/fonts/tfm/public/omega/omsea1.tfm
+ texmf-dist/fonts/tfm/public/omega/omsea1b.tfm
+ texmf-dist/fonts/tfm/public/omega/omsea2.tfm
+ texmf-dist/fonts/tfm/public/omega/omsea2b.tfm
+ texmf-dist/fonts/tfm/public/omega/omsea3.tfm
+ texmf-dist/fonts/tfm/public/omega/omsea3b.tfm
+ texmf-dist/fonts/tfm/public/omega/omseco.tfm
+ texmf-dist/fonts/tfm/public/omega/omsecob.tfm
+ texmf-dist/fonts/tfm/public/omega/omsecobi.tfm
+ texmf-dist/fonts/tfm/public/omega/omsecoi.tfm
+ texmf-dist/fonts/tfm/public/omega/omsecx.tfm
+ texmf-dist/fonts/tfm/public/omega/omsecy.tfm
+ texmf-dist/fonts/tfm/public/omega/omsegr.tfm
+ texmf-dist/fonts/tfm/public/omega/omsegrb.tfm
+ texmf-dist/fonts/tfm/public/omega/omsegrbi.tfm
+ texmf-dist/fonts/tfm/public/omega/omsegri.tfm
+ texmf-dist/fonts/tfm/public/omega/omseha.tfm
+ texmf-dist/fonts/tfm/public/omega/omseip.tfm
+ texmf-dist/fonts/tfm/public/omega/omsela.tfm
+ texmf-dist/fonts/tfm/public/omega/omselab.tfm
+ texmf-dist/fonts/tfm/public/omega/omselabi.tfm
+ texmf-dist/fonts/tfm/public/omega/omselai.tfm
+ texmf-dist/fonts/tfm/public/omega/omseti.tfm
+ texmf-dist/fonts/tfm/public/omega/omssti.tfm
+ texmf-dist/fonts/type1/public/omega/omding.pfb
+ texmf-dist/fonts/type1/public/omega/omsea1.pfb
+ texmf-dist/fonts/type1/public/omega/omsea1b.pfb
+ texmf-dist/fonts/type1/public/omega/omsea2.pfb
+ texmf-dist/fonts/type1/public/omega/omsea2b.pfb
+ texmf-dist/fonts/type1/public/omega/omsea3.pfb
+ texmf-dist/fonts/type1/public/omega/omsea3b.pfb
+ texmf-dist/fonts/type1/public/omega/omseco.pfb
+ texmf-dist/fonts/type1/public/omega/omsecob.pfb
+ texmf-dist/fonts/type1/public/omega/omsecobi.pfb
+ texmf-dist/fonts/type1/public/omega/omsecoi.pfb
+ texmf-dist/fonts/type1/public/omega/omsecx.pfb
+ texmf-dist/fonts/type1/public/omega/omsecy.pfb
+ texmf-dist/fonts/type1/public/omega/omsecyb.pfb
+ texmf-dist/fonts/type1/public/omega/omsecyi.pfb
+ texmf-dist/fonts/type1/public/omega/omsegr.pfb
+ texmf-dist/fonts/type1/public/omega/omsegrb.pfb
+ texmf-dist/fonts/type1/public/omega/omsegrbi.pfb
+ texmf-dist/fonts/type1/public/omega/omsegri.pfb
+ texmf-dist/fonts/type1/public/omega/omseha.pfb
+ texmf-dist/fonts/type1/public/omega/omsehe.pfb
+ texmf-dist/fonts/type1/public/omega/omseip.pfb
+ texmf-dist/fonts/type1/public/omega/omsela.pfb
+ texmf-dist/fonts/type1/public/omega/omselab.pfb
+ texmf-dist/fonts/type1/public/omega/omselabi.pfb
+ texmf-dist/fonts/type1/public/omega/omselai.pfb
+ texmf-dist/fonts/type1/public/omega/omseti.pfb
+ texmf-dist/fonts/type1/public/omega/omssti.pfb
+ texmf-dist/omega/ocp/char2uni/in646.ocp
+ texmf-dist/omega/ocp/char2uni/in88591.ocp
+ texmf-dist/omega/ocp/char2uni/in88592.ocp
+ texmf-dist/omega/ocp/char2uni/in88593.ocp
+ texmf-dist/omega/ocp/char2uni/in88594.ocp
+ texmf-dist/omega/ocp/char2uni/in88595.ocp
+ texmf-dist/omega/ocp/char2uni/in88596.ocp
+ texmf-dist/omega/ocp/char2uni/in88597.ocp
+ texmf-dist/omega/ocp/char2uni/in88598.ocp
+ texmf-dist/omega/ocp/char2uni/in88599.ocp
+ texmf-dist/omega/ocp/char2uni/in8859a.ocp
+ texmf-dist/omega/ocp/char2uni/in8859d.ocp
+ texmf-dist/omega/ocp/char2uni/in8859e.ocp
+ texmf-dist/omega/ocp/char2uni/in8859f.ocp
+ texmf-dist/omega/ocp/char2uni/in8859g.ocp
+ texmf-dist/omega/ocp/char2uni/inatari.ocp
+ texmf-dist/omega/ocp/char2uni/inav.ocp
+ texmf-dist/omega/ocp/char2uni/inbig5.ocp
+ texmf-dist/omega/ocp/char2uni/incp1250.ocp
+ texmf-dist/omega/ocp/char2uni/incp1251.ocp
+ texmf-dist/omega/ocp/char2uni/incp1252.ocp
+ texmf-dist/omega/ocp/char2uni/incp1253.ocp
+ texmf-dist/omega/ocp/char2uni/incp1254.ocp
+ texmf-dist/omega/ocp/char2uni/incp1255.ocp
+ texmf-dist/omega/ocp/char2uni/incp1256.ocp
+ texmf-dist/omega/ocp/char2uni/incp1257.ocp
+ texmf-dist/omega/ocp/char2uni/incp1258.ocp
+ texmf-dist/omega/ocp/char2uni/incp866.ocp
+ texmf-dist/omega/ocp/char2uni/incp874.ocp
+ texmf-dist/omega/ocp/char2uni/inebcdic.ocp
+ texmf-dist/omega/ocp/char2uni/ingb.ocp
+ texmf-dist/omega/ocp/char2uni/inkoi8.ocp
+ texmf-dist/omega/ocp/char2uni/inmac.ocp
+ texmf-dist/omega/ocp/char2uni/inmsdos.ocp
+ texmf-dist/omega/ocp/char2uni/inmsdos2.ocp
+ texmf-dist/omega/ocp/char2uni/innext.ocp
+ texmf-dist/omega/ocp/char2uni/inov.ocp
+ texmf-dist/omega/ocp/char2uni/inps2.ocp
+ texmf-dist/omega/ocp/char2uni/insf1.ocp
+ texmf-dist/omega/ocp/char2uni/insf2.ocp
+ texmf-dist/omega/ocp/char2uni/intis620.ocp
+ texmf-dist/omega/ocp/char2uni/inucode.ocp
+ texmf-dist/omega/ocp/char2uni/inutf8.ocp
+ texmf-dist/omega/ocp/char2uni/inviet1.ocp
+ texmf-dist/omega/ocp/char2uni/inviet2.ocp
+ texmf-dist/omega/ocp/char2uni/inviscii.ocp
+ texmf-dist/omega/ocp/omega/7arb2uni.ocp
+ texmf-dist/omega/ocp/omega/7ber2uni.ocp
+ texmf-dist/omega/ocp/omega/7cyr2uni.ocp
+ texmf-dist/omega/ocp/omega/7hma2uni.ocp
+ texmf-dist/omega/ocp/omega/7in88593.ocp
+ texmf-dist/omega/ocp/omega/7lbe2uni.ocp
+ texmf-dist/omega/ocp/omega/7pap2uni.ocp
+ texmf-dist/omega/ocp/omega/7pas2uni.ocp
+ texmf-dist/omega/ocp/omega/7snd2uni.ocp
+ texmf-dist/omega/ocp/omega/7syr2uni.ocp
+ texmf-dist/omega/ocp/omega/7tbe2uni.ocp
+ texmf-dist/omega/ocp/omega/7urd2uni.ocp
+ texmf-dist/omega/ocp/omega/8mac-arb2uni.ocp
+ texmf-dist/omega/ocp/omega/8mac-cyr2uni.ocp
+ texmf-dist/omega/ocp/omega/apostr2psili.ocp
+ texmf-dist/omega/ocp/omega/cuni2acad.ocp
+ texmf-dist/omega/ocp/omega/cuni2amal.ocp
+ texmf-dist/omega/ocp/omega/cuni2arab.ex.ocp
+ texmf-dist/omega/ocp/omega/cuni2arab.ocp
+ texmf-dist/omega/ocp/omega/cuni2asv.ocp
+ texmf-dist/omega/ocp/omega/cuni2bout.ocp
+ texmf-dist/omega/ocp/omega/cuni2mona.ocp
+ texmf-dist/omega/ocp/omega/cuni2nar.ocp
+ texmf-dist/omega/ocp/omega/cuni2nva.ocp
+ texmf-dist/omega/ocp/omega/cuni2oar-novow.ocp
+ texmf-dist/omega/ocp/omega/cuni2oar.ocp
+ texmf-dist/omega/ocp/omega/cunioara.ocp
+ texmf-dist/omega/ocp/omega/dblquote-point.ocp
+ texmf-dist/omega/ocp/omega/destroy.ocp
+ texmf-dist/omega/ocp/omega/french2uni.ocp
+ texmf-dist/omega/ocp/omega/greek.ocp
+ texmf-dist/omega/ocp/omega/grpo2uni.ocp
+ texmf-dist/omega/ocp/omega/grpotilde2uni.ocp
+ texmf-dist/omega/ocp/omega/inverted-iota-upsilon.ocp
+ texmf-dist/omega/ocp/omega/isogr2uni-verbatim.ocp
+ texmf-dist/omega/ocp/omega/isogr2uni.ocp
+ texmf-dist/omega/ocp/omega/lat2uni.ocp
+ texmf-dist/omega/ocp/omega/lowercase.ocp
+ texmf-dist/omega/ocp/omega/lunatesigma.ocp
+ texmf-dist/omega/ocp/omega/macgr2uni.ocp
+ texmf-dist/omega/ocp/omega/medbeta.ocp
+ texmf-dist/omega/ocp/omega/mixedgreek2uni.ocp
+ texmf-dist/omega/ocp/omega/tarauni.ocp
+ texmf-dist/omega/ocp/omega/test1.ocp
+ texmf-dist/omega/ocp/omega/test3.ocp
+ texmf-dist/omega/ocp/omega/tiqwah.ocp
+ texmf-dist/omega/ocp/omega/tiqwah2.ocp
+ texmf-dist/omega/ocp/omega/tsinduni.ocp
+ texmf-dist/omega/ocp/omega/turduuni.ocp
+ texmf-dist/omega/ocp/omega/uni2cuni.ocp
+ texmf-dist/omega/ocp/omega/uni2greek-verbatim.ocp
+ texmf-dist/omega/ocp/omega/uni2greek.ocp
+ texmf-dist/omega/ocp/omega/uni2lat-noffi.ocp
+ texmf-dist/omega/ocp/omega/uni2lat.ocp
+ texmf-dist/omega/ocp/omega/unicuni.ocp
+ texmf-dist/omega/ocp/omega/uppercase-no-accents.ocp
+ texmf-dist/omega/ocp/omega/uppercase.ocp
+ texmf-dist/omega/ocp/uni2char/out88591.ocp
+ texmf-dist/omega/ocp/uni2char/oututf8.ocp
+ texmf-dist/omega/otp/char2uni/in646.otp
+ texmf-dist/omega/otp/char2uni/in88591.otp
+ texmf-dist/omega/otp/char2uni/in88592.otp
+ texmf-dist/omega/otp/char2uni/in88593.otp
+ texmf-dist/omega/otp/char2uni/in88594.otp
+ texmf-dist/omega/otp/char2uni/in88595.otp
+ texmf-dist/omega/otp/char2uni/in88596.otp
+ texmf-dist/omega/otp/char2uni/in88597.otp
+ texmf-dist/omega/otp/char2uni/in88598.otp
+ texmf-dist/omega/otp/char2uni/in88599.otp
+ texmf-dist/omega/otp/char2uni/in8859a.otp
+ texmf-dist/omega/otp/char2uni/in8859d.otp
+ texmf-dist/omega/otp/char2uni/in8859e.otp
+ texmf-dist/omega/otp/char2uni/in8859f.otp
+ texmf-dist/omega/otp/char2uni/in8859g.otp
+ texmf-dist/omega/otp/char2uni/inatari.otp
+ texmf-dist/omega/otp/char2uni/inav.otp
+ texmf-dist/omega/otp/char2uni/inbig5.otp
+ texmf-dist/omega/otp/char2uni/incp1250.otp
+ texmf-dist/omega/otp/char2uni/incp1251.otp
+ texmf-dist/omega/otp/char2uni/incp1252.otp
+ texmf-dist/omega/otp/char2uni/incp1253.otp
+ texmf-dist/omega/otp/char2uni/incp1254.otp
+ texmf-dist/omega/otp/char2uni/incp1255.otp
+ texmf-dist/omega/otp/char2uni/incp1256.otp
+ texmf-dist/omega/otp/char2uni/incp1257.otp
+ texmf-dist/omega/otp/char2uni/incp1258.otp
+ texmf-dist/omega/otp/char2uni/incp866.otp
+ texmf-dist/omega/otp/char2uni/incp874.otp
+ texmf-dist/omega/otp/char2uni/inebcdic.otp
+ texmf-dist/omega/otp/char2uni/ingb.otp
+ texmf-dist/omega/otp/char2uni/inkoi8.otp
+ texmf-dist/omega/otp/char2uni/inmac.otp
+ texmf-dist/omega/otp/char2uni/inmsdos.otp
+ texmf-dist/omega/otp/char2uni/inmsdos2.otp
+ texmf-dist/omega/otp/char2uni/innext.otp
+ texmf-dist/omega/otp/char2uni/inov.otp
+ texmf-dist/omega/otp/char2uni/inps2.otp
+ texmf-dist/omega/otp/char2uni/insf1.otp
+ texmf-dist/omega/otp/char2uni/insf2.otp
+ texmf-dist/omega/otp/char2uni/intis620.otp
+ texmf-dist/omega/otp/char2uni/inucode.otp
+ texmf-dist/omega/otp/char2uni/inutf8.otp
+ texmf-dist/omega/otp/char2uni/inviet1.otp
+ texmf-dist/omega/otp/char2uni/inviet2.otp
+ texmf-dist/omega/otp/char2uni/inviscii.otp
+ texmf-dist/omega/otp/omega/7arb2uni.otp
+ texmf-dist/omega/otp/omega/7ber2uni.otp
+ texmf-dist/omega/otp/omega/7cyr2uni.otp
+ texmf-dist/omega/otp/omega/7hma2uni.otp
+ texmf-dist/omega/otp/omega/7in88593.otp
+ texmf-dist/omega/otp/omega/7lbe2uni.otp
+ texmf-dist/omega/otp/omega/7pap2uni.otp
+ texmf-dist/omega/otp/omega/7pas2uni.otp
+ texmf-dist/omega/otp/omega/7snd2uni.otp
+ texmf-dist/omega/otp/omega/7syr2uni.otp
+ texmf-dist/omega/otp/omega/7tbe2uni.otp
+ texmf-dist/omega/otp/omega/7urd2uni.otp
+ texmf-dist/omega/otp/omega/8mac-arb2uni.otp
+ texmf-dist/omega/otp/omega/8mac-cyr2uni.otp
+ texmf-dist/omega/otp/omega/apostr2psili.otp
+ texmf-dist/omega/otp/omega/cuni2acad.otp
+ texmf-dist/omega/otp/omega/cuni2amal.otp
+ texmf-dist/omega/otp/omega/cuni2arab.ex.otp
+ texmf-dist/omega/otp/omega/cuni2asv.otp
+ texmf-dist/omega/otp/omega/cuni2bout.otp
+ texmf-dist/omega/otp/omega/cuni2mona.otp
+ texmf-dist/omega/otp/omega/cuni2nar.otp
+ texmf-dist/omega/otp/omega/cuni2nva.otp
+ texmf-dist/omega/otp/omega/cuni2oar-novow.otp
+ texmf-dist/omega/otp/omega/cuni2oar.otp
+ texmf-dist/omega/otp/omega/dblquote-point.otp
+ texmf-dist/omega/otp/omega/destroy.otp
+ texmf-dist/omega/otp/omega/french2uni.otp
+ texmf-dist/omega/otp/omega/grpo2uni.otp
+ texmf-dist/omega/otp/omega/grpotilde2uni.otp
+ texmf-dist/omega/otp/omega/inverted-iota-upsilon.otp
+ texmf-dist/omega/otp/omega/isogr2uni-verbatim.otp
+ texmf-dist/omega/otp/omega/isogr2uni.otp
+ texmf-dist/omega/otp/omega/lat2uni.otp
+ texmf-dist/omega/otp/omega/lowercase.otp
+ texmf-dist/omega/otp/omega/lunatesigma.otp
+ texmf-dist/omega/otp/omega/macgr2uni.otp
+ texmf-dist/omega/otp/omega/medbeta.otp
+ texmf-dist/omega/otp/omega/mixedgreek2uni.otp
+ texmf-dist/omega/otp/omega/uni2cuni.otp
+ texmf-dist/omega/otp/omega/uni2greek-verbatim.otp
+ texmf-dist/omega/otp/omega/uni2greek.otp
+ texmf-dist/omega/otp/omega/uni2lat-noffi.otp
+ texmf-dist/omega/otp/omega/uni2lat.otp
+ texmf-dist/omega/otp/omega/uppercase-no-accents.otp
+ texmf-dist/omega/otp/omega/uppercase.otp
+ texmf-dist/omega/otp/uni2char/out88591.otp
+ texmf-dist/omega/otp/uni2char/oututf8.otp
+ texmf-dist/tex/generic/encodings/cmbsy.onm
+ texmf-dist/tex/generic/encodings/cmbx.onm
+ texmf-dist/tex/generic/encodings/cmcsc.onm
+ texmf-dist/tex/generic/encodings/cmex.onm
+ texmf-dist/tex/generic/encodings/cmmi.onm
+ texmf-dist/tex/generic/encodings/cmmib.onm
+ texmf-dist/tex/generic/encodings/cmr.onm
+ texmf-dist/tex/generic/encodings/cmr1.onm
+ texmf-dist/tex/generic/encodings/cmsl.onm
+ texmf-dist/tex/generic/encodings/cmsy.onm
+ texmf-dist/tex/generic/encodings/cmti.onm
+ texmf-dist/tex/generic/encodings/cmtt.onm
+ texmf-dist/tex/generic/encodings/ecrm.onm
+ texmf-dist/tex/generic/encodings/euex.onm
+ texmf-dist/tex/generic/encodings/eufb.onm
+ texmf-dist/tex/generic/encodings/eufm.onm
+ texmf-dist/tex/generic/encodings/eurb.onm
+ texmf-dist/tex/generic/encodings/eurm.onm
+ texmf-dist/tex/generic/encodings/eusb.onm
+ texmf-dist/tex/generic/encodings/eusm.onm
+ texmf-dist/tex/generic/encodings/msam.onm
+ texmf-dist/tex/generic/encodings/msbm.onm
+ texmf-dist/tex/generic/omegahyph/bghyph.tex
+ texmf-dist/tex/generic/omegahyph/lthyph.tex
+ texmf-dist/tex/generic/omegahyph/srhyph.tex
+ texmf-dist/tex/plain/omega/grlccode.tex
+ texmf-dist/tex/plain/omega/omega.tex
+catalogue-version
+catalogue-date 2007-03-11 14:08:06 +0100
+catalogue-ctan /systems/omega
+catalogue-license gpl
+
+name omega-devanagari
+category Package
+revision 103
+docfiles size=582919
+ texmf-dist/doc/omega/omega-devanagari/india.ps.gz
+runfiles size=37516
+ texmf-dist/omega/otp/omega-devanagari/hindi-cuni2font.otp
+ texmf-dist/omega/otp/omega-devanagari/hindi-cuni2font2.otp
+ texmf-dist/omega/otp/omega-devanagari/hindi-cuni2font3.otp
+ texmf-dist/omega/otp/omega-devanagari/hindi-uni2cuni.otp
+ texmf-dist/omega/otp/omega-devanagari/hindi-uni2cuni2.otp
+ texmf-dist/omega/otp/omega-devanagari/sanskrit-cuni2font.otp
+ texmf-dist/omega/otp/omega-devanagari/sanskrit-uni2cuni.otp
+ texmf-dist/omega/otp/omega-devanagari/velthuis2unicode.otp
+
+name onlyamsmath
+category Package
+revision 3067
+shortdesc Inhibit use of non-amsmath mathematics markup when using amsmath.
+longdesc This package inhibits the usage of plain TeX and (on demand) of
+longdesc standard LaTeX mathematics environments. This is useful for
+longdesc class writers who want to encourage their users to use the
+longdesc environments provided by the amsmath package.
+docfiles size=87504
+ texmf-dist/doc/latex/onlyamsmath/README details="Readme"
+ texmf-dist/doc/latex/onlyamsmath/onlyamsmath.pdf details="Package documentation"
+ texmf-dist/doc/latex/onlyamsmath/onlyamsmath.xml
+ texmf-dist/doc/latex/onlyamsmath/onlyamsmathtest.tex
+srcfiles size=11091
+ texmf-dist/source/latex/onlyamsmath/Makefile
+ texmf-dist/source/latex/onlyamsmath/onlyamsmath.dtx
+ texmf-dist/source/latex/onlyamsmath/onlyamsmath.ins
+runfiles size=2179
+ texmf-dist/tex/latex/onlyamsmath/onlyamsmath.sty
+catalogue-version 0.04
+catalogue-date 2007-03-11 14:06:37 +0100
+catalogue-ctan /macros/latex/contrib/onlyamsmath
+catalogue-license lppl
+
+name opcit
+category Package
+revision 4449
+shortdesc Footnote-style bibliographical references.
+longdesc This package addresses the problem of expressing citations in a
+longdesc style that is natural for humanities studies, yet does not
+longdesc interfere with the flow of text (as author-year styles do). The
+longdesc package differs from footbib in that it uses real footnotes,
+longdesc potentially in the same series as any of the document’s other
+longdesc footnotes. Opcit also, as its name implies, avoids repetition
+longdesc of full citations, achieving this, to a large extent,
+longdesc automatically.
+docfiles size=304941
+ texmf-dist/doc/latex/opcit/README
+ texmf-dist/doc/latex/opcit/opcit.pdf details="Package documentation"
+srcfiles size=77812
+ texmf-dist/source/latex/opcit/opcit.dtx
+ texmf-dist/source/latex/opcit/opcit.ins
+runfiles size=29391
+ texmf-dist/bibtex/bst/opcit/opcit.bst
+ texmf-dist/tex/latex/opcit/opcit.sty
+catalogue-version 1.1
+catalogue-date 2006-09-21 21:56:41 +0200
+catalogue-ctan /macros/latex/contrib/opcit
+catalogue-license lppl
+
+name optima
+category Package
+revision 90
+runfiles size=170348
+ texmf-dist/fonts/tfm/cg/optima/copb.tfm
+ texmf-dist/fonts/tfm/cg/optima/copb8t.tfm
+ texmf-dist/fonts/tfm/cg/optima/copbi.tfm
+ texmf-dist/fonts/tfm/cg/optima/copbi8t.tfm
+ texmf-dist/fonts/tfm/cg/optima/copr.tfm
+ texmf-dist/fonts/tfm/cg/optima/copr8t.tfm
+ texmf-dist/fonts/tfm/cg/optima/copri.tfm
+ texmf-dist/fonts/tfm/cg/optima/copri8t.tfm
+ texmf-dist/fonts/tfm/cg/optima/omb10u.tfm
+ texmf-dist/fonts/tfm/cg/optima/omb6j.tfm
+ texmf-dist/fonts/tfm/cg/optima/omb7j.tfm
+ texmf-dist/fonts/tfm/cg/optima/omb8u.tfm
+ texmf-dist/fonts/tfm/cg/optima/omi10u.tfm
+ texmf-dist/fonts/tfm/cg/optima/omi6j.tfm
+ texmf-dist/fonts/tfm/cg/optima/omi7j.tfm
+ texmf-dist/fonts/tfm/cg/optima/omi8u.tfm
+ texmf-dist/fonts/tfm/cg/optima/omj10u.tfm
+ texmf-dist/fonts/tfm/cg/optima/omj6j.tfm
+ texmf-dist/fonts/tfm/cg/optima/omj7j.tfm
+ texmf-dist/fonts/tfm/cg/optima/omj8u.tfm
+ texmf-dist/fonts/tfm/cg/optima/omr10u.tfm
+ texmf-dist/fonts/tfm/cg/optima/omr6j.tfm
+ texmf-dist/fonts/tfm/cg/optima/omr7j.tfm
+ texmf-dist/fonts/tfm/cg/optima/omr8u.tfm
+ texmf-dist/fonts/vf/cg/optima/copb.vf
+ texmf-dist/fonts/vf/cg/optima/copb8t.vf
+ texmf-dist/fonts/vf/cg/optima/copbi.vf
+ texmf-dist/fonts/vf/cg/optima/copbi8t.vf
+ texmf-dist/fonts/vf/cg/optima/copr.vf
+ texmf-dist/fonts/vf/cg/optima/copr8t.vf
+ texmf-dist/fonts/vf/cg/optima/copri.vf
+ texmf-dist/fonts/vf/cg/optima/copri8t.vf
+
+name ordinalpt
+category Package
+revision 5097
+shortdesc Counters as ordinal numbers in Portuguese.
+longdesc The package provides a counter style (like \arabic, \alph and
+longdesc others) which produces as output strings like “primeiro”
+longdesc (“first” in Portuguese), “segundo” (second), and so on
+longdesc up to 1999th. Separate counter commands are provided for
+longdesc different letter case variants, and for masculine and feminine
+longdesc gender inflections.
+docfiles size=271196
+ texmf-dist/doc/latex/ordinalpt/README details="Readme"
+ texmf-dist/doc/latex/ordinalpt/ordinalpt.pdf details="Package documentation"
+srcfiles size=15343
+ texmf-dist/source/latex/ordinalpt/ordinalpt.dtx
+ texmf-dist/source/latex/ordinalpt/ordinalpt.ins
+runfiles size=4873
+ texmf-dist/tex/latex/ordinalpt/ordinalpt.sty
+catalogue-version 2.1
+catalogue-date 2007-02-25 09:43:45 +0100
+catalogue-ctan /macros/latex/contrib/ordinalpt
+catalogue-license lppl
+
+name osmanian
+category Package
+revision 101
+shortdesc Osmanian font for writing Somali.
+longdesc The font is provided as MetaFont source; it implements the
+longdesc alphabet for Somali invented by Osman Yusuf.
+runfiles size=4640
+ texmf-dist/fonts/source/public/osmanian/osmanian.mf
+catalogue-version
+catalogue-date 2007-01-12 15:52:44 +0100
+catalogue-ctan /fonts/osmanian/osmanian.mf
+catalogue-license unknown
+
+name ot2cyr
+category Package
+revision 1487
+shortdesc Macros, metrics, etc., to use the OT2 Cyrillic encoding.
+longdesc A collection of LaTeX NFSS files, together with fontinst
+longdesc control files and metrics for Monotype New Times and Lucida
+longdesc Cyrillic.
+execute addMap lscy.map
+execute addMap mntz.map
+docfiles size=23531
+ texmf-dist/doc/fonts/ot2cyr/OT2info.dvi
+ texmf-dist/doc/fonts/ot2cyr/OT2info.tex
+ texmf-dist/doc/fonts/ot2cyr/OT2mtest.tex
+ texmf-dist/doc/fonts/ot2cyr/OT2test.dvi
+ texmf-dist/doc/fonts/ot2cyr/OT2test.tex
+srcfiles size=134234
+ texmf-dist/source/fonts/ot2cyr/AFIIOT2.etx
+ texmf-dist/source/fonts/ot2cyr/AFIIcyr.mtx
+ texmf-dist/source/fonts/ot2cyr/README
+ texmf-dist/source/fonts/ot2cyr/go
+ texmf-dist/source/fonts/ot2cyr/lscy.map
+ texmf-dist/source/fonts/ot2cyr/lscyb.afm
+ texmf-dist/source/fonts/ot2cyr/lscyb.mtx
+ texmf-dist/source/fonts/ot2cyr/lscybo.afm
+ texmf-dist/source/fonts/ot2cyr/lscyo.afm
+ texmf-dist/source/fonts/ot2cyr/lscyr.afm
+ texmf-dist/source/fonts/ot2cyr/lstcyb.afm
+ texmf-dist/source/fonts/ot2cyr/lstcybo.afm
+ texmf-dist/source/fonts/ot2cyr/lstcyo.afm
+ texmf-dist/source/fonts/ot2cyr/lstcyr.afm
+ texmf-dist/source/fonts/ot2cyr/makecyr.tex
+ texmf-dist/source/fonts/ot2cyr/mntz.map
+ texmf-dist/source/fonts/ot2cyr/monoOT2.etx
+ texmf-dist/source/fonts/ot2cyr/monocyr.mtx
+ texmf-dist/source/fonts/ot2cyr/wncyrps.vec
+runfiles size=4616
+ texmf-dist/dvips/ot2cyr/wncyrps.vec
+ texmf-dist/fonts/map/dvips/ot2cyr/lscy.map
+ texmf-dist/fonts/map/dvips/ot2cyr/mntz.map
+ texmf-dist/tex/latex/ot2cyr/ot2hls.fd
+ texmf-dist/tex/latex/ot2cyr/ot2hlst.fd
+ texmf-dist/tex/latex/ot2cyr/ot2mnt.fd
+catalogue-version
+catalogue-date 2007-01-12 15:52:44 +0100
+catalogue-ctan /fonts/cyrillic/ot2cyr
+catalogue-license unknown
+
+name othello
+category Package
+revision 1487
+shortdesc Create othello boards in LaTeX.
+longdesc A package (based on Kolodziejska’s go), and fonts (as
+longdesc MetaFont source) are provided.
+docfiles size=94581
+ texmf-dist/doc/latex/othello/boards.tex
+ texmf-dist/doc/latex/othello/othello.dvi
+ texmf-dist/doc/latex/othello/othello.tex
+srcfiles size=680
+ texmf-dist/source/latex/othello/ot.bat
+ texmf-dist/source/latex/othello/ot1.bat
+runfiles size=76934
+ texmf-dist/fonts/source/public/othello/ot.mf
+ texmf-dist/fonts/source/public/othello/ot10.mf
+ texmf-dist/fonts/source/public/othello/ot15.mf
+ texmf-dist/fonts/source/public/othello/ot1bla10.mf
+ texmf-dist/fonts/source/public/othello/ot1bla15.mf
+ texmf-dist/fonts/source/public/othello/ot1bla20.mf
+ texmf-dist/fonts/source/public/othello/ot1black.mf
+ texmf-dist/fonts/source/public/othello/ot1neu.mf
+ texmf-dist/fonts/source/public/othello/ot1neu10.mf
+ texmf-dist/fonts/source/public/othello/ot1neu15.mf
+ texmf-dist/fonts/source/public/othello/ot1neu20.mf
+ texmf-dist/fonts/source/public/othello/ot1whi10.mf
+ texmf-dist/fonts/source/public/othello/ot1whi15.mf
+ texmf-dist/fonts/source/public/othello/ot1whi20.mf
+ texmf-dist/fonts/source/public/othello/ot1white.mf
+ texmf-dist/fonts/tfm/public/othello/ot10.tfm
+ texmf-dist/fonts/tfm/public/othello/ot15.tfm
+ texmf-dist/fonts/tfm/public/othello/ot1bla10.tfm
+ texmf-dist/fonts/tfm/public/othello/ot1bla15.tfm
+ texmf-dist/fonts/tfm/public/othello/ot1bla20.tfm
+ texmf-dist/fonts/tfm/public/othello/ot1neu10.tfm
+ texmf-dist/fonts/tfm/public/othello/ot1neu15.tfm
+ texmf-dist/fonts/tfm/public/othello/ot1neu20.tfm
+ texmf-dist/fonts/tfm/public/othello/ot1whi10.tfm
+ texmf-dist/fonts/tfm/public/othello/ot1whi15.tfm
+ texmf-dist/fonts/tfm/public/othello/ot1whi20.tfm
+ texmf-dist/tex/latex/othello/othello.sty
+catalogue-version
+catalogue-date 2007-01-12 15:52:44 +0100
+catalogue-ctan /macros/latex/contrib/othello
+catalogue-license gpl
+
+name otibet
+category Package
+revision 1487
+docfiles size=87282
+ texmf-dist/doc/latex/otibet/README
+ texmf-dist/doc/latex/otibet/allbasic-mule.tex
+ texmf-dist/doc/latex/otibet/allbasic.dvi
+ texmf-dist/doc/latex/otibet/allbasic.tex
+ texmf-dist/doc/latex/otibet/otibet-mule.tex
+ texmf-dist/doc/latex/otibet/otibet.tex
+ texmf-dist/doc/latex/otibet/testtib.tex
+ texmf-dist/doc/latex/otibet/tiblatex.dvi
+ texmf-dist/doc/latex/otibet/tiblatex.tex
+ texmf-dist/doc/latex/otibet/unidoc.dvi
+ texmf-dist/doc/latex/otibet/unidoc.tex
+ texmf-dist/doc/latex/otibet/yugpacan.dvi
+ texmf-dist/doc/latex/otibet/yugpacan.tex
+srcfiles size=97221
+ texmf-dist/source/latex/otibet/Makefile
+ texmf-dist/source/latex/otibet/allbasic.odvi
+ texmf-dist/source/latex/otibet/convnum.scm
+ texmf-dist/source/latex/otibet/generate-otp.el
+ texmf-dist/source/latex/otibet/oct2otp.c
+ texmf-dist/source/latex/otibet/pl2ovp.scm
+ texmf-dist/source/latex/otibet/tibetan.pl
+ texmf-dist/source/latex/otibet/tiblatex.odvi
+ texmf-dist/source/latex/otibet/tibovp.scm
+ texmf-dist/source/latex/otibet/unidoc.odvi
+ texmf-dist/source/latex/otibet/yugpacan.odvi
+runfiles size=654808
+ texmf-dist/fonts/ofm/public/otibet/otibetan.ofm
+ texmf-dist/fonts/ovf/public/otibet/otibetan.ovf
+ texmf-dist/fonts/ovp/public/otibet/otibetan.ovp
+ texmf-dist/fonts/source/public/otibet/bzrsetup.mf
+ texmf-dist/fonts/source/public/otibet/tibetan.mf
+ texmf-dist/fonts/tfm/public/otibet/tibetan.tfm
+ texmf-dist/omega/ocp/otibet/tibadjusttsheg.ocp
+ texmf-dist/omega/ocp/otibet/tibinunicode.ocp
+ texmf-dist/omega/ocp/otibet/tibinwylie.ocp
+ texmf-dist/omega/ocp/otibet/tibout.ocp
+ texmf-dist/omega/ocp/otibet/tibspecial.ocp
+ texmf-dist/omega/ocp/otibet/tibuniuni.ocp
+ texmf-dist/omega/ocp/otibet/tibvowel.ocp
+ texmf-dist/omega/otp/otibet/tibadjusttsheg.otp
+ texmf-dist/omega/otp/otibet/tibetan-mule2uni-old.otp
+ texmf-dist/omega/otp/otibet/tibetan-mule2uni.otp
+ texmf-dist/omega/otp/otibet/tibinunicode.otp
+ texmf-dist/omega/otp/otibet/tibinwylie.otp
+ texmf-dist/omega/otp/otibet/tibout.otp
+ texmf-dist/omega/otp/otibet/tibshow.otp
+ texmf-dist/omega/otp/otibet/tibspecial.otp
+ texmf-dist/omega/otp/otibet/tibuniuni.otp
+ texmf-dist/omega/otp/otibet/tibvowel.otp
+ texmf-dist/tex/latex/otibet/ot1tib.fd
+ texmf-dist/tex/latex/otibet/otibet.sty
+ texmf-dist/tex/latex/otibet/t1tib.fd
+
+name outline
+category Package
+revision 1487
+shortdesc List environment for making outlines.
+longdesc The package defines an outline environment, which provides
+longdesc facilities similar to enumerate, but up to 6 levels deep.
+docfiles size=6109
+ texmf-dist/doc/latex/outline/outline-sample.dvi
+ texmf-dist/doc/latex/outline/outline-sample.tex
+runfiles size=1855
+ texmf-dist/tex/latex/outline/outline.sty
+catalogue-version
+catalogue-date 2007-02-23 22:01:12 +0100
+catalogue-ctan /macros/latex/contrib/outline
+catalogue-license unknown
+
+name outliner
+category Package
+revision 1487
+shortdesc Change section levels easily.
+longdesc Allows you to write “\Level 2 {Some heading}” instead of
+longdesc the usual \section stuff; the definitions of the levels can
+longdesc then easily be changed. There is a mechanism for shifting all
+longdesc levels. This makes it easy to bundle existing articles into a
+longdesc compilation.
+docfiles size=3281
+ texmf-dist/doc/latex/outliner/outline_test.dvi
+ texmf-dist/doc/latex/outliner/outline_test.tex
+runfiles size=9040
+ texmf-dist/tex/latex/outliner/outliner.sty
+catalogue-version
+catalogue-date 2007-01-12 15:52:44 +0100
+catalogue-ctan /macros/latex/contrib/outliner
+catalogue-license gpl
+
+name overpic
+category Package
+revision 1487
+shortdesc Combine LaTeX commands over included graphics.
+longdesc The overpic environment is a cross between the LaTeX picture
+longdesc environment and the \includegraphics command of graphicx. The
+longdesc resulting picture environment has the same dimensions as the
+longdesc included eps graphic. LaTeX commands can be placed on the
+longdesc graphic at defined positions. A grid for orientation is
+longdesc available.
+docfiles size=23634
+ texmf-dist/doc/latex/overpic/README details="Readme (English)"
+ texmf-dist/doc/latex/overpic/README.de details="Readme (German)" language="de"
+ texmf-dist/doc/latex/overpic/golfer.ps.gz
+ texmf-dist/doc/latex/overpic/opic-abs.dvi
+ texmf-dist/doc/latex/overpic/opic-abs.tex
+ texmf-dist/doc/latex/overpic/opic-rel.dvi
+ texmf-dist/doc/latex/overpic/opic-rel.tex
+runfiles size=2775
+ texmf-dist/tex/latex/overpic/overpic.sty
+catalogue-version
+catalogue-date 2007-01-12 15:52:44 +0100
+catalogue-ctan /macros/latex/contrib/overpic
+catalogue-license lppl
+
+name oxford
+category Package
+revision 1163
+shortdesc A BibTeX style geared for use in the humanities.
+longdesc The stule implements the Oxford style interpreted through the
+longdesc eye of a Swede working in the field of the history of ideas. It
+longdesc is based on harvard and a heavily hacked bst-file generated
+longdesc with custom-bib. It currently only supports \cite[] and \cite
+longdesc and only in abbrevation mode.
+docfiles size=2851
+ texmf-dist/doc/latex/oxford/README
+srcfiles size=68046
+ texmf-dist/source/latex/oxford/lang/english.mbs
+ texmf-dist/source/latex/oxford/lang/esperant.mbs
+ texmf-dist/source/latex/oxford/lang/finnish.mbs
+ texmf-dist/source/latex/oxford/lang/french.mbs
+ texmf-dist/source/latex/oxford/lang/german.mbs
+ texmf-dist/source/latex/oxford/lang/italian.mbs
+ texmf-dist/source/latex/oxford/lang/norsk.mbs
+ texmf-dist/source/latex/oxford/lang/spanish.mbs
+ texmf-dist/source/latex/oxford/lang/svenska.mbs
+runfiles size=122701
+ texmf-dist/bibtex/bst/oxford/oxford_en.bst
+ texmf-dist/bibtex/bst/oxford/oxford_in.bst
+ texmf-dist/bibtex/bst/oxford/oxford_se.bst
+ texmf-dist/tex/latex/oxford/oxford.sty
+catalogue-version
+catalogue-date 2007-01-12 15:52:44 +0100
+catalogue-ctan /biblio/bibtex/contrib/oxford
+catalogue-license nosell
+
+name pacioli
+category Package
+revision 1164
+shortdesc Fonts designed by Fra Luca de Pacioli in 1497.
+longdesc Pacioli was a c.15 mathematician, and his font was designed
+longdesc according to ‘the divine proportion’. The font is uppercase
+longdesc letters together with punctuation and some analphabetics; no
+longdesc lowercase or digits. The MetaFont source is distributed in a
+longdesc .dtx file, together with LaTeX support.
+docfiles size=2617
+ texmf-dist/doc/fonts/pacioli/README
+ texmf-dist/doc/fonts/pacioli/tryfont.tex
+srcfiles size=89646
+ texmf-dist/source/latex/pacioli/pacioli.dtx
+ texmf-dist/source/latex/pacioli/pacioli.ins
+runfiles size=70986
+ texmf-dist/fonts/source/public/pacioli/cpclig.mf
+ texmf-dist/fonts/source/public/pacioli/cpcpunct.mf
+ texmf-dist/fonts/source/public/pacioli/cpcr10.mf
+ texmf-dist/fonts/source/public/pacioli/cpcromanp.mf
+ texmf-dist/fonts/source/public/pacioli/cpcromanu.mf
+ texmf-dist/fonts/source/public/pacioli/cpcsl10.mf
+ texmf-dist/fonts/source/public/pacioli/cpctitle.mf
+ texmf-dist/fonts/tfm/public/pacioli/cpcr10.tfm
+ texmf-dist/fonts/tfm/public/pacioli/cpcsl10.tfm
+ texmf-dist/tex/latex/pacioli/ot1cpc.fd
+ texmf-dist/tex/latex/pacioli/pacioli.sty
+ texmf-dist/tex/latex/pacioli/t1cpc.fd
+catalogue-version
+catalogue-date 2007-10-10 11:06:37 +0200
+catalogue-ctan /fonts/pacioli
+catalogue-license lppl
+
+name pageno
+category Package
+revision 1165
+shortdesc Page number-only page styles.
+longdesc A LaTeX package that can re-define the plain page style under
+longdesc the control of options, so you can have page numbers: at the
+longdesc top or bottom of the page; in the inside corner, outside
+longdesc corner, or in the middle. It was inspired by Axel Sommerfeldt's
+longdesc rplain package. The same results may be achieved by using
+longdesc fancyhdr, as well as many other convenient running head/foot
+longdesc effects.
+srcfiles size=11646
+ texmf-dist/source/latex/pageno/pageno.dtx
+ texmf-dist/source/latex/pageno/pageno.ins
+runfiles size=4145
+ texmf-dist/tex/latex/pageno/pageno.sty
+catalogue-version
+catalogue-date 2007-01-12 20:52:49 +0100
+catalogue-ctan /macros/latex/contrib/pageno
+catalogue-license other
+
+name pagenote
+category Package
+revision 1166
+shortdesc Notes at end of document.
+longdesc The pagenote package provides tagged notes on a separate page
+longdesc (also known as ‘end notes’). Unless the memoir class is
+longdesc used, the package requires the ifmtarg package.
+docfiles size=163745
+ texmf-dist/doc/latex/pagenote/README
+ texmf-dist/doc/latex/pagenote/pagenote.pdf
+srcfiles size=26721
+ texmf-dist/source/latex/pagenote/pagenote.dtx
+ texmf-dist/source/latex/pagenote/pagenote.ins
+runfiles size=4714
+ texmf-dist/tex/latex/pagenote/pagenote.sty
+catalogue-version 1.1
+catalogue-date 2007-02-24 15:09:57 +0100
+catalogue-ctan /macros/latex/contrib/memoir
+catalogue-license lppl
+
+name palatino
+category Package
+revision 2488
+runfiles size=1175465
+ texmf-dist/dvips/palatino/config.upl
+ texmf-dist/fonts/afm/adobe/palatino/pplb8a.afm
+ texmf-dist/fonts/afm/adobe/palatino/pplbi8a.afm
+ texmf-dist/fonts/afm/adobe/palatino/pplr8a.afm
+ texmf-dist/fonts/afm/adobe/palatino/pplri8a.afm
+ texmf-dist/fonts/afm/urw/palatino/uplb8a.afm
+ texmf-dist/fonts/afm/urw/palatino/uplbi8a.afm
+ texmf-dist/fonts/afm/urw/palatino/uplr8a.afm
+ texmf-dist/fonts/afm/urw/palatino/uplri8a.afm
+ texmf-dist/fonts/map/dvips/palatino/upl.map
+ texmf-dist/fonts/tfm/adobe/palatino/eurbo10.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/eurmo10.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb8a.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb8c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb8t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb9c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb9d.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb9e.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb9o.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplb9t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbc.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbc7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbc8t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi8a.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi8c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi8t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi9c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi9d.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi9e.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi9o.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbi9t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbij8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbj8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbo.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbo7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbo8c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbo8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbo8t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbu.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplbu8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr8a.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr8c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr8rn.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr8t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr9c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr9d.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr9e.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr9o.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplr9t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrc.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrc7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrc8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrc8t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrc9d.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrc9e.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrc9o.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrc9t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri8a.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri8c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri8t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri9c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri9d.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri9e.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri9o.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplri9t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrij8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplro.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplro7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplro8c.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplro8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplro8t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrr8re.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrre.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplrrn.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplru.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/pplru8r.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/zppleb7m.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/zppleb7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/zppleb7y.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/zppler7m.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/zppler7t.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/zppler7v.tfm
+ texmf-dist/fonts/tfm/adobe/palatino/zppler7y.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/pplb8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/pplbc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/pplbi8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/pplr8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/pplrc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/pplri8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/rpplb.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/rpplbi.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/rpplbu.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/rpplr.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/rpplri.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/rpplro.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/rpplrre.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/rpplrrn.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/palatino/rpplru.tfm
+ texmf-dist/fonts/tfm/groff/palatino/pplb8g.tfm
+ texmf-dist/fonts/tfm/groff/palatino/pplbi8g.tfm
+ texmf-dist/fonts/tfm/groff/palatino/pplr8g.tfm
+ texmf-dist/fonts/tfm/groff/palatino/pplri8g.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplb7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplb8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplb8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplb8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbi7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbi8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbi8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbi8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplbo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplr7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplr8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplr8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplr8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplrc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplrc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplri7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplri8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplri8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplri8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplro7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplro8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplro8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/palatino/uplro8t.tfm
+ texmf-dist/fonts/type1/urw/palatino/uplb8a.pfb
+ texmf-dist/fonts/type1/urw/palatino/uplb8a.pfm
+ texmf-dist/fonts/type1/urw/palatino/uplbi8a.pfb
+ texmf-dist/fonts/type1/urw/palatino/uplbi8a.pfm
+ texmf-dist/fonts/type1/urw/palatino/uplr8a.pfb
+ texmf-dist/fonts/type1/urw/palatino/uplr8a.pfm
+ texmf-dist/fonts/type1/urw/palatino/uplri8a.pfb
+ texmf-dist/fonts/type1/urw/palatino/uplri8a.pfm
+ texmf-dist/fonts/vf/adobe/palatino/pplb.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplb7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplb8c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplb8t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplb9c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplb9d.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplb9e.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplb9o.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplb9t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbc.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbc7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbc8t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbi.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbi7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbi8c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbi8t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbi9c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbi9d.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbi9e.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbi9o.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbi9t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbo.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbo7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbo8c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbo8t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplbu.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplr.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplr7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplr8c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplr8t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplr9c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplr9d.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplr9e.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplr9o.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplr9t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplrc.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplrc7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplrc8t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplrc9d.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplrc9e.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplrc9o.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplrc9t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplri.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplri7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplri8c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplri8t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplri9c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplri9d.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplri9e.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplri9o.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplri9t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplro.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplro7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplro8c.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplro8t.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplrre.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplrrn.vf
+ texmf-dist/fonts/vf/adobe/palatino/pplru.vf
+ texmf-dist/fonts/vf/adobe/palatino/zppleb7m.vf
+ texmf-dist/fonts/vf/adobe/palatino/zppleb7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/zppleb7y.vf
+ texmf-dist/fonts/vf/adobe/palatino/zppler7m.vf
+ texmf-dist/fonts/vf/adobe/palatino/zppler7t.vf
+ texmf-dist/fonts/vf/adobe/palatino/zppler7v.vf
+ texmf-dist/fonts/vf/adobe/palatino/zppler7y.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/palatino/pplb8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/palatino/pplbc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/palatino/pplbi8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/palatino/pplr8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/palatino/pplrc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/palatino/pplri8z.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplb7t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplb8c.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplb8t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplbc7t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplbc8t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplbi7t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplbi8c.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplbi8t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplbo7t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplbo8c.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplbo8t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplr7t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplr8c.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplr8t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplrc7t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplrc8t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplri7t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplri8c.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplri8t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplro7t.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplro8c.vf
+ texmf-dist/fonts/vf/urw35vf/palatino/uplro8t.vf
+ texmf-dist/tex/latex/palatino/8rupl.fd
+ texmf-dist/tex/latex/palatino/omlupl.fd
+ texmf-dist/tex/latex/palatino/omsupl.fd
+ texmf-dist/tex/latex/palatino/ot1upl.fd
+ texmf-dist/tex/latex/palatino/t1upl.fd
+ texmf-dist/tex/latex/palatino/ts1upl.fd
+
+name paper
+category Package
+revision 1487
+shortdesc Versions of article class, tuned for scholarly publications.
+longdesc A pair of classes derived from article, tuned for producing
+longdesc papers for journals. The classes introduce new layout options
+longdesc and font commands for sections/parts, and define a new keywords
+longdesc environment, subtitle and institution commands for the title
+longdesc section and new commands for revisions.
+docfiles size=87060
+ texmf-dist/doc/latex/paper/journal1.tex
+ texmf-dist/doc/latex/paper/journal2.tex
+ texmf-dist/doc/latex/paper/local02.tex
+ texmf-dist/doc/latex/paper/paper.dvi
+ texmf-dist/doc/latex/paper/test02j.tex
+ texmf-dist/doc/latex/paper/test02p.tex
+srcfiles size=71526
+ texmf-dist/source/latex/paper/install.02
+ texmf-dist/source/latex/paper/paper.drv
+ texmf-dist/source/latex/paper/paper.dtx
+ texmf-dist/source/latex/paper/readme.02
+runfiles size=37313
+ texmf-dist/tex/latex/paper/journal.cls
+ texmf-dist/tex/latex/paper/journal.sty
+ texmf-dist/tex/latex/paper/paper.cls
+ texmf-dist/tex/latex/paper/paper.sty
+catalogue-version 1g
+catalogue-date 2007-01-12 20:52:49 +0100
+catalogue-ctan /macros/latex/contrib/paper
+catalogue-license unknown
+
+name papercdcase
+category Package
+revision 1937
+shortdesc Origami-style folding paper CD case.
+longdesc This package implements a LaTeX style file to produce origami-
+longdesc style folding paper CD cases.
+docfiles size=153897
+ texmf-dist/doc/latex/papercdcase/example.tex
+ texmf-dist/doc/latex/papercdcase/interactive.tex
+ texmf-dist/doc/latex/papercdcase/papercdcase.pdf details="Package documentation"
+srcfiles size=44850
+ texmf-dist/source/latex/papercdcase/papercdcase.dtx
+ texmf-dist/source/latex/papercdcase/papercdcase.ins
+runfiles size=21760
+ texmf-dist/tex/latex/papercdcase/papercdcase.sty
+catalogue-version
+catalogue-date 2007-03-11 14:35:09 +0100
+catalogue-ctan /macros/latex/contrib/papercdcase
+catalogue-license lppl
+
+name papertex
+category Package
+revision 4810
+shortdesc Class for newspapers, etc.
+longdesc This class allows LaTeX users to create a paperTeX newspaper.
+longdesc The final document has a front page and as many inner pages as
+longdesc desired. News items appear one after another and the user can
+longdesc choose the number of columns, style and so on. The class allows
+longdesc users to create newsletters too.
+docfiles size=479693
+ texmf-dist/doc/latex/papertex/CHANGES
+ texmf-dist/doc/latex/papertex/README details="Readme"
+ texmf-dist/doc/latex/papertex/example/example.pdf details="Example newspaper page"
+ texmf-dist/doc/latex/papertex/example/example.tex
+ texmf-dist/doc/latex/papertex/example/img/ireland.jpg
+ texmf-dist/doc/latex/papertex/example/img/weather/clouds.jpg
+ texmf-dist/doc/latex/papertex/example/img/weather/rain.jpg
+ texmf-dist/doc/latex/papertex/example/img/weather/sun.jpg
+ texmf-dist/doc/latex/papertex/papertex.pdf details="Package documentation"
+srcfiles size=59246
+ texmf-dist/source/latex/papertex/papertex.dtx
+ texmf-dist/source/latex/papertex/papertex.ins
+runfiles size=24212
+ texmf-dist/tex/latex/papertex/papertex.cls
+catalogue-version 1.2a
+catalogue-date 2007-02-27 22:02:33 +0100
+catalogue-ctan /macros/latex/contrib/papertex
+catalogue-license lppl
+
+name paralist
+category Package
+revision 5135
+shortdesc Enumerate and itemize within paragraphs.
+longdesc Provides enumerate and itemize environments that can be used
+longdesc within paragraphs to format the items either as running text or
+longdesc as separate paragraphs with a preceding number or symbol. Also
+longdesc provides compacted versions of enumerate and itemize.
+docfiles size=244931
+ texmf-dist/doc/latex/paralist/README details="Readme"
+ texmf-dist/doc/latex/paralist/paralist.pdf details="Package documentation"
+srcfiles size=61616
+ texmf-dist/source/latex/paralist/paralist.drv
+ texmf-dist/source/latex/paralist/paralist.dtx
+ texmf-dist/source/latex/paralist/paralist.ins
+runfiles size=14612
+ texmf-dist/tex/latex/paralist/paralist.sty
+catalogue-version 2.3b
+catalogue-date 2007-01-12 20:52:49 +0100
+catalogue-ctan /macros/latex/contrib/paralist
+catalogue-license lppl
+
+name parallel
+category Package
+revision 3461
+shortdesc Typeset parallel texts.
+longdesc Provides a parallel environment which allows two potentially
+longdesc different texts to be typeset in two columns, while maintaining
+longdesc alignment. The two columns may be on the same page, or on
+longdesc facing pages. This arrangement of text is commonly used when
+longdesc typesetting translations, but it can have value when comparing
+longdesc any two texts.
+docfiles size=148266
+ texmf-dist/doc/latex/parallel/example1.tex
+ texmf-dist/doc/latex/parallel/example2.tex
+ texmf-dist/doc/latex/parallel/parallel.pdf details="Package documentation"
+ texmf-dist/doc/latex/parallel/readme
+srcfiles size=43569
+ texmf-dist/source/latex/parallel/parallel.drv
+ texmf-dist/source/latex/parallel/parallel.dtx
+ texmf-dist/source/latex/parallel/parallel.ins
+runfiles size=14006
+ texmf-dist/tex/latex/parallel/parallel.sty
+catalogue-version
+catalogue-date 2007-01-12 20:52:49 +0100
+catalogue-ctan /macros/latex/contrib/parallel
+catalogue-license lppl
+
+name paresse
+category Package
+revision 1171
+shortdesc Defines macros for greek letters
+longdesc Defines macros using ? to type greek letters so that the user
+longdesc may type ?a to get the effect of $\alpha$.
+docfiles size=708627
+ texmf-dist/doc/latex/paresse/README details="Readme"
+ texmf-dist/doc/latex/paresse/english-paresse.pdf
+ texmf-dist/doc/latex/paresse/example-fourier.pdf
+ texmf-dist/doc/latex/paresse/example.pdf
+ texmf-dist/doc/latex/paresse/example.tex
+ texmf-dist/doc/latex/paresse/exemple.pdf
+ texmf-dist/doc/latex/paresse/exemple.tex
+ texmf-dist/doc/latex/paresse/paresse.pdf details="Package documentation"
+srcfiles size=41650
+ texmf-dist/source/latex/paresse/Makefile
+ texmf-dist/source/latex/paresse/english-paresse.dtx
+ texmf-dist/source/latex/paresse/paresse.dtx
+ texmf-dist/source/latex/paresse/paresse.ins
+runfiles size=4852
+ texmf-dist/tex/latex/paresse/paresse.sty
+catalogue-version
+catalogue-date 2007-02-24 15:09:57 +0100
+catalogue-ctan /macros/latex/contrib/paresse
+catalogue-license lppl
+
+name parrun
+category Package
+revision 1172
+shortdesc Typesets (two) streams of text running parallel.
+longdesc For typesetting translated text and the original source,
+longdesc parallel on the same page, one above the other.
+docfiles size=153999
+ texmf-dist/doc/latex/parrun/parrun.pdf details="Package documentation"
+ texmf-dist/doc/latex/parrun/readme details="Readme"
+srcfiles size=20516
+ texmf-dist/source/latex/parrun/parrun.dtx
+ texmf-dist/source/latex/parrun/parrun.ins
+runfiles size=8437
+ texmf-dist/tex/latex/parrun/parrun.sty
+catalogue-version
+catalogue-date 2007-02-24 15:09:57 +0100 (Sat, 24 Feb 2007) $
+catalogue-ctan /macros/latex/contrib/parrun
+catalogue-license lppl
+
+name passivetex
+category Package
+revision 627
+shortdesc Support package for XML/SGML typesetting
+longdesc Packages providing XML parsing, UTF-8 parsing, Unicode
+longdesc entities, and common formatting object definitions for jadetex.
+docfiles size=359687
+ texmf-dist/doc/xmltex/passivetex/ChangeLog
+ texmf-dist/doc/xmltex/passivetex/Changes-2003-01
+ texmf-dist/doc/xmltex/passivetex/README.passivetex
+ texmf-dist/doc/xmltex/passivetex/index.html
+ texmf-dist/doc/xmltex/passivetex/latextei-fo.xml
+ texmf-dist/doc/xmltex/passivetex/latextei.tex
+ texmf-dist/doc/xmltex/passivetex/latextei.xml
+ texmf-dist/doc/xmltex/passivetex/passivetex.xml
+ texmf-dist/doc/xmltex/passivetex/properties.xml
+ texmf-dist/doc/xmltex/passivetex/test.xml
+ texmf-dist/doc/xmltex/passivetex/xsa.xml
+runfiles size=358126
+ texmf-dist/tex/xmltex/passivetex/dummyels.sty
+ texmf-dist/tex/xmltex/passivetex/fotex.sty
+ texmf-dist/tex/xmltex/passivetex/fotex.xmt
+ texmf-dist/tex/xmltex/passivetex/mlnames.sty
+ texmf-dist/tex/xmltex/passivetex/nomulticol.sty
+ texmf-dist/tex/xmltex/passivetex/tei.xmt
+ texmf-dist/tex/xmltex/passivetex/teiprintslides.xmt
+ texmf-dist/tex/xmltex/passivetex/teislides.xmt
+ texmf-dist/tex/xmltex/passivetex/teixml.sty
+ texmf-dist/tex/xmltex/passivetex/teixmlslides.sty
+ texmf-dist/tex/xmltex/passivetex/ucharacters.sty
+ texmf-dist/tex/xmltex/passivetex/unicode.sty
+catalogue-version
+catalogue-date 2006-12-18 23:50:36 +0100
+catalogue-ctan /macros/xmltex/contrib/passivetex
+catalogue-license dfsg
+
+name patch
+category Package
+revision 1173
+shortdesc Patch loaded packages, etc..
+longdesc The package defines macros that allow patching of existing
+longdesc commands, specifying those parts of the existing macro to be
+longdesc replaced, along with the replacements. Thus it provides more
+longdesc sophisticated manipulation than a package like patchcmd, which
+longdesc only permits modification by adding commands at the beginning
+longdesc or end of an existing definition. The package is distributed in
+longdesc a relative of LaTeX doc format: it will run unmodified, though
+longdesc it benefits from docstrip treatmend.
+docfiles size=24460
+ texmf-dist/doc/plain/patch/patch.doc
+runfiles size=28875
+ texmf-dist/tex/latex/patch/patch.tex
+ texmf-dist/tex/plain/patch/patch.tex
+catalogue-version
+catalogue-date 2007-01-21 14:55:39 +0100
+catalogue-ctan /macros/generic/misc/patch.doc
+catalogue-license lppl
+
+name patchcmd
+category Package
+revision 1174
+shortdesc Change the definition of an existing command.
+longdesc The patchcmd package provides a command \patchcommand that can
+longdesc be used to add material at the beginning and/or the end of the
+longdesc replacement text of an existing macro. It works for macros with
+longdesc any number of normal arguments, including those that were
+longdesc defined with \DeclareRobustCommand.
+srcfiles size=7559
+ texmf-dist/source/latex/patchcmd/patchcmd.dtx
+ texmf-dist/source/latex/patchcmd/patchcmd.ins
+runfiles size=3536
+ texmf-dist/tex/latex/patchcmd/patchcmd.sty
+catalogue-version 1.03
+catalogue-date 2007-01-12 20:52:49 +0100
+catalogue-ctan /macros/latex/contrib/patchcmd
+catalogue-license pd
+
+name pauldoc
+category Package
+revision 1803
+shortdesc German LaTeX package documentation.
+longdesc The pauldoc package provides helpers for German language
+longdesc package documentation.
+docfiles size=158694
+ texmf-dist/doc/latex/pauldoc/README details="Readme"
+ texmf-dist/doc/latex/pauldoc/pauldoc.pdf details="Benutzerdoku:" language="de"
+srcfiles size=20222
+ texmf-dist/source/latex/pauldoc/pauldoc.dtx
+ texmf-dist/source/latex/pauldoc/pauldoc.ins
+runfiles size=3622
+ texmf-dist/tex/latex/pauldoc/pauldoc.sty
+catalogue-version 0.2a
+catalogue-date 2007-03-11 14:35:09 +0100
+catalogue-ctan /macros/latex/contrib/pauldoc
+catalogue-license lppl
+
+name pawpict
+category Package
+revision 1175
+shortdesc Using graphics from PAW.
+longdesc Support for the easy inclusion of graphics made by PAW (Physics
+longdesc Analysis Workstation). You need to have PAW installed on your
+longdesc system to benefit from this package.
+srcfiles size=38626
+ texmf-dist/source/latex/pawpict/README
+ texmf-dist/source/latex/pawpict/pawpict.dtx
+ texmf-dist/source/latex/pawpict/pawpict.ins
+runfiles size=1212
+ texmf-dist/tex/latex/pawpict/pawpict.sty
+catalogue-version 1.0
+catalogue-date 2007-01-12 20:52:49 +0100
+catalogue-ctan /macros/latex/contrib/pawpict
+catalogue-license gpl
+
+name pb-diagram
+category Package
+revision 1487
+shortdesc A commutative diagram package using LAMSTeX or Xy-pic fonts.
+docfiles size=93491
+ texmf-dist/doc/latex/pb-diagram/COPYING
+ texmf-dist/doc/latex/pb-diagram/README details="Readme"
+ texmf-dist/doc/latex/pb-diagram/pb-examples.dvi
+ texmf-dist/doc/latex/pb-diagram/pb-examples.tex
+ texmf-dist/doc/latex/pb-diagram/pb-manual.dvi
+ texmf-dist/doc/latex/pb-diagram/pb-manual.tex
+runfiles size=69690
+ texmf-dist/tex/latex/pb-diagram/lamsarrow.sty
+ texmf-dist/tex/latex/pb-diagram/pb-diagram.sty
+ texmf-dist/tex/latex/pb-diagram/pb-lams.sty
+ texmf-dist/tex/latex/pb-diagram/pb-xy.sty
+catalogue-version 5.0
+catalogue-date 2007-01-12 20:52:49 +0100
+catalogue-ctan /macros/latex/contrib/pb-diagram
+catalogue-license dfsg
+
+name pbox
+category Package
+revision 1177
+shortdesc A variable-width \parbox command.
+longdesc Defines a command \pbox{<max width>}{<text>} which adjusts its
+longdesc width to that of the enclosed text, up to the maximum width
+longdesc given. The package also defines some associated length
+longdesc commands.
+docfiles size=562
+ texmf-dist/doc/latex/pbox/README details="Readme"
+srcfiles size=38687
+ texmf-dist/source/latex/pbox/AUTHORS
+ texmf-dist/source/latex/pbox/COPYING
+ texmf-dist/source/latex/pbox/ChangeLog
+ texmf-dist/source/latex/pbox/INSTALL
+ texmf-dist/source/latex/pbox/Makefile
+ texmf-dist/source/latex/pbox/pbox.drv
+ texmf-dist/source/latex/pbox/pbox.dtx
+ texmf-dist/source/latex/pbox/pbox.ins
+runfiles size=2154
+ texmf-dist/tex/latex/pbox/pbox.sty
+catalogue-version 1.0
+catalogue-date 2007-01-12 23:55:10 +0100
+catalogue-ctan /macros/latex/contrib/pbox
+catalogue-license gpl
+
+name pbsheet
+category Package
+revision 1178
+shortdesc Problem sheet class.
+longdesc This class is designed to simplify the typesetting of problem
+longdesc sheets with Mathematics and Computer Science content. It is
+longdesc currently customised towards teaching in French (and the
+longdesc examples are in French).
+docfiles size=655369
+ texmf-dist/doc/latex/pbsheet/LPPL
+ texmf-dist/doc/latex/pbsheet/README details="Readme"
+ texmf-dist/doc/latex/pbsheet/pbsheet.pdf details="Package documentation"
+ texmf-dist/doc/latex/pbsheet/pbsheet.ps
+ texmf-dist/doc/latex/pbsheet/xpl/GNUmakefile
+ texmf-dist/doc/latex/pbsheet/xpl/img/simbin.eps
+ texmf-dist/doc/latex/pbsheet/xpl/img/simbin.pdf
+ texmf-dist/doc/latex/pbsheet/xpl/pbsheet.cls
+ texmf-dist/doc/latex/pbsheet/xpl/pgm/probadis.m
+ texmf-dist/doc/latex/pbsheet/xpl/pgm/rdiscr.m
+ texmf-dist/doc/latex/pbsheet/xpl/pgm/rint.m
+ texmf-dist/doc/latex/pbsheet/xpl/pgm/simbin.m
+ texmf-dist/doc/latex/pbsheet/xpl/xpl-fr.bib
+ texmf-dist/doc/latex/pbsheet/xpl/xpl-fr.pdf details="Example of use" language="fr"
+ texmf-dist/doc/latex/pbsheet/xpl/xpl-fr.tex
+srcfiles size=25225
+ texmf-dist/source/latex/pbsheet/pbsheet.dtx
+ texmf-dist/source/latex/pbsheet/pbsheet.ins
+runfiles size=18484
+ texmf-dist/tex/latex/pbsheet/pbsheet.cls
+catalogue-version 0.1
+catalogue-date 2007-01-12 23:55:10 +0100
+catalogue-ctan /macros/latex/contrib/pbsheet
+catalogue-license lppl
+
+name pclnfss
+category Package
+revision 1179
+shortdesc Font support for current PCL printers.
+longdesc Pclnfss provides package and fd files for selecting and using
+longdesc the standard 45 scalable fonts built into most PCL laser
+longdesc printers, together with metrics and virtual font files.
+docfiles size=21286
+ texmf-dist/doc/fonts/pclnfss/COPYING
+ texmf-dist/doc/fonts/pclnfss/README
+srcfiles size=70822
+ texmf-dist/source/fonts/pclnfss/0n.etx
+ texmf-dist/source/fonts/pclnfss/10u.etx
+ texmf-dist/source/fonts/pclnfss/2n.etx
+ texmf-dist/source/fonts/pclnfss/6j.etx
+ texmf-dist/source/fonts/pclnfss/7j.etx
+ texmf-dist/source/fonts/pclnfss/8u.etx
+ texmf-dist/source/fonts/pclnfss/9t.etx
+ texmf-dist/source/fonts/pclnfss/GNUmakefile
+ texmf-dist/source/fonts/pclnfss/README
+ texmf-dist/source/fonts/pclnfss/ascii.etw
+ texmf-dist/source/fonts/pclnfss/cork.map
+ texmf-dist/source/fonts/pclnfss/etxmac.tex
+ texmf-dist/source/fonts/pclnfss/fontdim.tex
+ texmf-dist/source/fonts/pclnfss/fonthp.tex
+ texmf-dist/source/fonts/pclnfss/fontinst.rc
+ texmf-dist/source/fonts/pclnfss/hpfontshow.tex
+ texmf-dist/source/fonts/pclnfss/hpsymhi.etw
+ texmf-dist/source/fonts/pclnfss/hpsymlo.etw
+ texmf-dist/source/fonts/pclnfss/hptex.etx
+ texmf-dist/source/fonts/pclnfss/hptex.tex
+ texmf-dist/source/fonts/pclnfss/k2n.awk
+ texmf-dist/source/fonts/pclnfss/latin.mtx
+ texmf-dist/source/fonts/pclnfss/plain.map
+ texmf-dist/source/fonts/pclnfss/rmligdups.awk
+ texmf-dist/source/fonts/pclnfss/test.map
+ texmf-dist/source/fonts/pclnfss/test.tex
+ texmf-dist/source/fonts/pclnfss/tests/typelist.tex
+ texmf-dist/source/fonts/pclnfss/uclc.tex
+runfiles size=4192
+ texmf-dist/tex/latex/pclnfss/albertus.sty
+ texmf-dist/tex/latex/pclnfss/antolive.sty
+ texmf-dist/tex/latex/pclnfss/arial.sty
+ texmf-dist/tex/latex/pclnfss/cgomega.sty
+ texmf-dist/tex/latex/pclnfss/cgtimes.sty
+ texmf-dist/tex/latex/pclnfss/clarend.sty
+ texmf-dist/tex/latex/pclnfss/coronet.sty
+ texmf-dist/tex/latex/pclnfss/ltgothic.sty
+ texmf-dist/tex/latex/pclnfss/marigold.sty
+ texmf-dist/tex/latex/pclnfss/ot1cal.fd
+ texmf-dist/tex/latex/pclnfss/ot1cao.fd
+ texmf-dist/tex/latex/pclnfss/ot1ccd.fd
+ texmf-dist/tex/latex/pclnfss/ot1cgm.fd
+ texmf-dist/tex/latex/pclnfss/ot1clg.fd
+ texmf-dist/tex/latex/pclnfss/ot1cmg.fd
+ texmf-dist/tex/latex/pclnfss/ot1cop.fd
+ texmf-dist/tex/latex/pclnfss/ot1cot.fd
+ texmf-dist/tex/latex/pclnfss/ot1ctm.fd
+ texmf-dist/tex/latex/pclnfss/ot1cun.fd
+ texmf-dist/tex/latex/pclnfss/ot1hwi.fd
+ texmf-dist/tex/latex/pclnfss/ot1mhv.fd
+ texmf-dist/tex/latex/pclnfss/ot1mnt.fd
+ texmf-dist/tex/latex/pclnfss/ot1msy.fd
+ texmf-dist/tex/latex/pclnfss/timesnew.sty
+ texmf-dist/tex/latex/pclnfss/univers.sty
+catalogue-version 0.1
+catalogue-date 2007-02-24 15:09:57 +0100
+catalogue-ctan /macros/latex/contrib/pclnfss
+catalogue-license unknown
+
+name pdf-forms-tutorial-de
+category Package
+revision 0
+catalogue pdf-forms-tutorial
+shortdesc Tutorial on creating PDF forms using pdfLaTeX.
+longdesc This package contains a tutorial and examples showing how to
+longdesc create PDF forms using pdfLaTeX with the hyperref and insdljs
+longdesc packages.
+catalogue-version 0.9.4
+catalogue-date 2007-10-25 17:55:44 +0200
+catalogue-ctan /info/pdf-forms-tutorial
+catalogue-license fdl
+
+name pdf-forms-tutorial-en
+category Package
+revision 0
+catalogue pdf-forms-tutorial
+shortdesc Tutorial on creating PDF forms using pdfLaTeX.
+longdesc This package contains a tutorial and examples showing how to
+longdesc create PDF forms using pdfLaTeX with the hyperref and insdljs
+longdesc packages.
+catalogue-version 0.9.4
+catalogue-date 2007-10-25 17:55:44 +0200
+catalogue-ctan /info/pdf-forms-tutorial
+catalogue-license fdl
+
+name pdf-trans
+category Package
+revision 613
+shortdesc A set of macros for various transformations of TeX boxes.
+longdesc pdf-trans is a set of macros for various transformations of TeX
+longdesc boxes (based on plain and pdfeTeX primitives). It was initially
+longdesc inspired by trans.tex, remade to work with pdfTeX.
+docfiles size=145513
+ texmf-dist/doc/generic/pdf-trans/example.pdf
+ texmf-dist/doc/generic/pdf-trans/example.tex
+runfiles size=46060
+ texmf-dist/tex/generic/pdf-trans/pdf-trans.tex
+catalogue-version 2.2
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/generic/pdf-trans
+catalogue-license pd
+
+name pdfcprot
+category Package
+revision 1180
+shortdesc Activating and setting of character protruding using pdflatex.
+longdesc This package provides an easy interface to adjust the character
+longdesc protrusion for different fonts and choosing the right
+longdesc adjustment automatically depending on the font.
+docfiles size=22523
+ texmf-dist/doc/latex/pdfcprot/00CONTEN
+ texmf-dist/doc/latex/pdfcprot/00README
+ texmf-dist/doc/latex/pdfcprot/INSTALL.txt
+ texmf-dist/doc/latex/pdfcprot/LEGAL.txt
+ texmf-dist/doc/latex/pdfcprot/README.txt details="Package Readme"
+ texmf-dist/doc/latex/pdfcprot/TODO
+srcfiles size=98751
+ texmf-dist/source/latex/pdfcprot/Makefile.unx
+ texmf-dist/source/latex/pdfcprot/pdfcprot.dtx
+ texmf-dist/source/latex/pdfcprot/pdfcprot.ins
+runfiles size=48315
+ texmf-dist/tex/latex/pdfcprot/pdfcprot.sty
+ texmf-dist/tex/latex/pdfcprot/pplmnOT1.cpa
+ texmf-dist/tex/latex/pdfcprot/pplmnOT2.cpa
+ texmf-dist/tex/latex/pdfcprot/pplmnT1.cpa
+ texmf-dist/tex/latex/pdfcprot/pplmnT2A.cpa
+ texmf-dist/tex/latex/pdfcprot/pplmnTS1.cpa
+catalogue-version 1.7a
+catalogue-date 2006-12-18 23:50:36 +0100
+catalogue-ctan /macros/latex/contrib/pdfcprot
+catalogue-license lppl
+
+name pdfpages
+category Package
+revision 1958
+shortdesc Include PDF documents in LaTeX.
+longdesc This package simplifies the insertion of external multi-page
+longdesc PDF documents into LaTeX documents. Pages may be freely
+longdesc selected and similar to psnup it is possible to put several
+longdesc logical pages onto each sheet of paper. Furthermore a lot of
+longdesc hypertext features like hyperlinks and article threads are
+longdesc provided. The package supports pdfTeX (pdflatex) and VTeX. With
+longdesc VTeX it is even possible to use this package to insert
+longdesc PostScript files, in addition to PDF files.
+depend eso-pic
+docfiles size=232241
+ texmf-dist/doc/latex/pdfpages/README details="Readme"
+ texmf-dist/doc/latex/pdfpages/dummy-l.pdf
+ texmf-dist/doc/latex/pdfpages/dummy.pdf
+ texmf-dist/doc/latex/pdfpages/pdf-ex.tex
+ texmf-dist/doc/latex/pdfpages/pdf-hyp.tex
+ texmf-dist/doc/latex/pdfpages/pdf-toc.tex
+ texmf-dist/doc/latex/pdfpages/pdfpages.pdf details="Package documentation"
+srcfiles size=134202
+ texmf-dist/source/latex/pdfpages/pdfpages.dtx
+ texmf-dist/source/latex/pdfpages/pdfpages.ins
+runfiles size=59036
+ texmf-dist/tex/latex/pdfpages/pdfpages.sty
+ texmf-dist/tex/latex/pdfpages/ppnull.def
+ texmf-dist/tex/latex/pdfpages/pppdftex.def
+ texmf-dist/tex/latex/pdfpages/ppvtex.def
+catalogue-version 0.4a
+catalogue-date 2007-03-11 14:35:09 +0100
+catalogue-ctan /macros/latex/contrib/pdfpages
+catalogue-license lppl
+
+name pdfscreen
+category Package
+revision 2411
+shortdesc Support screen-based document design.
+longdesc An extension of the hyperref package to provide a screen-based
+longdesc document design. This package helps to generate pdf documents
+longdesc that are readable on screen and will fit the screen's aspect
+longdesc ratio. Also it can be used with various options to produce
+longdesc regular print versions of the same document without any extra
+longdesc effort.
+docfiles size=857233
+ texmf-dist/doc/latex/pdfscreen/logo.pdf
+ texmf-dist/doc/latex/pdfscreen/manual-print.pdf details="Manual, for printing"
+ texmf-dist/doc/latex/pdfscreen/manual-screen.pdf details="Manual, for screen viewing"
+ texmf-dist/doc/latex/pdfscreen/manual.tex
+ texmf-dist/doc/latex/pdfscreen/nopanel.pdf
+ texmf-dist/doc/latex/pdfscreen/pdfscreen.cfg.specimen
+ texmf-dist/doc/latex/pdfscreen/portrait.pdf
+ texmf-dist/doc/latex/pdfscreen/print.pdf
+ texmf-dist/doc/latex/pdfscreen/slide.pdf
+ texmf-dist/doc/latex/pdfscreen/slide.tex
+ texmf-dist/doc/latex/pdfscreen/square.pdf
+ texmf-dist/doc/latex/pdfscreen/tex.png
+ texmf-dist/doc/latex/pdfscreen/widepanel.pdf
+runfiles size=205578
+ texmf-dist/tex/latex/pdfscreen/but.pdf
+ texmf-dist/tex/latex/pdfscreen/button.pdf
+ texmf-dist/tex/latex/pdfscreen/left.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay0.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay1.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay10.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay2.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay3.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay4.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay5.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay6.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay7.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay8.pdf
+ texmf-dist/tex/latex/pdfscreen/overlay9.pdf
+ texmf-dist/tex/latex/pdfscreen/pdfscreen.sty
+ texmf-dist/tex/latex/pdfscreen/right.pdf
+catalogue-version 1.5
+catalogue-date 2006-12-05 17:23:05 +0100
+catalogue-ctan /macros/latex/contrib/pdfscreen
+catalogue-license lppl
+
+name pdfslide
+category Package
+revision 1183
+shortdesc Presentation slides using pdftex.
+longdesc This is a package for use with pdftex, to make nice
+longdesc presentation slides. Its aims are: to devise a method for
+longdesc easier technical presentation; to help the mix of mathematical
+longdesc formulae with text and graphics which the present day wysiwyg
+longdesc tools fail to accomplish; to exploit the platform independence
+longdesc of TeX so that presentation documents become portable; and to
+longdesc offer the freedom and possibilities of using various
+longdesc backgrounds and other embellishments that a user can imagine to
+longdesc have in as presentation. The package can make use of the
+longdesc facilities of the PPower4 post-processor.
+docfiles size=478613
+ texmf-dist/doc/latex/pdfslide/demo.pdf details="Narrative demonstration of the package"
+ texmf-dist/doc/latex/pdfslide/manual.pdf
+ texmf-dist/doc/latex/pdfslide/manual.tex
+ texmf-dist/doc/latex/pdfslide/meta.mp
+ texmf-dist/doc/latex/pdfslide/mpgraph.pdf
+runfiles size=85009
+ texmf-dist/tex/latex/pdfslide/bg.jpg
+ texmf-dist/tex/latex/pdfslide/d12.jpg
+ texmf-dist/tex/latex/pdfslide/metablue.pdf
+ texmf-dist/tex/latex/pdfslide/metagray.pdf
+ texmf-dist/tex/latex/pdfslide/metagreen.pdf
+ texmf-dist/tex/latex/pdfslide/metalgray.pdf
+ texmf-dist/tex/latex/pdfslide/pdfslide.cfg
+ texmf-dist/tex/latex/pdfslide/pdfslide.sty
+ texmf-dist/tex/latex/pdfslide/slide.clo
+catalogue-version
+catalogue-date 2006-12-05 23:27:16 +0100
+catalogue-ctan /macros/latex/contrib/pdfslide
+catalogue-license lppl
+
+name pdfsync
+category Package
+revision 3557
+shortdesc Provide links between source and PDF.
+longdesc The package runs with pdfTeX or XeTeX, and creates an auxiliary
+longdesc file with geometrical information to permit references back and
+longdesc forth between source and PDF, assuming a conforming editor and
+longdesc PDF viewer.
+docfiles size=3108
+ texmf-dist/doc/latex/pdfsync/README
+runfiles size=9872
+ texmf-dist/tex/latex/pdfsync/pdfsync.sty
+catalogue-version
+catalogue-date 2007-03-11 14:35:09 +0100
+catalogue-ctan /macros/latex/contrib/pdfsync/pdfsync.sty
+catalogue-license lppl
+
+name pdftex-def
+category Package
+revision 4460
+shortdesc Colour and Graphics support for PDFTeX.
+longdesc The file pdftex.def provides device-specific definitions for
+longdesc colour and graphics support when running pdf(La)TeX.
+runfiles size=33044
+ texmf-dist/tex/latex/pdftex-def/pdftex.def
+catalogue-version 0.04h
+catalogue-date 2007-06-13 10:10:12 +0200
+catalogue-ctan /graphics/pdftex/pdftex.def
+catalogue-license lppl
+
+name pdftricks
+category Package
+revision 1184
+shortdesc Support for pstricks in pdftex.
+longdesc The PSTricks macros cannot be used with pdfTeX, since pstricks
+longdesc uses PostScript arithmetic, which isn't part of PDF. This
+longdesc package circumvents this limitation so that the extensive
+longdesc facilities offered by the powerful PSTricks package can be made
+longdesc use of in a pdfTeX document. This is done using the shell
+longdesc escape function available in current TeX implementations. The
+longdesc package may also be used in support of other ‘PostScript-
+longdesc output-only’ packages, such as PSfrag.
+docfiles size=429005
+ texmf-dist/doc/latex/pdftricks/makefile
+ texmf-dist/doc/latex/pdftricks/manual.pdf details="Package documentation"
+ texmf-dist/doc/latex/pdftricks/test-fig1.tex
+ texmf-dist/doc/latex/pdftricks/test-fig2.tex
+ texmf-dist/doc/latex/pdftricks/test-fig3.tex
+ texmf-dist/doc/latex/pdftricks/test-fig4.tex
+ texmf-dist/doc/latex/pdftricks/test.pdf details="Test example"
+ texmf-dist/doc/latex/pdftricks/test.tex
+ texmf-dist/doc/latex/pdftricks/tmp.inputs
+srcfiles size=492
+ texmf-dist/source/latex/pdftricks/pst2pdf
+runfiles size=13205
+ texmf-dist/tex/latex/pdftricks/pdftricks.sty
+catalogue-version 1.15
+catalogue-date 2007-05-02 16:12:08 +0200
+catalogue-ctan /macros/latex/contrib/pdftricks
+catalogue-license gpl
+
+name pdfwin
+category Package
+revision 1185
+docfiles size=501746
+ texmf-dist/doc/latex/pdfwin/BucResampling.pdf
+ texmf-dist/doc/latex/pdfwin/BucSystem1.pdf
+ texmf-dist/doc/latex/pdfwin/BucSystem2.pdf
+ texmf-dist/doc/latex/pdfwin/BucSystem3.pdf
+ texmf-dist/doc/latex/pdfwin/BucSystem4.pdf
+ texmf-dist/doc/latex/pdfwin/BucSystem5.pdf
+ texmf-dist/doc/latex/pdfwin/BucSystem6.pdf
+ texmf-dist/doc/latex/pdfwin/Bucuresti2003.tex
+ texmf-dist/doc/latex/pdfwin/JWGU-Logo.png
+ texmf-dist/doc/latex/pdfwin/Thumbs.db
+ texmf-dist/doc/latex/pdfwin/marble.png
+ texmf-dist/doc/latex/pdfwin/normprot.tex
+ texmf-dist/doc/latex/pdfwin/shortvec.tex
+runfiles size=74761
+ texmf-dist/tex/latex/pdfwin/pdfwin.cfg
+ texmf-dist/tex/latex/pdfwin/pdfwin.sty
+
+name pecha
+category Package
+revision 1186
+docfiles size=106253
+ texmf-dist/doc/latex/pecha/CHANGES
+ texmf-dist/doc/latex/pecha/COPYING
+ texmf-dist/doc/latex/pecha/README
+ texmf-dist/doc/latex/pecha/example.pdf
+ texmf-dist/doc/latex/pecha/example.tex
+ texmf-dist/doc/latex/pecha/pecha_docu.pdf
+ texmf-dist/doc/latex/pecha/pecha_docu.tex
+runfiles size=37276
+ texmf-dist/tex/latex/pecha/ctibmantra.sty
+ texmf-dist/tex/latex/pecha/pecha.cls
+
+name perception
+category Package
+revision 80
+shortdesc BibTeX style for the journal Perception.
+longdesc A product of custom-bib, provided simply to save others' time.
+docfiles size=108
+ texmf-dist/doc/latex/perception/README
+runfiles size=29651
+ texmf-dist/bibtex/bst/perception/perception.bst
+catalogue-version
+catalogue-date 2007-02-24 15:09:57 +0100
+catalogue-ctan /biblio/bibtex/contrib/perception
+catalogue-license lppl
+
+name perltex
+category Package
+revision 5238
+shortdesc Define LaTeX macros in terms of Perl code
+longdesc PerlTeX is a combination Perl script (perltex.pl) and LaTeX2e
+longdesc package (perltex.sty) that, together, give the user the ability
+longdesc to define LaTeX macros in terms of Perl code. Once defined, a
+longdesc Perl macro becomes indistinguishable from any other LaTeX
+longdesc macro. PerlTeX thereby combines LaTeX's typesetting power with
+longdesc Perl's programmability. PerlTeX will make use of persistent
+longdesc named pipes, and thereby run more efficiently, on operating
+longdesc systems that offer them (mostly Unix-like systems). Also
+longdesc provided is a switch to generate a PerlTeX-free, document-
+longdesc specific, noperltex.sty that is useful when distributing a
+longdesc document to places where PerlTeX is not available.
+docfiles size=335774
+ texmf-dist/doc/latex/perltex/README details="Readme"
+ texmf-dist/doc/latex/perltex/perltex.pdf details="Package documentation"
+srcfiles size=107007
+ texmf-dist/source/latex/perltex/perltex.dtx
+ texmf-dist/source/latex/perltex/perltex.ins
+runfiles size=7318
+ texmf-dist/tex/latex/perltex/perltex.sty
+catalogue-version 1.5
+catalogue-date 2007-10-16 10:58:06 +0200
+catalogue-ctan /macros/latex/contrib/perltex
+catalogue-license lppl
+
+name permute
+category Package
+revision 3485
+shortdesc Support for symmetric groups.
+longdesc A package for symmetric groups, allowing you to input, output,
+longdesc and calculate with them.
+docfiles size=88611
+ texmf-dist/doc/latex/permute/permute.pdf details="Package documentation"
+srcfiles size=40621
+ texmf-dist/source/latex/permute/permute.dtx
+ texmf-dist/source/latex/permute/permute.ins
+runfiles size=9514
+ texmf-dist/tex/latex/permute/permute.sty
+catalogue-version
+catalogue-date 2007-01-12 23:55:10 +0100
+catalogue-ctan /macros/latex/contrib/permute
+catalogue-license lppl
+
+name petri-nets
+category Package
+revision 1190
+docfiles size=242838
+ texmf-dist/doc/latex/petri-nets/README
+ texmf-dist/doc/latex/petri-nets/pndoc.pdf
+ texmf-dist/doc/latex/petri-nets/pndoc.tex
+srcfiles size=20642
+ texmf-dist/source/latex/petri-nets/COPYING
+ texmf-dist/source/latex/petri-nets/pn2pdf
+runfiles size=21086
+ texmf-dist/tex/latex/petri-nets/pndraw.sty
+ texmf-dist/tex/latex/petri-nets/pndraw.tex
+ texmf-dist/tex/latex/petri-nets/pnets.sty
+ texmf-dist/tex/latex/petri-nets/pnets.tex
+ texmf-dist/tex/latex/petri-nets/pntext.sty
+ texmf-dist/tex/latex/petri-nets/pntext.tex
+ texmf-dist/tex/latex/petri-nets/pnversion.tex
+
+name pgf
+category Package
+revision 4459
+shortdesc Create PostScript and PDF graphics in TeX.
+longdesc PGF is a macro package for creating graphics. It is platform-
+longdesc and format-independent and works together with the most
+longdesc important TeX backend drivers, including pdftex and dvips. It
+longdesc comes with a user-friedly syntax layer called TikZ. Its usage
+longdesc is similar to pstricks and the standard picture environment.
+longdesc PGF works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt.
+longdesc Unlike pstricks, it can produce either PostScript or PDF
+longdesc output.
+docfiles size=5559065
+ texmf-dist/doc/generic/pgf/AUTHORS
+ texmf-dist/doc/generic/pgf/ChangeLog
+ texmf-dist/doc/generic/pgf/FILES
+ texmf-dist/doc/generic/pgf/INSTALL
+ texmf-dist/doc/generic/pgf/README details="Readme file"
+ texmf-dist/doc/generic/pgf/TODO
+ texmf-dist/doc/generic/pgf/images/brave-gnu-world-logo-mask.jpg
+ texmf-dist/doc/generic/pgf/images/brave-gnu-world-logo.25.eps
+ texmf-dist/doc/generic/pgf/images/brave-gnu-world-logo.25.jpg
+ texmf-dist/doc/generic/pgf/images/brave-gnu-world-logo.eps
+ texmf-dist/doc/generic/pgf/images/brave-gnu-world-logo.jpg
+ texmf-dist/doc/generic/pgf/images/pgfmanual-mindmap-1.pdf
+ texmf-dist/doc/generic/pgf/images/pgfmanual-mindmap-2.pdf
+ texmf-dist/doc/generic/pgf/licenses/LICENSE
+ texmf-dist/doc/generic/pgf/licenses/gnu-free-documentation-license-1.2.txt
+ texmf-dist/doc/generic/pgf/licenses/gnu-public-license-2.txt
+ texmf-dist/doc/generic/pgf/licenses/latex-project-public-license-1.3c.txt
+ texmf-dist/doc/generic/pgf/licenses/manifest-code.txt
+ texmf-dist/doc/generic/pgf/licenses/manifest-documentation.txt
+ texmf-dist/doc/generic/pgf/macros/pgfmanual-en-macros.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-actions.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-arrows.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-design.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-external.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-images.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-layers.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-matrices.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-nodes.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-paths.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-patterns.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-plots.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-points.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-quick.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-scopes.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-shadings.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-snakes.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-base-transformations.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-drivers.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-guidelines.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-installation.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-introduction.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-3d.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-arrows.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-automata.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-backgrounds.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-calendar.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-edges.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-folding.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-matrices.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-mindmaps.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-patterns.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-petri.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-plot-handlers.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-plot-marks.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-shapes.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-snakes.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-trees.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-license.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-main.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-math-algorithms.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-math-commands.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-math-design.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-math-parsing.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-pages.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-pgfcalendar.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-pgffor.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-commands.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-overview.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-paths.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-protocol.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-actions.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-coordinates.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-design.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-matrices.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-paths.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-plots.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-scopes.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-shapes.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-transformations.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-trees.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tutorial-nodes.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tutorial.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-xxcolor.tex
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.gnuplot
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.table
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-exp.gnuplot
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-exp.table
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-parametric-example.gnuplot
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-parametric-example.table
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-sin.gnuplot
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-sin.table
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-x.gnuplot
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-x.table
+ texmf-dist/doc/generic/pgf/text-en/plots/pgfmanual-sine.gnuplot
+ texmf-dist/doc/generic/pgf/text-en/plots/pgfmanual-sine.table
+ texmf-dist/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.gnuplot
+ texmf-dist/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.table
+ texmf-dist/doc/generic/pgf/version-for-dvipdfm/en/Makefile
+ texmf-dist/doc/generic/pgf/version-for-dvipdfm/en/pgfmanual.tex
+ texmf-dist/doc/generic/pgf/version-for-dvipdfm/pgfmanual-dvipdfm.cfg
+ texmf-dist/doc/generic/pgf/version-for-dvips/en/Makefile
+ texmf-dist/doc/generic/pgf/version-for-dvips/en/pgfmanual.tex
+ texmf-dist/doc/generic/pgf/version-for-dvips/pgfmanual-dvips.cfg
+ texmf-dist/doc/generic/pgf/version-for-pdftex/en/Makefile
+ texmf-dist/doc/generic/pgf/version-for-pdftex/en/pgfmanual.pdf details="PGF Manual"
+ texmf-dist/doc/generic/pgf/version-for-pdftex/en/pgfmanual.tex
+ texmf-dist/doc/generic/pgf/version-for-pdftex/pgfmanual-pdftex.cfg
+ texmf-dist/doc/generic/pgf/version-for-tex4ht/en/Makefile
+ texmf-dist/doc/generic/pgf/version-for-tex4ht/en/pgfmanual.tex
+ texmf-dist/doc/generic/pgf/version-for-tex4ht/pgfmanual-tex4ht.cfg
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/Makefile
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/pgfmanual.tex
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-asymptotic-example.gnuplot
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-asymptotic-example.table
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-exp.gnuplot
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-exp.table
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-parametric-example.gnuplot
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-parametric-example.table
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-sin.gnuplot
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-sin.table
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-x.gnuplot
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgf-x.table
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgfmanual-sine.gnuplot
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgfmanual-sine.table
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgfplotgnuplot-example.gnuplot
+ texmf-dist/doc/generic/pgf/version-for-vtex/en/plots/pgfplotgnuplot-example.table
+ texmf-dist/doc/generic/pgf/version-for-vtex/pgfmanual-vtex.cfg
+runfiles size=963902
+ texmf-dist/tex/generic/pgf/basiclayer/pgfbaseimage.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfbaselayers.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfbasematrix.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfbasepatterns.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfbaseplot.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfbaseshapes.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfbasesnakes.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
+ texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
+ texmf-dist/tex/generic/pgf/frontendlayer/tikz.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryshapes.arrows.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryshapes.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryshapes.geometric.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryshapes.misc.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryshapes.multipart.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryshapes.symbols.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarysnakes.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikz3d.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzarrows.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzautomata.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzbackgrounds.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzcalendar.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzcoordinatesystems.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzer.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzfolding.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzmatrix.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzmindmap.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzpatterns.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzpetri.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzplothandlers.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzplotmarks.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzshapes.arrows.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzshapes.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzshapes.geometric.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzshapes.misc.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzshapes.multipart.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzshapes.symbols.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikzsnakes.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikztopaths.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarytikztrees.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmathbase.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmathoperations.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmathrnd.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmathtrig.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex
+ texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-postscript.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-svg.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvi.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfm.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvips.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-tex4ht.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-textures.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-vtex.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
+ texmf-dist/tex/generic/pgf/utilities/pgfcalendar.code.tex
+ texmf-dist/tex/generic/pgf/utilities/pgfexternal.tex
+ texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
+ texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
+ texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
+ texmf-dist/tex/generic/pgf/utilities/pgfutil-context.def
+ texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
+ texmf-dist/tex/generic/pgf/utilities/pgfutil-plain.def
+ texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
+ texmf-dist/tex/latex/pgf/basiclayer/pgfbaseimage.sty
+ texmf-dist/tex/latex/pgf/basiclayer/pgfbaselayers.sty
+ texmf-dist/tex/latex/pgf/basiclayer/pgfbasematrix.sty
+ texmf-dist/tex/latex/pgf/basiclayer/pgfbasepatterns.sty
+ texmf-dist/tex/latex/pgf/basiclayer/pgfbaseplot.sty
+ texmf-dist/tex/latex/pgf/basiclayer/pgfbaseshapes.sty
+ texmf-dist/tex/latex/pgf/basiclayer/pgfbasesnakes.sty
+ texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgfarrows.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgfautomata.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgfheaps.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgflibraryarrows.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgflibraryautomata.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgflibraryplothandlers.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgflibraryplotmarks.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgflibraryshapes.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgflibrarysnakes.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgflibrarytikzbackgrounds.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgflibrarytikztrees.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgfnodes.sty
+ texmf-dist/tex/latex/pgf/compatibility/pgfshade.sty
+ texmf-dist/tex/latex/pgf/frontendlayer/pgfpict2e.sty
+ texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
+ texmf-dist/tex/latex/pgf/math/pgfmath.sty
+ texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
+ texmf-dist/tex/latex/pgf/utilities/pgfcalendar.sty
+ texmf-dist/tex/latex/pgf/utilities/pgffor.sty
+ texmf-dist/tex/latex/pgf/utilities/pgfpages.sty
+ texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
+ texmf-dist/tex/latex/pgf/utilities/xxcolor.sty
+ texmf-dist/tex/plain/pgf/basiclayer/pgf.tex
+ texmf-dist/tex/plain/pgf/basiclayer/pgfbaseimage.tex
+ texmf-dist/tex/plain/pgf/basiclayer/pgfbaselayers.tex
+ texmf-dist/tex/plain/pgf/basiclayer/pgfbasematrix.tex
+ texmf-dist/tex/plain/pgf/basiclayer/pgfbasepatterns.tex
+ texmf-dist/tex/plain/pgf/basiclayer/pgfbaseplot.tex
+ texmf-dist/tex/plain/pgf/basiclayer/pgfbaseshapes.tex
+ texmf-dist/tex/plain/pgf/basiclayer/pgfbasesnakes.tex
+ texmf-dist/tex/plain/pgf/basiclayer/pgfcore.tex
+ texmf-dist/tex/plain/pgf/frontendlayer/tikz.tex
+ texmf-dist/tex/plain/pgf/math/pgfmath.tex
+ texmf-dist/tex/plain/pgf/systemlayer/pgfsys.tex
+ texmf-dist/tex/plain/pgf/utilities/pgfcalendar.tex
+ texmf-dist/tex/plain/pgf/utilities/pgffor.tex
+ texmf-dist/tex/plain/pgf/utilities/pgfrcs.tex
+catalogue-version 1.18
+catalogue-date 2007-06-13 10:13:59 +0200
+catalogue-ctan /graphics/pgf
+catalogue-license lppl1.3
+
+name phaistos
+category Package
+revision 1192
+shortdesc Disk of Phaistos font.
+longdesc A font that contains all the symbols of the famous Disc of
+longdesc Phaistos, together with a LaTeX package. The disc was
+longdesc ‘printed’ by stamping the wet clay with some sort of
+longdesc punches, probably around 1700 BCE. There are those who believe
+longdesc that this Cretan script was used to ‘write’ Greek (it is
+longdesc known, for example, that the rather later Cretan Linear B
+longdesc script was used to write Greek), but arguments for other
+longdesc languages have been presented. Given that the disc is the only
+longdesc known example of the script, it seems unlikely that a
+longdesc decipherment will ever be confirmed.
+execute addMap phaistos.map
+docfiles size=185868
+ texmf-dist/doc/fonts/phaistos/getglyphs
+ texmf-dist/doc/fonts/phaistos/glyphTable.pdf
+srcfiles size=10077
+ texmf-dist/source/latex/phaistos/phaistos.dtx
+ texmf-dist/source/latex/phaistos/phaistos.ins
+runfiles size=165531
+ texmf-dist/fonts/afm/public/phaistos/phaistos.afm
+ texmf-dist/fonts/map/dvips/phaistos/phaistos.map
+ texmf-dist/fonts/tfm/public/phaistos/phaistos.tfm
+ texmf-dist/fonts/type1/public/phaistos/phaistos.pfb
+ texmf-dist/tex/latex/phaistos/phaistos.sty
+catalogue-version 1.0
+catalogue-date 2006-11-08 11:03:28 +0100
+catalogue-ctan /fonts/archaic/phaistos
+catalogue-license lppl
+
+name philex
+category Package
+revision 5289
+shortdesc Cross references for named and numbered environments.
+longdesc Philex provides means for creating and cross-referencing named
+longdesc or numbered environments. Possible uses would be equations,
+longdesc example sentences (as in linguistics or philosophy) or named
+longdesc principles. Cross references may refer either to the number, or
+longdesc to a short name of the target environment, or to the contents
+longdesc of the environment. Philex builds on the facilities of the
+longdesc linguex package.
+docfiles size=111340
+ texmf-dist/doc/latex/philex/README details="Readme"
+ texmf-dist/doc/latex/philex/philex.pdf details="Package documentation"
+ texmf-dist/doc/latex/philex/philex.tex
+runfiles size=11071
+ texmf-dist/tex/latex/philex/philex.sty
+catalogue-version 0.3.1
+catalogue-date 2007-10-28 23:28:59 +0100
+catalogue-ctan /macros/latex/contrib/philex
+catalogue-license lppl
+
+name philokalia
+category Package
+revision 5035
+shortdesc A font to typeset the Philokalia Books.
+longdesc The philokalia package has been designed to ease the use of the
+longdesc Philokalia-Regular OpenType font with XeLaTeX. The font started
+longdesc as a project to digitize the typeface used to typeset the
+longdesc Philokalia books.
+docfiles size=108771
+ texmf-dist/doc/xelatex/philokalia/philokalia.pdf
+srcfiles size=19343
+ texmf-dist/source/xelatex/philokalia/philokalia.dtx
+ texmf-dist/source/xelatex/philokalia/philokalia.ins
+runfiles size=129209
+ texmf-dist/fonts/opentype/public/philokalia/Philokalia-Regular.otf
+ texmf-dist/tex/xelatex/philokalia/eu1plk.fd
+ texmf-dist/tex/xelatex/philokalia/philokalia.sty
+catalogue-version 1.1
+catalogue-date 2007-09-24 10:59:32 +0200
+catalogue-ctan /fonts/philokalia
+catalogue-license ofl
+
+name philosophersimprint
+category Package
+revision 4307
+shortdesc Typesetting articles for "Philosophers' Imprint".
+longdesc In its mission statement we read “Philosophers’ Imprint is
+longdesc a refereed series of original papers in philosophy, edited by
+longdesc philosophy faculty at the University of Michigan, with the
+longdesc advice of an international Board of Editors, and published on
+longdesc the World Wide Web by the University of Michigan Digital
+longdesc Library. The mission of the Imprint is to promote a future in
+longdesc which funds currently spent on journal subscriptions are
+longdesc redirected to the dissemination of scholarship for free, via
+longdesc the Internet”. The journal used to accept manuscripts in Rich
+longdesc Text Format only. However, for many authors, especially from
+longdesc the field of logic, TeX seems to be a better choice. The author
+longdesc was commissioned to write a LaTeX class for the journal. The
+longdesc class helps authors to typeset their own articles in ‘Web-
+longdesc ready’ format. No assumption is made about the fonts
+longdesc available to the author: the class uses freely available and
+longdesc freely distributed fonts, only.
+docfiles size=375273
+ texmf-dist/doc/latex/philosophersimprint/README details="Readme"
+ texmf-dist/doc/latex/philosophersimprint/philosophersimprint.pdf details="Package documentation"
+ texmf-dist/doc/latex/philosophersimprint/sample.pdf details="Sample of usage"
+ texmf-dist/doc/latex/philosophersimprint/sample.tex
+srcfiles size=44622
+ texmf-dist/source/latex/philosophersimprint/Makefile
+ texmf-dist/source/latex/philosophersimprint/philosophersimprint.dtx
+ texmf-dist/source/latex/philosophersimprint/philosophersimprint.ins
+runfiles size=17252
+ texmf-dist/bibtex/bib/philosophersimprint/philosophersimprint.bib
+ texmf-dist/tex/latex/philosophersimprint/philosophersimprint.cls
+catalogue-version 1.0
+catalogue-date 2007-05-20 15:54:27 +0200
+catalogue-ctan /macros/latex/contrib/philosophersimprint
+catalogue-license lppl
+
+name phonetic
+category Package
+revision 1487
+shortdesc MetaFont Phonetic fonts, based on Computer Modern.
+longdesc The fonts are based on Computer Modern, and specified in
+longdesc MetaFont. Macros for the fonts’ use are provided, both for
+longdesc LaTeX 2.09 and for current LaTeX.
+docfiles size=6071
+ texmf-dist/doc/fonts/phonetic/phonetic-table.dvi
+ texmf-dist/doc/fonts/phonetic/phonetic-table.tex
+srcfiles size=29917
+ texmf-dist/source/fonts/phonetic/Doc/209/phonetic-table.tex
+ texmf-dist/source/fonts/phonetic/Doc/209/phonetic.sty
+ texmf-dist/source/fonts/phonetic/Doc/README
+ texmf-dist/source/fonts/phonetic/README
+ texmf-dist/source/fonts/phonetic/makefile
+runfiles size=162300
+ texmf-dist/fonts/source/public/phonetic/cmph10.mf
+ texmf-dist/fonts/source/public/phonetic/cmph5.mf
+ texmf-dist/fonts/source/public/phonetic/cmph6.mf
+ texmf-dist/fonts/source/public/phonetic/cmph7.mf
+ texmf-dist/fonts/source/public/phonetic/cmph8.mf
+ texmf-dist/fonts/source/public/phonetic/cmph9.mf
+ texmf-dist/fonts/source/public/phonetic/cmphb10.mf
+ texmf-dist/fonts/source/public/phonetic/cmphi10.mf
+ texmf-dist/fonts/source/public/phonetic/cmphi7.mf
+ texmf-dist/fonts/source/public/phonetic/cmphi8.mf
+ texmf-dist/fonts/source/public/phonetic/cmphi9.mf
+ texmf-dist/fonts/source/public/phonetic/local.mf
+ texmf-dist/fonts/source/public/phonetic/phochar.mf
+ texmf-dist/fonts/source/public/phonetic/phoital.mf
+ texmf-dist/fonts/source/public/phonetic/phoitchar.mf
+ texmf-dist/fonts/source/public/phonetic/phosym.mf
+ texmf-dist/fonts/source/public/phonetic/symchar.mf
+ texmf-dist/fonts/tfm/public/phonetic/cmph10.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmph5.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmph6.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmph7.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmph8.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmph9.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmphb10.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmphi10.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmphi7.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmphi8.tfm
+ texmf-dist/fonts/tfm/public/phonetic/cmphi9.tfm
+ texmf-dist/tex/latex/phonetic/Uphon.fd
+ texmf-dist/tex/latex/phonetic/phonetic.sty
+catalogue-version
+catalogue-date 2007-01-12 23:55:10 +0100
+catalogue-ctan /fonts/phonetic
+catalogue-license unknown
+
+name photo
+category Package
+revision 1194
+shortdesc A float environment for photographs.
+longdesc This package introduces a new float type called photo which
+longdesc works similar to the float types table and figure. Various
+longdesc options exist for placing photos, captions, and a
+longdesc “photographer” line. In twocolumn documents, a possibility
+longdesc exists to generate double-column floats automatically if the
+longdesc photo does not fit into one column. Photos do not have to be
+longdesc placed as floats, they can also be placed as boxes, with
+longdesc captions and photographer line still being available.
+docfiles size=167808
+ texmf-dist/doc/latex/photo/photo.pdf details="Package documentation"
+ texmf-dist/doc/latex/photo/photo_test.lop
+ texmf-dist/doc/latex/photo/photo_test.tex
+srcfiles size=30631
+ texmf-dist/source/latex/photo/Makefile
+ texmf-dist/source/latex/photo/photo.drv
+ texmf-dist/source/latex/photo/photo.dtx
+ texmf-dist/source/latex/photo/photo.ins
+runfiles size=6105
+ texmf-dist/tex/latex/photo/photo.sty
+catalogue-version
+catalogue-date 2006-12-02 15:26:11 +0100
+catalogue-ctan /macros/latex/contrib/photo
+catalogue-license lppl
+
+name physe
+category Package
+revision 619
+shortdesc The PHYSE format.
+longdesc PHYSE is a format for writing physics papers, based on Knuth's
+longdesc plain.
+runfiles size=74179
+ texmf-dist/tex/physe/base/physe.tex
+ texmf-dist/tex/physe/base/physupdt.tex
+ texmf-dist/tex/physe/config/physe.ini
+catalogue-version
+catalogue-date 2007-01-13 09:26:05 +0100
+catalogue-ctan /macros/physe
+catalogue-license unknown
+
+name phyzzx
+category Package
+revision 1487
+shortdesc A TeX format for physicists.
+longdesc The macros were developed at SLAC, and were updated after the
+longdesc transition from TeX 97 to TeX 1.0.
+docfiles size=313046
+ texmf-dist/doc/phyzzx/base/phyzdoc.dvi
+ texmf-dist/doc/phyzzx/base/phyzdoc.tex
+runfiles size=94663
+ texmf-dist/tex/phyzzx/base/myphyx.tex
+ texmf-dist/tex/phyzzx/base/phyzzx.fonts
+ texmf-dist/tex/phyzzx/base/phyzzx.local
+ texmf-dist/tex/phyzzx/base/phyzzx.plus
+ texmf-dist/tex/phyzzx/base/phyzzx.tex
+ texmf-dist/tex/phyzzx/config/phyzzx.ini
+catalogue-version
+catalogue-date 2007-01-13 09:26:05 +0100
+catalogue-ctan /macros/phyzzx
+catalogue-license unknown
+
+name picinpar
+category Package
+revision 1487
+shortdesc Insert pictures into paragraphs.
+longdesc (NOTE: Piet van Oostrum does not recommend this package. Picins
+longdesc is recommended instead.)
+docfiles size=24021
+ texmf-dist/doc/latex/picinpar/picinpar.dvi
+ texmf-dist/doc/latex/picinpar/picinpar.tex
+runfiles size=16156
+ texmf-dist/tex/latex/picinpar/picinpar.sty
+catalogue-version 1.2a
+catalogue-date 2007-01-13 09:26:05 +0100
+catalogue-ctan /macros/latex209/contrib/picinpar
+catalogue-license gpl
+
+name pict2e
+category Package
+revision 1886
+shortdesc New implementation of picture commands.
+longdesc This package was described in the 2nd edition of ‘LaTeX: A
+longdesc Document Preparation System’, but the LaTeX project team
+longdesc declined to produce the package. For a long time, LaTeX has
+longdesc included a ‘pict2e package’ that merely produced an
+longdesc apologetic error message. The new package extends the existing
+longdesc LaTeX picture environment, using the familiar technique (cf.
+longdesc the graphics and color packages) of driver files. The package
+longdesc documentation has a fair number of examples of use, showing
+longdesc where things are improved by comparison with the LaTeX picture
+longdesc environment.
+docfiles size=356041
+ texmf-dist/doc/latex/pict2e/README details="Readme"
+ texmf-dist/doc/latex/pict2e/manifest.txt
+ texmf-dist/doc/latex/pict2e/p2e-drivers.pdf
+ texmf-dist/doc/latex/pict2e/pict2e.pdf details="Package documentation"
+srcfiles size=127718
+ texmf-dist/source/latex/pict2e/p2e-drivers.dtx
+ texmf-dist/source/latex/pict2e/pict2e.dtx
+ texmf-dist/source/latex/pict2e/pict2e.ins
+runfiles size=28226
+ texmf-dist/tex/latex/pict2e/p2e-dvipdfm.def
+ texmf-dist/tex/latex/pict2e/p2e-dvips.def
+ texmf-dist/tex/latex/pict2e/p2e-pctex32.def
+ texmf-dist/tex/latex/pict2e/p2e-pctexps.def
+ texmf-dist/tex/latex/pict2e/p2e-pdftex.def
+ texmf-dist/tex/latex/pict2e/p2e-textures.def
+ texmf-dist/tex/latex/pict2e/p2e-vtex.def
+ texmf-dist/tex/latex/pict2e/pict2e.cfg
+ texmf-dist/tex/latex/pict2e/pict2e.sty
+catalogue-version 0.2s
+catalogue-date 2007-01-13 09:26:05 +0100
+catalogue-ctan /macros/latex/contrib/pict2e
+catalogue-license lppl
+
+name pictex
+category Package
+revision 613
+docfiles size=1981
+ texmf-dist/doc/generic/pictex/00index
+ texmf-dist/doc/generic/pictex/pictexzusatz.txt
+ texmf-dist/doc/generic/pictex/readme
+ texmf-dist/doc/generic/pictex/readme.errorbars
+runfiles size=303454
+ texmf-dist/tex/generic/pictex/errorbars.tex
+ texmf-dist/tex/generic/pictex/latexpicobjs.tex
+ texmf-dist/tex/generic/pictex/piccorr.sty
+ texmf-dist/tex/generic/pictex/picmore.tex
+ texmf-dist/tex/generic/pictex/pictex.sty
+ texmf-dist/tex/generic/pictex/pictex.tex
+ texmf-dist/tex/generic/pictex/pictexwd.sty
+ texmf-dist/tex/generic/pictex/pictexwd.tex
+ texmf-dist/tex/generic/pictex/pointers.tex
+ texmf-dist/tex/generic/pictex/postpictex.tex
+ texmf-dist/tex/generic/pictex/prepictex.tex
+ texmf-dist/tex/generic/pictex/texpictex.tex
+ texmf-dist/tex/generic/pictex/tree.sty
+
+name pictex2
+category Package
+revision 2505
+shortdesc Adds relative coordinates and improves the \plot command.
+longdesc Adds two user commands to standard PiCTeX. One command uses
+longdesc relative coordinates, thus eliminating the need to calculate
+longdesc the coordinate of every point manually as in standard PiCTeX.
+longdesc The other command modifies \plot to use a rule instead of dots
+longdesc if the line segment is horizontal or vertical.
+runfiles size=15940
+ texmf-dist/tex/latex/pictex2/pictex2.sty
+catalogue-version
+catalogue-date 2007-01-13 09:26:05 +0100
+catalogue-ctan /macros/latex/contrib/pictex2/pictex2.sty
+catalogue-license lppl
+
+name piechartmp
+category Package
+revision 104
+shortdesc Draw pie-charts using MetaPost.
+longdesc The piechartmp package is an easy way to draw pie-charts with
+longdesc MetaPost. The package implements an interface that enables
+longdesc users with little MetaPost experience to draw charts. A
+longdesc highlight of the package is the possibility of suppressing some
+longdesc segments of the chart, thus creating the possibility of several
+longdesc charts from the same data.
+docfiles size=394758
+ texmf-dist/doc/metapost/piechartmp/INSTALL
+ texmf-dist/doc/metapost/piechartmp/LEGAL
+ texmf-dist/doc/metapost/piechartmp/README details="Readme"
+ texmf-dist/doc/metapost/piechartmp/examples/wec-mfun.mp
+ texmf-dist/doc/metapost/piechartmp/examples/wec-mfun.pdf
+ texmf-dist/doc/metapost/piechartmp/examples/wec.mp
+ texmf-dist/doc/metapost/piechartmp/examples/wec.pdf
+ texmf-dist/doc/metapost/piechartmp/examples/worldmap.jpg
+ texmf-dist/doc/metapost/piechartmp/piechartmp.pdf details="Package documentation"
+runfiles size=25985
+ texmf-dist/metapost/piechartmp/piechartmp.mp
+catalogue-version 0.3.0
+catalogue-date 2007-01-13 20:56:44 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/piechartmp
+catalogue-license lppl
+
+name pinlabel
+category Package
+revision 5502
+shortdesc A TeX labelling package.
+longdesc Pinlabel is a labelling package for attaching perfectly
+longdesc formatted TeX labels to figures and diagrams in both eps and
+longdesc pdf formats. It is suitable both for labelling a new diagram
+longdesc and for relabelling an existing diagram. The package uses
+longdesc coordinates derived from GhostView (or gv) and labels are
+longdesc placed with automatic and consistent spacing relative to the
+longdesc object labelled.
+runfiles size=37482
+ texmf-dist/tex/latex/pinlabel/pinlabel.sty
+catalogue-version 1.1
+catalogue-date 2006-11-29 14:22:26 +0100
+catalogue-ctan /macros/latex/contrib/pinlabel
+catalogue-license lppl
+
+name pittetd
+category Package
+revision 1198
+shortdesc Electronic Theses and Dissertations at Pitt.
+longdesc A document class for theses and dissertations. Provides patch
+longdesc files that enable pittetd to use files prepared for use with
+longdesc the pittdiss or pitthesis classes. The manual provides a
+longdesc detailed guide for users who wish to use the class to prepare
+longdesc their thesis or dissertation.
+docfiles size=474066
+ texmf-dist/doc/latex/pittetd/achicago.pit
+ texmf-dist/doc/latex/pittetd/pittdiss.pit
+ texmf-dist/doc/latex/pittetd/pittetd.pdf details="Package documentation"
+ texmf-dist/doc/latex/pittetd/pitthesis.pit
+srcfiles size=149226
+ texmf-dist/source/latex/pittetd/pittetd.dtx
+ texmf-dist/source/latex/pittetd/pittetd.ins
+runfiles size=38468
+ texmf-dist/tex/latex/pittetd/pitetd10.clo
+ texmf-dist/tex/latex/pittetd/pitetd11.clo
+ texmf-dist/tex/latex/pittetd/pitetd12.clo
+ texmf-dist/tex/latex/pittetd/pittetd.cls
+catalogue-version 1.618
+catalogue-date 2007-01-08 00:37:16 +0100
+catalogue-ctan /macros/latex/contrib/pittetd
+catalogue-license unknown
+
+name pl
+category Package
+revision 101
+shortdesc Literate Programming for Prolog with LaTeX.
+longdesc Instead of having to transform the common source into program
+longdesc or documentation, the central idea was to develop a method to
+longdesc have one common source which can be interpreted by a Prolog
+longdesc system as well as by LaTeX, whether that Prolog system be C-
+longdesc Prolog, Quintus-Prolog, or ECLiPSe.
+execute addMixedMap plother.map
+execute addMixedMap pltext.map
+docfiles size=78362
+ texmf-dist/doc/fonts/pl/README-T1.ENG
+ texmf-dist/doc/fonts/pl/README-T1.POL
+ texmf-dist/doc/fonts/pl/README.ENG
+ texmf-dist/doc/fonts/pl/README.POL
+ texmf-dist/doc/fonts/pl/plsample.tex
+runfiles size=3462898
+ texmf-dist/dvips/pl/config.pl
+ texmf-dist/fonts/afm/public/pl/plb10.afm
+ texmf-dist/fonts/afm/public/pl/plbsy10.afm
+ texmf-dist/fonts/afm/public/pl/plbx10.afm
+ texmf-dist/fonts/afm/public/pl/plbx12.afm
+ texmf-dist/fonts/afm/public/pl/plbx5.afm
+ texmf-dist/fonts/afm/public/pl/plbx6.afm
+ texmf-dist/fonts/afm/public/pl/plbx7.afm
+ texmf-dist/fonts/afm/public/pl/plbx8.afm
+ texmf-dist/fonts/afm/public/pl/plbx9.afm
+ texmf-dist/fonts/afm/public/pl/plbxsl10.afm
+ texmf-dist/fonts/afm/public/pl/plbxti10.afm
+ texmf-dist/fonts/afm/public/pl/plcsc10.afm
+ texmf-dist/fonts/afm/public/pl/pldunh10.afm
+ texmf-dist/fonts/afm/public/pl/plex10.afm
+ texmf-dist/fonts/afm/public/pl/plex9.afm
+ texmf-dist/fonts/afm/public/pl/plff10.afm
+ texmf-dist/fonts/afm/public/pl/plfi10.afm
+ texmf-dist/fonts/afm/public/pl/plfib8.afm
+ texmf-dist/fonts/afm/public/pl/plinch.afm
+ texmf-dist/fonts/afm/public/pl/plitt10.afm
+ texmf-dist/fonts/afm/public/pl/plmi10.afm
+ texmf-dist/fonts/afm/public/pl/plmi12.afm
+ texmf-dist/fonts/afm/public/pl/plmi5.afm
+ texmf-dist/fonts/afm/public/pl/plmi6.afm
+ texmf-dist/fonts/afm/public/pl/plmi7.afm
+ texmf-dist/fonts/afm/public/pl/plmi8.afm
+ texmf-dist/fonts/afm/public/pl/plmi9.afm
+ texmf-dist/fonts/afm/public/pl/plmib10.afm
+ texmf-dist/fonts/afm/public/pl/plr10.afm
+ texmf-dist/fonts/afm/public/pl/plr12.afm
+ texmf-dist/fonts/afm/public/pl/plr17.afm
+ texmf-dist/fonts/afm/public/pl/plr5.afm
+ texmf-dist/fonts/afm/public/pl/plr6.afm
+ texmf-dist/fonts/afm/public/pl/plr7.afm
+ texmf-dist/fonts/afm/public/pl/plr8.afm
+ texmf-dist/fonts/afm/public/pl/plr9.afm
+ texmf-dist/fonts/afm/public/pl/plsl10.afm
+ texmf-dist/fonts/afm/public/pl/plsl12.afm
+ texmf-dist/fonts/afm/public/pl/plsl8.afm
+ texmf-dist/fonts/afm/public/pl/plsl9.afm
+ texmf-dist/fonts/afm/public/pl/plsltt10.afm
+ texmf-dist/fonts/afm/public/pl/plss10.afm
+ texmf-dist/fonts/afm/public/pl/plss12.afm
+ texmf-dist/fonts/afm/public/pl/plss17.afm
+ texmf-dist/fonts/afm/public/pl/plss8.afm
+ texmf-dist/fonts/afm/public/pl/plss9.afm
+ texmf-dist/fonts/afm/public/pl/plssbi10.afm
+ texmf-dist/fonts/afm/public/pl/plssbx10.afm
+ texmf-dist/fonts/afm/public/pl/plssdc10.afm
+ texmf-dist/fonts/afm/public/pl/plssi10.afm
+ texmf-dist/fonts/afm/public/pl/plssi12.afm
+ texmf-dist/fonts/afm/public/pl/plssi17.afm
+ texmf-dist/fonts/afm/public/pl/plssi8.afm
+ texmf-dist/fonts/afm/public/pl/plssi9.afm
+ texmf-dist/fonts/afm/public/pl/plssq8.afm
+ texmf-dist/fonts/afm/public/pl/plssqi8.afm
+ texmf-dist/fonts/afm/public/pl/plsy10.afm
+ texmf-dist/fonts/afm/public/pl/plsy5.afm
+ texmf-dist/fonts/afm/public/pl/plsy6.afm
+ texmf-dist/fonts/afm/public/pl/plsy7.afm
+ texmf-dist/fonts/afm/public/pl/plsy8.afm
+ texmf-dist/fonts/afm/public/pl/plsy9.afm
+ texmf-dist/fonts/afm/public/pl/pltcsc10.afm
+ texmf-dist/fonts/afm/public/pl/pltex10.afm
+ texmf-dist/fonts/afm/public/pl/pltex8.afm
+ texmf-dist/fonts/afm/public/pl/pltex9.afm
+ texmf-dist/fonts/afm/public/pl/plti10.afm
+ texmf-dist/fonts/afm/public/pl/plti12.afm
+ texmf-dist/fonts/afm/public/pl/plti7.afm
+ texmf-dist/fonts/afm/public/pl/plti8.afm
+ texmf-dist/fonts/afm/public/pl/plti9.afm
+ texmf-dist/fonts/afm/public/pl/pltt10.afm
+ texmf-dist/fonts/afm/public/pl/pltt12.afm
+ texmf-dist/fonts/afm/public/pl/pltt8.afm
+ texmf-dist/fonts/afm/public/pl/pltt9.afm
+ texmf-dist/fonts/afm/public/pl/plu10.afm
+ texmf-dist/fonts/afm/public/pl/plvtt10.afm
+ texmf-dist/fonts/enc/dvips/pl/plin.enc
+ texmf-dist/fonts/enc/dvips/pl/plit.enc
+ texmf-dist/fonts/enc/dvips/pl/plitt.enc
+ texmf-dist/fonts/enc/dvips/pl/plme.enc
+ texmf-dist/fonts/enc/dvips/pl/plmi.enc
+ texmf-dist/fonts/enc/dvips/pl/plms.enc
+ texmf-dist/fonts/enc/dvips/pl/plrm.enc
+ texmf-dist/fonts/enc/dvips/pl/plsc.enc
+ texmf-dist/fonts/enc/dvips/pl/plte.enc
+ texmf-dist/fonts/enc/dvips/pl/pltt.enc
+ texmf-dist/fonts/map/dvips/pl/plother.map
+ texmf-dist/fonts/map/dvips/pl/pltext.map
+ texmf-dist/fonts/source/public/pl/cmssbi10.mf
+ texmf-dist/fonts/source/public/pl/dlr10.mf
+ texmf-dist/fonts/source/public/pl/fik_mik.mf
+ texmf-dist/fonts/source/public/pl/pl.mft
+ texmf-dist/fonts/source/public/pl/pl_cud.mf
+ texmf-dist/fonts/source/public/pl/pl_dl.mf
+ texmf-dist/fonts/source/public/pl/pl_dod.mf
+ texmf-dist/fonts/source/public/pl/pl_ml.mf
+ texmf-dist/fonts/source/public/pl/pl_mlk.mf
+ texmf-dist/fonts/source/public/pl/pl_sym.mf
+ texmf-dist/fonts/source/public/pl/plb10.mf
+ texmf-dist/fonts/source/public/pl/plbsy10.mf
+ texmf-dist/fonts/source/public/pl/plbsy5.mf
+ texmf-dist/fonts/source/public/pl/plbsy7.mf
+ texmf-dist/fonts/source/public/pl/plbx10.mf
+ texmf-dist/fonts/source/public/pl/plbx12.mf
+ texmf-dist/fonts/source/public/pl/plbx5.mf
+ texmf-dist/fonts/source/public/pl/plbx6.mf
+ texmf-dist/fonts/source/public/pl/plbx7.mf
+ texmf-dist/fonts/source/public/pl/plbx8.mf
+ texmf-dist/fonts/source/public/pl/plbx9.mf
+ texmf-dist/fonts/source/public/pl/plbxsl10.mf
+ texmf-dist/fonts/source/public/pl/plbxti10.mf
+ texmf-dist/fonts/source/public/pl/plcsc10.mf
+ texmf-dist/fonts/source/public/pl/pldunh10.mf
+ texmf-dist/fonts/source/public/pl/plex10.mf
+ texmf-dist/fonts/source/public/pl/plff10.mf
+ texmf-dist/fonts/source/public/pl/plfi10.mf
+ texmf-dist/fonts/source/public/pl/plfib8.mf
+ texmf-dist/fonts/source/public/pl/plinch.mf
+ texmf-dist/fonts/source/public/pl/plitt10.mf
+ texmf-dist/fonts/source/public/pl/plmi10.mf
+ texmf-dist/fonts/source/public/pl/plmi12.mf
+ texmf-dist/fonts/source/public/pl/plmi5.mf
+ texmf-dist/fonts/source/public/pl/plmi6.mf
+ texmf-dist/fonts/source/public/pl/plmi7.mf
+ texmf-dist/fonts/source/public/pl/plmi8.mf
+ texmf-dist/fonts/source/public/pl/plmi9.mf
+ texmf-dist/fonts/source/public/pl/plmib10.mf
+ texmf-dist/fonts/source/public/pl/plmib5.mf
+ texmf-dist/fonts/source/public/pl/plmib7.mf
+ texmf-dist/fonts/source/public/pl/plr10.mf
+ texmf-dist/fonts/source/public/pl/plr12.mf
+ texmf-dist/fonts/source/public/pl/plr17.mf
+ texmf-dist/fonts/source/public/pl/plr5.mf
+ texmf-dist/fonts/source/public/pl/plr6.mf
+ texmf-dist/fonts/source/public/pl/plr7.mf
+ texmf-dist/fonts/source/public/pl/plr8.mf
+ texmf-dist/fonts/source/public/pl/plr9.mf
+ texmf-dist/fonts/source/public/pl/plsl10.mf
+ texmf-dist/fonts/source/public/pl/plsl12.mf
+ texmf-dist/fonts/source/public/pl/plsl8.mf
+ texmf-dist/fonts/source/public/pl/plsl9.mf
+ texmf-dist/fonts/source/public/pl/plsltt10.mf
+ texmf-dist/fonts/source/public/pl/plss10.mf
+ texmf-dist/fonts/source/public/pl/plss12.mf
+ texmf-dist/fonts/source/public/pl/plss17.mf
+ texmf-dist/fonts/source/public/pl/plss8.mf
+ texmf-dist/fonts/source/public/pl/plss9.mf
+ texmf-dist/fonts/source/public/pl/plssbi10.mf
+ texmf-dist/fonts/source/public/pl/plssbx10.mf
+ texmf-dist/fonts/source/public/pl/plssdc10.mf
+ texmf-dist/fonts/source/public/pl/plssi10.mf
+ texmf-dist/fonts/source/public/pl/plssi12.mf
+ texmf-dist/fonts/source/public/pl/plssi17.mf
+ texmf-dist/fonts/source/public/pl/plssi8.mf
+ texmf-dist/fonts/source/public/pl/plssi9.mf
+ texmf-dist/fonts/source/public/pl/plssq8.mf
+ texmf-dist/fonts/source/public/pl/plssqi8.mf
+ texmf-dist/fonts/source/public/pl/plsy10.mf
+ texmf-dist/fonts/source/public/pl/plsy5.mf
+ texmf-dist/fonts/source/public/pl/plsy6.mf
+ texmf-dist/fonts/source/public/pl/plsy7.mf
+ texmf-dist/fonts/source/public/pl/plsy8.mf
+ texmf-dist/fonts/source/public/pl/plsy9.mf
+ texmf-dist/fonts/source/public/pl/pltcsc10.mf
+ texmf-dist/fonts/source/public/pl/pltex10.mf
+ texmf-dist/fonts/source/public/pl/pltex8.mf
+ texmf-dist/fonts/source/public/pl/pltex9.mf
+ texmf-dist/fonts/source/public/pl/plti10.mf
+ texmf-dist/fonts/source/public/pl/plti12.mf
+ texmf-dist/fonts/source/public/pl/plti7.mf
+ texmf-dist/fonts/source/public/pl/plti8.mf
+ texmf-dist/fonts/source/public/pl/plti9.mf
+ texmf-dist/fonts/source/public/pl/pltt10.mf
+ texmf-dist/fonts/source/public/pl/pltt12.mf
+ texmf-dist/fonts/source/public/pl/pltt8.mf
+ texmf-dist/fonts/source/public/pl/pltt9.mf
+ texmf-dist/fonts/source/public/pl/plu10.mf
+ texmf-dist/fonts/source/public/pl/plvtt10.mf
+ texmf-dist/fonts/source/public/pl/polan.mf
+ texmf-dist/fonts/source/public/pl/polkap.mf
+ texmf-dist/fonts/source/public/pl/polkur.mf
+ texmf-dist/fonts/source/public/pl/polmat.mf
+ texmf-dist/fonts/source/public/pl/poltyt.mf
+ texmf-dist/fonts/tfm/public/pl/plb10.tfm
+ texmf-dist/fonts/tfm/public/pl/plbsy10.tfm
+ texmf-dist/fonts/tfm/public/pl/plbsy5.tfm
+ texmf-dist/fonts/tfm/public/pl/plbsy7.tfm
+ texmf-dist/fonts/tfm/public/pl/plbx10.tfm
+ texmf-dist/fonts/tfm/public/pl/plbx12.tfm
+ texmf-dist/fonts/tfm/public/pl/plbx5.tfm
+ texmf-dist/fonts/tfm/public/pl/plbx6.tfm
+ texmf-dist/fonts/tfm/public/pl/plbx7.tfm
+ texmf-dist/fonts/tfm/public/pl/plbx8.tfm
+ texmf-dist/fonts/tfm/public/pl/plbx9.tfm
+ texmf-dist/fonts/tfm/public/pl/plbxsl10.tfm
+ texmf-dist/fonts/tfm/public/pl/plbxti10.tfm
+ texmf-dist/fonts/tfm/public/pl/plcsc10.tfm
+ texmf-dist/fonts/tfm/public/pl/pldunh10.tfm
+ texmf-dist/fonts/tfm/public/pl/plex10.tfm
+ texmf-dist/fonts/tfm/public/pl/plex9.tfm
+ texmf-dist/fonts/tfm/public/pl/plff10.tfm
+ texmf-dist/fonts/tfm/public/pl/plfi10.tfm
+ texmf-dist/fonts/tfm/public/pl/plfib8.tfm
+ texmf-dist/fonts/tfm/public/pl/plinch.tfm
+ texmf-dist/fonts/tfm/public/pl/plitt10.tfm
+ texmf-dist/fonts/tfm/public/pl/plmi10.tfm
+ texmf-dist/fonts/tfm/public/pl/plmi12.tfm
+ texmf-dist/fonts/tfm/public/pl/plmi5.tfm
+ texmf-dist/fonts/tfm/public/pl/plmi6.tfm
+ texmf-dist/fonts/tfm/public/pl/plmi7.tfm
+ texmf-dist/fonts/tfm/public/pl/plmi8.tfm
+ texmf-dist/fonts/tfm/public/pl/plmi9.tfm
+ texmf-dist/fonts/tfm/public/pl/plmib10.tfm
+ texmf-dist/fonts/tfm/public/pl/plmib5.tfm
+ texmf-dist/fonts/tfm/public/pl/plmib7.tfm
+ texmf-dist/fonts/tfm/public/pl/plr10.tfm
+ texmf-dist/fonts/tfm/public/pl/plr12.tfm
+ texmf-dist/fonts/tfm/public/pl/plr17.tfm
+ texmf-dist/fonts/tfm/public/pl/plr5.tfm
+ texmf-dist/fonts/tfm/public/pl/plr6.tfm
+ texmf-dist/fonts/tfm/public/pl/plr7.tfm
+ texmf-dist/fonts/tfm/public/pl/plr8.tfm
+ texmf-dist/fonts/tfm/public/pl/plr9.tfm
+ texmf-dist/fonts/tfm/public/pl/plsl10.tfm
+ texmf-dist/fonts/tfm/public/pl/plsl12.tfm
+ texmf-dist/fonts/tfm/public/pl/plsl8.tfm
+ texmf-dist/fonts/tfm/public/pl/plsl9.tfm
+ texmf-dist/fonts/tfm/public/pl/plsltt10.tfm
+ texmf-dist/fonts/tfm/public/pl/plss10.tfm
+ texmf-dist/fonts/tfm/public/pl/plss12.tfm
+ texmf-dist/fonts/tfm/public/pl/plss17.tfm
+ texmf-dist/fonts/tfm/public/pl/plss8.tfm
+ texmf-dist/fonts/tfm/public/pl/plss9.tfm
+ texmf-dist/fonts/tfm/public/pl/plssbi10.tfm
+ texmf-dist/fonts/tfm/public/pl/plssbx10.tfm
+ texmf-dist/fonts/tfm/public/pl/plssdc10.tfm
+ texmf-dist/fonts/tfm/public/pl/plssi10.tfm
+ texmf-dist/fonts/tfm/public/pl/plssi12.tfm
+ texmf-dist/fonts/tfm/public/pl/plssi17.tfm
+ texmf-dist/fonts/tfm/public/pl/plssi8.tfm
+ texmf-dist/fonts/tfm/public/pl/plssi9.tfm
+ texmf-dist/fonts/tfm/public/pl/plssq8.tfm
+ texmf-dist/fonts/tfm/public/pl/plssqi8.tfm
+ texmf-dist/fonts/tfm/public/pl/plsy10.tfm
+ texmf-dist/fonts/tfm/public/pl/plsy5.tfm
+ texmf-dist/fonts/tfm/public/pl/plsy6.tfm
+ texmf-dist/fonts/tfm/public/pl/plsy7.tfm
+ texmf-dist/fonts/tfm/public/pl/plsy8.tfm
+ texmf-dist/fonts/tfm/public/pl/plsy9.tfm
+ texmf-dist/fonts/tfm/public/pl/pltcsc10.tfm
+ texmf-dist/fonts/tfm/public/pl/pltex10.tfm
+ texmf-dist/fonts/tfm/public/pl/pltex8.tfm
+ texmf-dist/fonts/tfm/public/pl/pltex9.tfm
+ texmf-dist/fonts/tfm/public/pl/plti10.tfm
+ texmf-dist/fonts/tfm/public/pl/plti12.tfm
+ texmf-dist/fonts/tfm/public/pl/plti7.tfm
+ texmf-dist/fonts/tfm/public/pl/plti8.tfm
+ texmf-dist/fonts/tfm/public/pl/plti9.tfm
+ texmf-dist/fonts/tfm/public/pl/pltt10.tfm
+ texmf-dist/fonts/tfm/public/pl/pltt12.tfm
+ texmf-dist/fonts/tfm/public/pl/pltt8.tfm
+ texmf-dist/fonts/tfm/public/pl/pltt9.tfm
+ texmf-dist/fonts/tfm/public/pl/plu10.tfm
+ texmf-dist/fonts/tfm/public/pl/plvtt10.tfm
+ texmf-dist/fonts/type1/public/pl/plb10.pfb
+ texmf-dist/fonts/type1/public/pl/plb10.pfm
+ texmf-dist/fonts/type1/public/pl/plbsy10.pfb
+ texmf-dist/fonts/type1/public/pl/plbsy10.pfm
+ texmf-dist/fonts/type1/public/pl/plbx10.pfb
+ texmf-dist/fonts/type1/public/pl/plbx10.pfm
+ texmf-dist/fonts/type1/public/pl/plbx12.pfb
+ texmf-dist/fonts/type1/public/pl/plbx12.pfm
+ texmf-dist/fonts/type1/public/pl/plbx5.pfb
+ texmf-dist/fonts/type1/public/pl/plbx5.pfm
+ texmf-dist/fonts/type1/public/pl/plbx6.pfb
+ texmf-dist/fonts/type1/public/pl/plbx6.pfm
+ texmf-dist/fonts/type1/public/pl/plbx7.pfb
+ texmf-dist/fonts/type1/public/pl/plbx7.pfm
+ texmf-dist/fonts/type1/public/pl/plbx8.pfb
+ texmf-dist/fonts/type1/public/pl/plbx8.pfm
+ texmf-dist/fonts/type1/public/pl/plbx9.pfb
+ texmf-dist/fonts/type1/public/pl/plbx9.pfm
+ texmf-dist/fonts/type1/public/pl/plbxsl10.pfb
+ texmf-dist/fonts/type1/public/pl/plbxsl10.pfm
+ texmf-dist/fonts/type1/public/pl/plbxti10.pfb
+ texmf-dist/fonts/type1/public/pl/plbxti10.pfm
+ texmf-dist/fonts/type1/public/pl/plcsc10.pfb
+ texmf-dist/fonts/type1/public/pl/plcsc10.pfm
+ texmf-dist/fonts/type1/public/pl/pldunh10.pfb
+ texmf-dist/fonts/type1/public/pl/pldunh10.pfm
+ texmf-dist/fonts/type1/public/pl/plex10.pfb
+ texmf-dist/fonts/type1/public/pl/plex10.pfm
+ texmf-dist/fonts/type1/public/pl/plex9.pfb
+ texmf-dist/fonts/type1/public/pl/plex9.pfm
+ texmf-dist/fonts/type1/public/pl/plff10.pfb
+ texmf-dist/fonts/type1/public/pl/plff10.pfm
+ texmf-dist/fonts/type1/public/pl/plfi10.pfb
+ texmf-dist/fonts/type1/public/pl/plfi10.pfm
+ texmf-dist/fonts/type1/public/pl/plfib8.pfb
+ texmf-dist/fonts/type1/public/pl/plfib8.pfm
+ texmf-dist/fonts/type1/public/pl/plinch.pfb
+ texmf-dist/fonts/type1/public/pl/plinch.pfm
+ texmf-dist/fonts/type1/public/pl/plitt10.pfb
+ texmf-dist/fonts/type1/public/pl/plitt10.pfm
+ texmf-dist/fonts/type1/public/pl/plmi10.pfb
+ texmf-dist/fonts/type1/public/pl/plmi10.pfm
+ texmf-dist/fonts/type1/public/pl/plmi12.pfb
+ texmf-dist/fonts/type1/public/pl/plmi12.pfm
+ texmf-dist/fonts/type1/public/pl/plmi5.pfb
+ texmf-dist/fonts/type1/public/pl/plmi5.pfm
+ texmf-dist/fonts/type1/public/pl/plmi6.pfb
+ texmf-dist/fonts/type1/public/pl/plmi6.pfm
+ texmf-dist/fonts/type1/public/pl/plmi7.pfb
+ texmf-dist/fonts/type1/public/pl/plmi7.pfm
+ texmf-dist/fonts/type1/public/pl/plmi8.pfb
+ texmf-dist/fonts/type1/public/pl/plmi8.pfm
+ texmf-dist/fonts/type1/public/pl/plmi9.pfb
+ texmf-dist/fonts/type1/public/pl/plmi9.pfm
+ texmf-dist/fonts/type1/public/pl/plmib10.pfb
+ texmf-dist/fonts/type1/public/pl/plmib10.pfm
+ texmf-dist/fonts/type1/public/pl/plr10.pfb
+ texmf-dist/fonts/type1/public/pl/plr10.pfm
+ texmf-dist/fonts/type1/public/pl/plr12.pfb
+ texmf-dist/fonts/type1/public/pl/plr12.pfm
+ texmf-dist/fonts/type1/public/pl/plr17.pfb
+ texmf-dist/fonts/type1/public/pl/plr17.pfm
+ texmf-dist/fonts/type1/public/pl/plr5.pfb
+ texmf-dist/fonts/type1/public/pl/plr5.pfm
+ texmf-dist/fonts/type1/public/pl/plr6.pfb
+ texmf-dist/fonts/type1/public/pl/plr6.pfm
+ texmf-dist/fonts/type1/public/pl/plr7.pfb
+ texmf-dist/fonts/type1/public/pl/plr7.pfm
+ texmf-dist/fonts/type1/public/pl/plr8.pfb
+ texmf-dist/fonts/type1/public/pl/plr8.pfm
+ texmf-dist/fonts/type1/public/pl/plr9.pfb
+ texmf-dist/fonts/type1/public/pl/plr9.pfm
+ texmf-dist/fonts/type1/public/pl/plsl10.pfb
+ texmf-dist/fonts/type1/public/pl/plsl10.pfm
+ texmf-dist/fonts/type1/public/pl/plsl12.pfb
+ texmf-dist/fonts/type1/public/pl/plsl12.pfm
+ texmf-dist/fonts/type1/public/pl/plsl8.pfb
+ texmf-dist/fonts/type1/public/pl/plsl8.pfm
+ texmf-dist/fonts/type1/public/pl/plsl9.pfb
+ texmf-dist/fonts/type1/public/pl/plsl9.pfm
+ texmf-dist/fonts/type1/public/pl/plsltt10.pfb
+ texmf-dist/fonts/type1/public/pl/plsltt10.pfm
+ texmf-dist/fonts/type1/public/pl/plss10.pfb
+ texmf-dist/fonts/type1/public/pl/plss10.pfm
+ texmf-dist/fonts/type1/public/pl/plss12.pfb
+ texmf-dist/fonts/type1/public/pl/plss12.pfm
+ texmf-dist/fonts/type1/public/pl/plss17.pfb
+ texmf-dist/fonts/type1/public/pl/plss17.pfm
+ texmf-dist/fonts/type1/public/pl/plss8.pfb
+ texmf-dist/fonts/type1/public/pl/plss8.pfm
+ texmf-dist/fonts/type1/public/pl/plss9.pfb
+ texmf-dist/fonts/type1/public/pl/plss9.pfm
+ texmf-dist/fonts/type1/public/pl/plssbi10.pfb
+ texmf-dist/fonts/type1/public/pl/plssbi10.pfm
+ texmf-dist/fonts/type1/public/pl/plssbx10.pfb
+ texmf-dist/fonts/type1/public/pl/plssbx10.pfm
+ texmf-dist/fonts/type1/public/pl/plssdc10.pfb
+ texmf-dist/fonts/type1/public/pl/plssdc10.pfm
+ texmf-dist/fonts/type1/public/pl/plssi10.pfb
+ texmf-dist/fonts/type1/public/pl/plssi10.pfm
+ texmf-dist/fonts/type1/public/pl/plssi12.pfb
+ texmf-dist/fonts/type1/public/pl/plssi12.pfm
+ texmf-dist/fonts/type1/public/pl/plssi17.pfb
+ texmf-dist/fonts/type1/public/pl/plssi17.pfm
+ texmf-dist/fonts/type1/public/pl/plssi8.pfb
+ texmf-dist/fonts/type1/public/pl/plssi8.pfm
+ texmf-dist/fonts/type1/public/pl/plssi9.pfb
+ texmf-dist/fonts/type1/public/pl/plssi9.pfm
+ texmf-dist/fonts/type1/public/pl/plssq8.pfb
+ texmf-dist/fonts/type1/public/pl/plssq8.pfm
+ texmf-dist/fonts/type1/public/pl/plssqi8.pfb
+ texmf-dist/fonts/type1/public/pl/plssqi8.pfm
+ texmf-dist/fonts/type1/public/pl/plsy10.pfb
+ texmf-dist/fonts/type1/public/pl/plsy10.pfm
+ texmf-dist/fonts/type1/public/pl/plsy5.pfb
+ texmf-dist/fonts/type1/public/pl/plsy5.pfm
+ texmf-dist/fonts/type1/public/pl/plsy6.pfb
+ texmf-dist/fonts/type1/public/pl/plsy6.pfm
+ texmf-dist/fonts/type1/public/pl/plsy7.pfb
+ texmf-dist/fonts/type1/public/pl/plsy7.pfm
+ texmf-dist/fonts/type1/public/pl/plsy8.pfb
+ texmf-dist/fonts/type1/public/pl/plsy8.pfm
+ texmf-dist/fonts/type1/public/pl/plsy9.pfb
+ texmf-dist/fonts/type1/public/pl/plsy9.pfm
+ texmf-dist/fonts/type1/public/pl/pltcsc10.pfb
+ texmf-dist/fonts/type1/public/pl/pltcsc10.pfm
+ texmf-dist/fonts/type1/public/pl/pltex10.pfb
+ texmf-dist/fonts/type1/public/pl/pltex10.pfm
+ texmf-dist/fonts/type1/public/pl/pltex8.pfb
+ texmf-dist/fonts/type1/public/pl/pltex8.pfm
+ texmf-dist/fonts/type1/public/pl/pltex9.pfb
+ texmf-dist/fonts/type1/public/pl/pltex9.pfm
+ texmf-dist/fonts/type1/public/pl/plti10.pfb
+ texmf-dist/fonts/type1/public/pl/plti10.pfm
+ texmf-dist/fonts/type1/public/pl/plti12.pfb
+ texmf-dist/fonts/type1/public/pl/plti12.pfm
+ texmf-dist/fonts/type1/public/pl/plti7.pfb
+ texmf-dist/fonts/type1/public/pl/plti7.pfm
+ texmf-dist/fonts/type1/public/pl/plti8.pfb
+ texmf-dist/fonts/type1/public/pl/plti8.pfm
+ texmf-dist/fonts/type1/public/pl/plti9.pfb
+ texmf-dist/fonts/type1/public/pl/plti9.pfm
+ texmf-dist/fonts/type1/public/pl/pltt10.pfb
+ texmf-dist/fonts/type1/public/pl/pltt10.pfm
+ texmf-dist/fonts/type1/public/pl/pltt12.pfb
+ texmf-dist/fonts/type1/public/pl/pltt12.pfm
+ texmf-dist/fonts/type1/public/pl/pltt8.pfb
+ texmf-dist/fonts/type1/public/pl/pltt8.pfm
+ texmf-dist/fonts/type1/public/pl/pltt9.pfb
+ texmf-dist/fonts/type1/public/pl/pltt9.pfm
+ texmf-dist/fonts/type1/public/pl/plu10.pfb
+ texmf-dist/fonts/type1/public/pl/plu10.pfm
+ texmf-dist/fonts/type1/public/pl/plvtt10.pfb
+ texmf-dist/fonts/type1/public/pl/plvtt10.pfm
+catalogue-version
+catalogue-date 2007-01-08 00:37:16 +0100
+catalogue-ctan /macros/latex/contrib/gene/pl
+catalogue-license unknown
+
+name placeins
+category Package
+revision 1199
+shortdesc Control float placement.
+longdesc Defines a \FloatBarrier command, beyond which floats may not
+longdesc pass; useful, for example, to ensure all floats for a section
+longdesc appear before the next \section command.
+docfiles size=1925
+ texmf-dist/doc/latex/placeins/placeins.txt
+runfiles size=4087
+ texmf-dist/tex/latex/placeins/placeins.sty
+catalogue-version 2.2
+catalogue-date 2007-02-24 15:09:57 +0100
+catalogue-ctan /macros/latex/contrib/placeins
+catalogue-license pd
+
+name plain
+category Package
+revision 3308
+shortdesc The Plain TeX format.
+longdesc The file plain.tex is used to build the Plain TeX format, as
+longdesc described in the TeXbook.
+runfiles size=156592
+ texmf-dist/makeindex/plain/plaintex.ist
+ texmf-dist/tex/plain/base/fontchart.tex
+ texmf-dist/tex/plain/base/gkpmac.tex
+ texmf-dist/tex/plain/base/letter.tex
+ texmf-dist/tex/plain/base/list.tex
+ texmf-dist/tex/plain/base/llist.tex
+ texmf-dist/tex/plain/base/manmac.tex
+ texmf-dist/tex/plain/base/mftmac.tex
+ texmf-dist/tex/plain/base/mptmac.tex
+ texmf-dist/tex/plain/base/picmac.tex
+ texmf-dist/tex/plain/base/plain.tex
+ texmf-dist/tex/plain/base/story.tex
+ texmf-dist/tex/plain/base/testfont.tex
+ texmf-dist/tex/plain/base/webmac.tex
+ texmf-dist/tex/plain/base/wlist.tex
+ texmf-dist/tex/plain/config/aleph.ini
+ texmf-dist/tex/plain/config/bplain.ini
+ texmf-dist/tex/plain/config/etex.ini
+ texmf-dist/tex/plain/config/language.def
+ texmf-dist/tex/plain/config/omega.ini
+ texmf-dist/tex/plain/config/pdfbplain.ini
+ texmf-dist/tex/plain/config/pdfetex.ini
+ texmf-dist/tex/plain/config/pdftex.ini
+ texmf-dist/tex/plain/config/tex.ini
+ texmf-dist/tex/plain/config/xetex.ini
+catalogue-version 3.1415926
+catalogue-date 2007-01-23 23:47:03 +0100
+catalogue-ctan /macros/plain/base
+catalogue-license knuth
+
+name plari
+category Package
+revision 2096
+shortdesc Typesetting stageplay scripts.
+longdesc Plari (the name comes from the Finnish usage for the working
+longdesc copy of a play) is a report-alike class, without section
+longdesc headings, and with paragraphs vertically separated rather than
+longdesc indented.
+docfiles size=157817
+ texmf-dist/doc/latex/plari/COPYING
+ texmf-dist/doc/latex/plari/README details="Readme"
+ texmf-dist/doc/latex/plari/plari.pdf details="Package documentation"
+srcfiles size=8338
+ texmf-dist/source/latex/plari/Makefile
+ texmf-dist/source/latex/plari/plari.dtx
+ texmf-dist/source/latex/plari/plari.ins
+runfiles size=4083
+ texmf-dist/tex/latex/plari/plari.cls
+catalogue-version
+catalogue-date 2007-02-26 21:26:45 +0100
+catalogue-ctan /macros/latex/contrib/plari
+catalogue-license gpl
+
+name plates
+category Package
+revision 1200
+shortdesc Arrange for "plates" sections of documents.
+longdesc The plates package provides a simple facility for inserting
+longdesc colour figures in a document when they should be gathered and
+longdesc printed together as in a book's section of colour plates. The
+longdesc package provides a plate environment that takes the place of
+longdesc the figure environment for such colour images.
+docfiles size=101908
+ texmf-dist/doc/latex/plates/README details="Readme"
+ texmf-dist/doc/latex/plates/plates.pdf details="Package documentation"
+ texmf-dist/doc/latex/plates/plates.tex
+runfiles size=17815
+ texmf-dist/tex/latex/plates/endplate.sty
+ texmf-dist/tex/latex/plates/plates.sty
+catalogue-version 0.1
+catalogue-date 2007-01-08 00:37:16 +0100
+catalogue-ctan /macros/latex/contrib/plates
+catalogue-license lppl
+
+name play
+category Package
+revision 4605
+shortdesc Typeset drama using LaTeX.
+longdesc A class and style file that supports the typesetting of plays,
+longdesc including options for line numbering.
+docfiles size=414
+ texmf-dist/doc/latex/play/README
+srcfiles size=12737
+ texmf-dist/source/latex/play/play.dtx
+ texmf-dist/source/latex/play/play.ins
+runfiles size=8332
+ texmf-dist/tex/latex/play/play.cls
+ texmf-dist/tex/latex/play/play.sty
+catalogue-version
+catalogue-date 2007-01-13 20:56:44 +0100
+catalogue-ctan /macros/latex/contrib/play
+catalogue-license lppl
+
+name plgraph
+category Package
+revision 621
+docfiles size=7504
+ texmf-dist/doc/plain/plgraph/00readme.txt
+ texmf-dist/doc/plain/plgraph/autopict.ins
+ texmf-dist/doc/plain/plgraph/exmplcol.tex
+ texmf-dist/doc/plain/plgraph/exmplgrf.tex
+ texmf-dist/doc/plain/plgraph/exmplpfg.tex
+ texmf-dist/doc/plain/plgraph/exmplpic.tex
+srcfiles size=3169
+ texmf-dist/source/plain/plgraph/autopict.ins
+runfiles size=29650
+ texmf-dist/tex/plain/plgraph/autopict.sty
+ texmf-dist/tex/plain/plgraph/color.tex
+ texmf-dist/tex/plain/plgraph/graphicx.tex
+ texmf-dist/tex/plain/plgraph/miniltx.tex
+ texmf-dist/tex/plain/plgraph/picture.tex
+ texmf-dist/tex/plain/plgraph/psfrag.tex
+
+name plnfss
+category Package
+revision 621
+shortdesc Font selection for Plain TeX.
+longdesc Plnfss is a set of macros to provide easy font access (somewhat
+longdesc similar to NFSS but with some limitations) with Plain TeX.
+longdesc Plnfss can automatically make use of PSNFSS fd files, i.e.,
+longdesc when an Adobe Type 1 is used the relevant fd file will be
+longdesc loaded automatically. For cmr-like fonts (ec, vnr, csr or plr
+longdesc fonts), a special format called pfd (plain fd) is required and
+longdesc must be loaded manually. See ot1cmr.pfd for further
+longdesc information.
+docfiles size=22314
+ texmf-dist/doc/plain/plnfss/LPPL.txt
+ texmf-dist/doc/plain/plnfss/plnfss.txt
+ texmf-dist/doc/plain/plnfss/test-plnfss.tex
+runfiles size=40160
+ texmf-dist/tex/plain/plnfss/MIKmathf.tex
+ texmf-dist/tex/plain/plnfss/ams.pfd
+ texmf-dist/tex/plain/plnfss/il2cm.pfd
+ texmf-dist/tex/plain/plnfss/il2cmr.pfd
+ texmf-dist/tex/plain/plnfss/ly1lm.pfd
+ texmf-dist/tex/plain/plnfss/ot1cm.pfd
+ texmf-dist/tex/plain/plnfss/ot1cmr.pfd
+ texmf-dist/tex/plain/plnfss/ot4cm.pfd
+ texmf-dist/tex/plain/plnfss/plnfss.tex
+ texmf-dist/tex/plain/plnfss/qxlm.pfd
+ texmf-dist/tex/plain/plnfss/t1lm.pfd
+ texmf-dist/tex/plain/plnfss/t5cm.pfd
+ texmf-dist/tex/plain/plnfss/t5cmr.pfd
+ texmf-dist/tex/plain/plnfss/t5lm.pfd
+ texmf-dist/tex/plain/plnfss/ts1lm.pfd
+catalogue-version 1.1
+catalogue-date 2007-03-11 14:35:09 +0100
+catalogue-ctan /macros/plain/plnfss
+catalogue-license lppl
+
+name plweb
+category Package
+revision 1487
+docfiles size=45440
+ texmf-dist/doc/latex/plweb/pl.dvi
+ texmf-dist/doc/latex/plweb/pl.tex
+srcfiles size=44990
+ texmf-dist/source/latex/plweb/Makefile
+ texmf-dist/source/latex/plweb/README
+ texmf-dist/source/latex/plweb/pl.dtx
+ texmf-dist/source/latex/plweb/pl.ins
+ texmf-dist/source/latex/plweb/sample.pl
+runfiles size=9459
+ texmf-dist/tex/latex/plweb/pcode.sty
+ texmf-dist/tex/latex/plweb/pl.cfg
+ texmf-dist/tex/latex/plweb/pl.sty
+
+name pmgraph
+category Package
+revision 1487
+shortdesc "Poor man's" graphics.
+longdesc A set of extensions to LaTeX picture environment, including a
+longdesc wider range of vectors, and a lot more box frame styles.
+docfiles size=88864
+ texmf-dist/doc/latex/pmgraph/pmgraph.dvi
+ texmf-dist/doc/latex/pmgraph/pmgraph.tex
+runfiles size=76279
+ texmf-dist/tex/latex/pmgraph/pmgraph.sty
+catalogue-version 1.0
+catalogue-date 2007-01-13 20:56:44 +0100
+catalogue-ctan /macros/latex/contrib/pmgraph
+catalogue-license unknown
+
+name poemscol
+category Package
+revision 4675
+shortdesc Typesetting Critical Editions of Poetry.
+longdesc Poemscol is a package of LaTeX macros for typesetting critical
+longdesc editions of poetry. Its features include automatic
+longdesc linenumbering, generation of separate endnotes sections for
+longdesc emendations, textual collations, and explanatory notes, special
+longdesc marking for cases in which page breaks occur during stanza
+longdesc breaks, running headers of the form ‘Notes to pp. xx–yy‘
+longdesc for the notes sections, index of titles and first lines, and
+longdesc automatic generation of a table of contents.
+docfiles size=515749
+ texmf-dist/doc/latex/poemscol/README details="Readme"
+ texmf-dist/doc/latex/poemscol/poemscol.pdf details="Documented source"
+ texmf-dist/doc/latex/poemscol/poemscolcheatsheet.pdf details="Short index"
+srcfiles size=293743
+ texmf-dist/source/latex/poemscol/poemscol.dtx
+ texmf-dist/source/latex/poemscol/poemscol.ins
+runfiles size=88002
+ texmf-dist/tex/latex/poemscol/poemscol.sty
+catalogue-version 2.53
+catalogue-date 2007-07-17 16:11:10 +0200
+catalogue-ctan /macros/latex/contrib/poemscol
+catalogue-license lppl
+
+name polski
+category Package
+revision 4744
+shortdesc Typeset Polish documents with LaTeX and Polish fonts.
+longdesc Tools to typeset documents in Polish using LaTeX2e with Polish
+longdesc fonts (the so-called PL fonts), EC fonts or CM fonts. (This
+longdesc package was previously known as platex, but has been renamed to
+longdesc resolve a name clash with the LaTeX system in the
+depend pl
+depend hyphen-polish
+docfiles size=50266
+ texmf-dist/doc/latex/polski/conowego.txt
+ texmf-dist/doc/latex/polski/czytaj.txt details="Readme (Polish)" language="pl"
+ texmf-dist/doc/latex/polski/language.dat
+ texmf-dist/doc/latex/polski/plhyph.tex
+ texmf-dist/doc/latex/polski/readme.txt details="Readme (English)"
+srcfiles size=122260
+ texmf-dist/source/latex/polski/ot1patch.dtx
+ texmf-dist/source/latex/polski/ot1patch.ins
+ texmf-dist/source/latex/polski/platex.ins
+ texmf-dist/source/latex/polski/plfonts.fdd
+ texmf-dist/source/latex/polski/plprefix.dtx
+ texmf-dist/source/latex/polski/plprefix.ins
+ texmf-dist/source/latex/polski/polski.dtx
+ texmf-dist/source/latex/polski/strony.dtx
+runfiles size=52362
+ texmf-dist/tex/latex/polski/amigapl.def
+ texmf-dist/tex/latex/polski/mazovia.def
+ texmf-dist/tex/latex/polski/omlplcm.fd
+ texmf-dist/tex/latex/polski/omlplm.fd
+ texmf-dist/tex/latex/polski/omsplsy.fd
+ texmf-dist/tex/latex/polski/omxplex.fd
+ texmf-dist/tex/latex/polski/ot1patch.sty
+ texmf-dist/tex/latex/polski/ot4ccr.fd
+ texmf-dist/tex/latex/polski/ot4cmdh.fd
+ texmf-dist/tex/latex/polski/ot4cmfib.fd
+ texmf-dist/tex/latex/polski/ot4cmfr.fd
+ texmf-dist/tex/latex/polski/ot4cmr.fd
+ texmf-dist/tex/latex/polski/ot4cmss.fd
+ texmf-dist/tex/latex/polski/ot4cmtt.fd
+ texmf-dist/tex/latex/polski/plprefix.sty
+ texmf-dist/tex/latex/polski/polski.sty
+ texmf-dist/tex/latex/polski/qxenc.def
+catalogue-version 1.2.4
+catalogue-date 2007-08-15 20:32:01 +0200
+catalogue-ctan /macros/latex/contrib/polski
+catalogue-license lppl
+
+name polyglot
+category Package
+revision 1487
+docfiles size=5484
+ texmf-dist/doc/latex/polyglot/sample.dvi
+ texmf-dist/doc/latex/polyglot/sample.tex
+srcfiles size=104728
+ texmf-dist/source/latex/polyglot/langs/english.ld
+ texmf-dist/source/latex/polyglot/langs/french.ld
+ texmf-dist/source/latex/polyglot/langs/french.ot1
+ texmf-dist/source/latex/polyglot/langs/german.ld
+ texmf-dist/source/latex/polyglot/langs/german.ot1
+ texmf-dist/source/latex/polyglot/langs/r_hebrew.ld
+ texmf-dist/source/latex/polyglot/langs/spanish.ld
+ texmf-dist/source/latex/polyglot/langs/spanish.ot1
+ texmf-dist/source/latex/polyglot/polyglot.dtx
+ texmf-dist/source/latex/polyglot/polyglot.ins
+ texmf-dist/source/latex/polyglot/polyglot.ltx
+runfiles size=41313
+ texmf-dist/tex/latex/polyglot/polyglot.cfg
+ texmf-dist/tex/latex/polyglot/polyglot.def
+ texmf-dist/tex/latex/polyglot/polyglot.sty
+
+name polynom
+category Package
+revision 1781
+shortdesc Macros for manipulating polynomials.
+longdesc The polynom package implements macros for manipulating
+longdesc polynomials, for example it can typeset long polynomial
+longdesc divisions. The main test case and application is the polynomial
+longdesc ring in one variable with rational coefficients.
+docfiles size=276717
+ texmf-dist/doc/latex/polynom/README details="Readme"
+ texmf-dist/doc/latex/polynom/polydemo.pdf details="Example of package use"
+ texmf-dist/doc/latex/polynom/polydemo.tex
+ texmf-dist/doc/latex/polynom/polynom.pdf details="Package documentation"
+srcfiles size=138638
+ texmf-dist/source/latex/polynom/polynom.dtx
+ texmf-dist/source/latex/polynom/polynom.ins
+runfiles size=61749
+ texmf-dist/tex/latex/polynom/polynom.sty
+catalogue-version 0.17
+catalogue-date 2007-01-13 23:45:25 +0100
+catalogue-ctan /macros/latex/contrib/polynom
+catalogue-license lppl
+
+name polynomial
+category Package
+revision 4060
+shortdesc Typeset (univariate) polynomials.
+longdesc The package offers an easy way to write (univariate)
+longdesc polynomials and rational functions. It defines two commands,
+longdesc one for polynomials \polynomial{coeffs} and one for rational
+longdesc functions \polynomialfrac{Numerator}{Denominator}. Both
+longdesc commands take lists of coefficients as arguments, and offer
+longdesc limited optional behaviour.
+docfiles size=144681
+ texmf-dist/doc/latex/polynomial/README
+ texmf-dist/doc/latex/polynomial/polynomial.pdf details="Package documentation"
+srcfiles size=15439
+ texmf-dist/source/latex/polynomial/polynomial.dtx
+ texmf-dist/source/latex/polynomial/polynomial.ins
+runfiles size=6374
+ texmf-dist/tex/latex/polynomial/polynomial.sty
+catalogue-version 1.0
+catalogue-date 2007-02-25 09:43:45 +0100
+catalogue-ctan /macros/latex/contrib/polynomial
+catalogue-license lppl
+
+name polytable
+category Package
+revision 2417
+shortdesc Tabular-like environments with named columns.
+longdesc This package implements a variant of tabular-like environments
+longdesc where columns can be given a name and entries can flexibly be
+longdesc placed between arbitrary columns. Complex alignment-based
+longdesc layouts, for example for program code, are possible.
+docfiles size=355
+ texmf-dist/doc/latex/polytable/README
+srcfiles size=84226
+ texmf-dist/source/latex/polytable/polytable.dtx
+ texmf-dist/source/latex/polytable/polytable.ins
+runfiles size=26330
+ texmf-dist/tex/latex/polytable/polytable.sty
+catalogue-version 0.8.2
+catalogue-date 2007-01-13 23:45:25 +0100
+catalogue-ctan /macros/latex/contrib/polytable
+catalogue-license lppl
+
+name postcards
+category Package
+revision 1487
+shortdesc Facilitates mass-mailing of postcards (junkmail).
+longdesc A modification of the standard LaTeX letter class which prints
+longdesc multiple, pre-stamped, 5.5" by 3.5" postcards (a US standard
+longdesc size) via the envlab and mailing packages. An address database
+longdesc is employed to address the front side of each postcard and a
+longdesc message is printed on the back side of all. An illustrative
+longdesc example is provided.
+docfiles size=4375
+ texmf-dist/doc/latex/postcards/README
+ texmf-dist/doc/latex/postcards/datasmp.txt
+ texmf-dist/doc/latex/postcards/pcardsmp.dvi
+ texmf-dist/doc/latex/postcards/pcardsmp.tex
+runfiles size=2754
+ texmf-dist/tex/latex/postcards/postcards.cls
+catalogue-version
+catalogue-date 2007-01-13 23:45:25 +0100
+catalogue-ctan /macros/latex/contrib/postcards
+catalogue-license lppl
+
+name powerdot
+category Package
+revision 1842
+shortdesc A presentation class.
+longdesc Powerdot is a presentation class for LaTeX that allows for the
+longdesc quick and easy development of professional presentations. It
+longdesc comes with many tools that enhance presentations and aid the
+longdesc presenter. Examples are automatic overlays, personal notes and
+longdesc a handout mode. To view a presentation, DVI, PS or PDF output
+longdesc can be used. A powerful template system is available to easily
+longdesc develop new styles. A LyX layout file is provided.
+docfiles size=498352
+ texmf-dist/doc/latex/powerdot/README details="Readme"
+ texmf-dist/doc/latex/powerdot/manifest.txt
+ texmf-dist/doc/latex/powerdot/powerdot-example.lyx
+ texmf-dist/doc/latex/powerdot/powerdot-example.tex
+ texmf-dist/doc/latex/powerdot/powerdot-example1.tex
+ texmf-dist/doc/latex/powerdot/powerdot-example2.tex
+ texmf-dist/doc/latex/powerdot/powerdot-example3.tex
+ texmf-dist/doc/latex/powerdot/powerdot.layout
+ texmf-dist/doc/latex/powerdot/powerdot.pdf
+srcfiles size=313175
+ texmf-dist/source/latex/powerdot/powerdot.dtx
+runfiles size=152555
+ texmf-dist/tex/latex/powerdot/powerdot-aggie.sty
+ texmf-dist/tex/latex/powerdot/powerdot-bframe.sty
+ texmf-dist/tex/latex/powerdot/powerdot-ciment.sty
+ texmf-dist/tex/latex/powerdot/powerdot-default.ps
+ texmf-dist/tex/latex/powerdot/powerdot-default.sty
+ texmf-dist/tex/latex/powerdot/powerdot-elcolors.sty
+ texmf-dist/tex/latex/powerdot/powerdot-fyma.sty
+ texmf-dist/tex/latex/powerdot/powerdot-horatio.sty
+ texmf-dist/tex/latex/powerdot/powerdot-husky.sty
+ texmf-dist/tex/latex/powerdot/powerdot-ikeda.sty
+ texmf-dist/tex/latex/powerdot/powerdot-jefka.sty
+ texmf-dist/tex/latex/powerdot/powerdot-klope.sty
+ texmf-dist/tex/latex/powerdot/powerdot-paintings.sty
+ texmf-dist/tex/latex/powerdot/powerdot-pazik.sty
+ texmf-dist/tex/latex/powerdot/powerdot-sailor.sty
+ texmf-dist/tex/latex/powerdot/powerdot-simple.sty
+ texmf-dist/tex/latex/powerdot/powerdot-tycja.sty
+ texmf-dist/tex/latex/powerdot/powerdot-upen.sty
+ texmf-dist/tex/latex/powerdot/powerdot.cls
+catalogue-version 1.3
+catalogue-date 2007-01-05 16:07:21 +0100
+catalogue-ctan /macros/latex/contrib/powerdot
+catalogue-license lppl
+
+name ppower4
+category Package
+revision 1211
+shortdesc A postprocessor for PDF presentations.
+longdesc Ppower4 is post processor for PDF presentations created by
+longdesc pdf(La)TeX. It can be used to prepare presentations which
+longdesc include pages building up step by step when viewed with Acrobat
+longdesc Reader (v4 and later). The software is written in Java.
+docfiles size=1679762
+ texmf-dist/doc/latex/ppower4/bericht.pdf
+ texmf-dist/doc/latex/ppower4/demo/demo.tex
+ texmf-dist/doc/latex/ppower4/demo/matrixb1.eps
+ texmf-dist/doc/latex/ppower4/demo/matrixb1.fig
+ texmf-dist/doc/latex/ppower4/demo/matrixb1.mp
+ texmf-dist/doc/latex/ppower4/demo/matrixb1.mps
+ texmf-dist/doc/latex/ppower4/demo/matrixb2.eps
+ texmf-dist/doc/latex/ppower4/demo/matrixb2.fig
+ texmf-dist/doc/latex/ppower4/demo/matrixb2.mp
+ texmf-dist/doc/latex/ppower4/demo/matrixb2.mps
+ texmf-dist/doc/latex/ppower4/download.html
+ texmf-dist/doc/latex/ppower4/edemo/edemo.tex
+ texmf-dist/doc/latex/ppower4/edemo/matrixb1e.eps
+ texmf-dist/doc/latex/ppower4/edemo/matrixb1e.fig
+ texmf-dist/doc/latex/ppower4/edemo/matrixb1e.mp
+ texmf-dist/doc/latex/ppower4/edemo/matrixb1e.mps
+ texmf-dist/doc/latex/ppower4/edemo/matrixb2e.eps
+ texmf-dist/doc/latex/ppower4/edemo/matrixb2e.fig
+ texmf-dist/doc/latex/ppower4/edemo/matrixb2e.mp
+ texmf-dist/doc/latex/ppower4/edemo/matrixb2e.mps
+ texmf-dist/doc/latex/ppower4/exampled/bsp1.tex
+ texmf-dist/doc/latex/ppower4/exampled/bsp2.tex
+ texmf-dist/doc/latex/ppower4/examplee/exm1.tex
+ texmf-dist/doc/latex/ppower4/examplee/exm2.tex
+ texmf-dist/doc/latex/ppower4/extension.pdf
+ texmf-dist/doc/latex/ppower4/extension.tex
+ texmf-dist/doc/latex/ppower4/extras.html
+ texmf-dist/doc/latex/ppower4/features.html
+ texmf-dist/doc/latex/ppower4/index.html
+ texmf-dist/doc/latex/ppower4/leveldemo/example.0
+ texmf-dist/doc/latex/ppower4/leveldemo/example.1
+ texmf-dist/doc/latex/ppower4/leveldemo/example.2
+ texmf-dist/doc/latex/ppower4/leveldemo/example.3
+ texmf-dist/doc/latex/ppower4/leveldemo/example.4
+ texmf-dist/doc/latex/ppower4/leveldemo/example.5
+ texmf-dist/doc/latex/ppower4/leveldemo/example.6
+ texmf-dist/doc/latex/ppower4/leveldemo/example.7
+ texmf-dist/doc/latex/ppower4/leveldemo/leveldemo.tex
+ texmf-dist/doc/latex/ppower4/levelo.pdf
+ texmf-dist/doc/latex/ppower4/manual.pdf details="Package manual"
+ texmf-dist/doc/latex/ppower4/news.html
+ texmf-dist/doc/latex/ppower4/odemo.pdf
+ texmf-dist/doc/latex/ppower4/oedemo.pdf
+ texmf-dist/doc/latex/ppower4/pagetrans.tex
+ texmf-dist/doc/latex/ppower4/ppower4.bat
+ texmf-dist/doc/latex/ppower4/readme.html
+ texmf-dist/doc/latex/ppower4/report.pdf
+runfiles size=304708
+ texmf-dist/scripts/ppower4/pp4p.jar
+ texmf-dist/tex/latex/ppower4/background.sty
+ texmf-dist/tex/latex/ppower4/mpmulti.sty
+ texmf-dist/tex/latex/ppower4/pause.sty
+ texmf-dist/tex/latex/ppower4/pp4link.sty
+ texmf-dist/tex/latex/ppower4/pp4slide.sty
+ texmf-dist/tex/latex/ppower4/texpause.sty
+catalogue-version 0.4
+catalogue-date 2006-12-05 23:27:16 +0100
+catalogue-ctan /support/ppower4
+catalogue-license gpl
+
+name ppr-prv
+category Package
+revision 1212
+shortdesc Prosper preview.
+longdesc This class is used with LaTeX presentations using the prosper
+longdesc class. ppr-prv stands for ‘Prosper Preview’. The aim of
+longdesc this class is to produce a printable version of the slides
+longdesc written with Prosper, with two slides per page.
+docfiles size=339356
+ texmf-dist/doc/latex/ppr-prv/README details="Readme"
+ texmf-dist/doc/latex/ppr-prv/ppr-prv.pdf details="Package documentation"
+srcfiles size=34496
+ texmf-dist/source/latex/ppr-prv/ppr-prv.dtx
+ texmf-dist/source/latex/ppr-prv/ppr-prv.ins
+runfiles size=22441
+ texmf-dist/tex/latex/ppr-prv/HAP-ppr-prv.def
+ texmf-dist/tex/latex/ppr-prv/ppr-prv.cls
+catalogue-version 0.13c
+catalogue-date 2007-01-13 23:45:25 +0100
+catalogue-ctan /macros/latex/contrib/ppr-prv
+catalogue-license lppl
+
+name pracjourn
+category Package
+revision 5442
+shortdesc Typeset articles for PracTeX.
+longdesc The pracjourn class is used for typesetting articles in the
+longdesc PracTeX Journal. It is based on the article class with
+longdesc modifications to allow for more flexible front-matter and
+longdesc revision control, among other small changes.
+docfiles size=429108
+ texmf-dist/doc/latex/pracjourn/README details="Readme"
+ texmf-dist/doc/latex/pracjourn/pjsample.ltx
+ texmf-dist/doc/latex/pracjourn/pjsample.pdf
+ texmf-dist/doc/latex/pracjourn/pracjourn.pdf details="Package documentation"
+srcfiles size=51501
+ texmf-dist/source/latex/pracjourn/pracjourn.dtx
+ texmf-dist/source/latex/pracjourn/pracjourn.ins
+runfiles size=13256
+ texmf-dist/tex/latex/pracjourn/pracjourn.cls
+catalogue-version 0.4n
+catalogue-date 2007-08-25 15:34:40 +0200
+catalogue-ctan /macros/latex/contrib/pracjourn
+catalogue-license gpl
+
+name preprint
+category Package
+revision 1214
+shortdesc A bundle of packages provided "as is".
+longdesc The bundle comprises: – authblk, which permits footnote style
+longdesc author/affiliation input in the \author command, – balance,
+longdesc to balance the end of \twocolumn pages, – figcaps, to send
+longdesc figure captions, etc., to end document, – fullpage, to set
+longdesc narrow page margins and set a fixed page style, and –
+longdesc sublabel, which permits counters to be subnumbered.
+docfiles size=427160
+ texmf-dist/doc/latex/preprint/00readme.txt
+ texmf-dist/doc/latex/preprint/00readme.unix
+ texmf-dist/doc/latex/preprint/authblk.pdf
+ texmf-dist/doc/latex/preprint/balance.pdf
+ texmf-dist/doc/latex/preprint/figcaps.pdf
+ texmf-dist/doc/latex/preprint/fullpage.pdf
+ texmf-dist/doc/latex/preprint/sublabel.pdf
+srcfiles size=195790
+ texmf-dist/source/latex/preprint/authblk.drv
+ texmf-dist/source/latex/preprint/authblk.dtx
+ texmf-dist/source/latex/preprint/authblk.ins
+ texmf-dist/source/latex/preprint/balance.drv
+ texmf-dist/source/latex/preprint/balance.dtx
+ texmf-dist/source/latex/preprint/balance.ins
+ texmf-dist/source/latex/preprint/figcaps.drv
+ texmf-dist/source/latex/preprint/figcaps.dtx
+ texmf-dist/source/latex/preprint/figcaps.ins
+ texmf-dist/source/latex/preprint/fullpage.drv
+ texmf-dist/source/latex/preprint/fullpage.dtx
+ texmf-dist/source/latex/preprint/fullpage.ins
+ texmf-dist/source/latex/preprint/sublabel.drv
+ texmf-dist/source/latex/preprint/sublabel.dtx
+ texmf-dist/source/latex/preprint/sublabel.ins
+runfiles size=28918
+ texmf-dist/tex/latex/preprint/authblk.sty
+ texmf-dist/tex/latex/preprint/balance.sty
+ texmf-dist/tex/latex/preprint/figcaps.sty
+ texmf-dist/tex/latex/preprint/fullpage.sty
+ texmf-dist/tex/latex/preprint/sublabel.sty
+catalogue-version
+catalogue-date 2007-01-06 21:10:04 +0100
+catalogue-ctan /macros/latex/contrib/preprint
+catalogue-license lppl
+
+name prettyref
+category Package
+revision 3111
+shortdesc Make label references "self-identify".
+longdesc Prettyref provides a command \newrefformat, which specifies the
+longdesc way in which a reference is typeset, according to a label
+longdesc "identification". The identification is set in the \label
+longdesc command, by using prefixed label names; so instead of
+longdesc \label{mysection}, one uses \label{sec:mysection}, and
+longdesc prettyref interprets the "sec:" part. The package is compatible
+longdesc with hyperref and with other packages.
+docfiles size=43886
+ texmf-dist/doc/latex/prettyref/prettyref.pdf details="Package documentation"
+srcfiles size=4896
+ texmf-dist/source/latex/prettyref/prettyref.dtx
+ texmf-dist/source/latex/prettyref/prettyref.ins
+runfiles size=977
+ texmf-dist/tex/latex/prettyref/prettyref.sty
+catalogue-version 3.0
+catalogue-date 2007-01-03 00:23:39 +0100
+catalogue-ctan /macros/latex/contrib/prettyref
+catalogue-license unknown
+
+name preview
+category Package
+revision 3486
+shortdesc Extract bits of a LaTeX source for output.
+longdesc The package is a free-standing part of the preview-latex
+longdesc bundle. The package provides the support preview-latex needs,
+longdesc when it chooses the matter it will preview. The output may
+longdesc reasonably be expected to have other uses, as in html
+longdesc translators, etc.
+docfiles size=114166
+ texmf-dist/doc/latex/preview/README details="Readme"
+ texmf-dist/doc/latex/preview/preview.pdf
+srcfiles size=80075
+ texmf-dist/source/latex/preview/preview.drv
+ texmf-dist/source/latex/preview/preview.dtx
+ texmf-dist/source/latex/preview/preview.ins
+runfiles size=28180
+ texmf-dist/tex/latex/preview/prauctex.cfg
+ texmf-dist/tex/latex/preview/prauctex.def
+ texmf-dist/tex/latex/preview/prcounters.def
+ texmf-dist/tex/latex/preview/preview.sty
+ texmf-dist/tex/latex/preview/prfootnotes.def
+ texmf-dist/tex/latex/preview/prlyx.def
+ texmf-dist/tex/latex/preview/prshowbox.def
+ texmf-dist/tex/latex/preview/prshowlabels.def
+ texmf-dist/tex/latex/preview/prtightpage.def
+ texmf-dist/tex/latex/preview/prtracingall.def
+catalogue-version 11.84
+catalogue-date 2007-03-11 14:35:09 +0100
+catalogue-ctan /macros/latex/contrib/preview
+catalogue-license gpl
+
+name probsoln
+category Package
+revision 4796
+shortdesc generate problem sheets and their solution sheets
+longdesc The package probsoln.sty is designed for lecturers who have to
+longdesc generate new problem sheets for their students on a regular
+longdesc basis (e.g. yearly) by randomly selecting a specified number of
+longdesc problems defined in another file. The package allows you easily
+longdesc to generate a new problem sheet that is different from the
+longdesc previous year, thus alieviating the temptation of students to
+longdesc seek out the previous year's students and checking out their
+longdesc answers. The solutions to the problems can be defined along
+longdesc with the problem, making it easy to generate the solution sheet
+longdesc from the same source code.
+docfiles size=191604
+ texmf-dist/doc/latex/probsoln/1stprncp.tex
+ texmf-dist/doc/latex/probsoln/CHANGES
+ texmf-dist/doc/latex/probsoln/README details="Package README"
+ texmf-dist/doc/latex/probsoln/args.tex
+ texmf-dist/doc/latex/probsoln/easy.tex
+ texmf-dist/doc/latex/probsoln/implicit.tex
+ texmf-dist/doc/latex/probsoln/mchoice.tex
+ texmf-dist/doc/latex/probsoln/nosoln.tex
+ texmf-dist/doc/latex/probsoln/probsoln-manual.html
+ texmf-dist/doc/latex/probsoln/probsoln.pdf
+ texmf-dist/doc/latex/probsoln/sample.tex
+ texmf-dist/doc/latex/probsoln/sample2.tex
+ texmf-dist/doc/latex/probsoln/sample3.tex
+ texmf-dist/doc/latex/probsoln/sample4.tex
+ texmf-dist/doc/latex/probsoln/tabmchoice.tex
+srcfiles size=31385
+ texmf-dist/source/latex/probsoln/probsoln.dtx
+ texmf-dist/source/latex/probsoln/probsoln.ins
+runfiles size=8559
+ texmf-dist/tex/latex/probsoln/probsoln.sty
+catalogue-version 2.04
+catalogue-date 2007-08-21 23:08:33 +0200
+catalogue-ctan /macros/latex/contrib/probsoln
+catalogue-license lppl
+
+name procIAGssymp
+category Package
+revision 1218
+shortdesc Macros for IAG symposium papers.
+longdesc This package provides (re-)definitions of some LaTeX commands
+longdesc that can be useful for the preparation of a paper with the
+longdesc style of the proceeding of symposia sponsored by the
+longdesc ‘International Association of Geodesy (IAG)’ published by
+longdesc Springer-Verlag.
+docfiles size=7127
+ texmf-dist/doc/latex/procIAGssymp/TestPaper.tex
+runfiles size=5635
+ texmf-dist/tex/latex/procIAGssymp/procIAGssymp.sty
+catalogue-version
+catalogue-date 2007-01-06 21:10:04 +0100
+catalogue-ctan /macros/latex/contrib/procIAGssymp
+catalogue-license lppl
+
+name progkeys
+category Package
+revision 1487
+shortdesc Typeset programs, recognising keywords.
+longdesc The programs package is allows a parameterized way of
+longdesc typesetting programs with TeX/LaTeX commands inside. The
+longdesc keywords package allows definition and use of sets of keyword
+longdesc commands that will be typeset with different fonts, according
+longdesc to the wish of the user.
+docfiles size=99672
+ texmf-dist/doc/latex/progkeys/keywords.dvi
+ texmf-dist/doc/latex/progkeys/programs.dvi
+srcfiles size=98393
+ texmf-dist/source/latex/progkeys/README
+ texmf-dist/source/latex/progkeys/demo/demo.tex
+ texmf-dist/source/latex/progkeys/demo/prog1.tex
+ texmf-dist/source/latex/progkeys/demo/prog2.tex
+ texmf-dist/source/latex/progkeys/demo/prog3.tex
+ texmf-dist/source/latex/progkeys/keywords.drv
+ texmf-dist/source/latex/progkeys/keywords.dtx
+ texmf-dist/source/latex/progkeys/keywords.ins
+ texmf-dist/source/latex/progkeys/programs.drv
+ texmf-dist/source/latex/progkeys/programs.dtx
+ texmf-dist/source/latex/progkeys/programs.ins
+runfiles size=21632
+ texmf-dist/makeindex/progkeys/keywords.ist
+ texmf-dist/makeindex/progkeys/programs.ist
+ texmf-dist/tex/latex/progkeys/keywords.sty
+ texmf-dist/tex/latex/progkeys/programs.sty
+catalogue-version
+catalogue-date 2006-12-03 18:09:01 +0100
+catalogue-ctan /macros/latex/contrib/progkeys
+catalogue-license unknown
+
+name program
+category Package
+revision 4676
+shortdesc Typesetting programs and algorithms.
+longdesc The main offering is a program environment; a programbox
+longdesc environment is available for fragments that must not break with
+longdesc the pages.
+docfiles size=152222
+ texmf-dist/doc/latex/program/gpl.txt
+ texmf-dist/doc/latex/program/plink.pdf details="A programming trick"
+ texmf-dist/doc/latex/program/plink.tex
+ texmf-dist/doc/latex/program/program-demo.pdf details="Demo of package facilities"
+ texmf-dist/doc/latex/program/program-demo.tex
+ texmf-dist/doc/latex/program/program-msg.txt details="Readme"
+runfiles size=34864
+ texmf-dist/tex/latex/program/program.sty
+catalogue-version 3.3.11
+catalogue-date 2007-07-17 15:25:32 +0200
+catalogue-ctan /macros/latex/contrib/program
+catalogue-license gpl
+
+name progress
+category Package
+revision 1487
+shortdesc Creates an overview of a document's state.
+longdesc Progress is a package which. when compiling TeX and LaTeX
+longdesc documents, generates a HTML file showing an overview of a
+longdesc document's state (of how finished it is). The report is sent to
+longdesc file \ProgressReportName, which is by default the \jobname with
+longdesc the date appended (but is user-modifiable).
+docfiles size=197369
+ texmf-dist/doc/latex/progress/README details="Readme"
+ texmf-dist/doc/latex/progress/progress.dvi
+ texmf-dist/doc/latex/progress/progress.tex
+ texmf-dist/doc/latex/progress/progress20030701.html
+ texmf-dist/doc/latex/progress/progress20030714.html
+runfiles size=13460
+ texmf-dist/tex/latex/progress/progress.sty
+catalogue-version 1.10
+catalogue-date 2007-01-06 21:10:04 +0100
+catalogue-ctan /macros/latex/contrib/progress
+catalogue-license lppl
+
+name prosper
+category Package
+revision 1223
+shortdesc LaTeX class for high quality slides.
+longdesc Prosper is a LaTeX class for writing transparencies. It is
+longdesc written on top of the seminar class by Timothy Van Zandt. It
+longdesc offers a friendly environment for creating slides for both
+longdesc presentations with an overhead projector and a video projector.
+longdesc Slides prepared for a presentation with a computer and a video
+longdesc projector may integrate animation effects, incremental display,
+longdesc and so on. Various visual styles are supported (including some
+longdesc that mimic PowerPoint) and others are being contributed.
+docfiles size=403667
+ texmf-dist/doc/latex/prosper/Example.tex
+ texmf-dist/doc/latex/prosper/ExampleAlienglow.tex
+ texmf-dist/doc/latex/prosper/ExampleAutumn.tex
+ texmf-dist/doc/latex/prosper/ExampleAzure.tex
+ texmf-dist/doc/latex/prosper/ExampleContemporain.tex
+ texmf-dist/doc/latex/prosper/ExampleDarkblue.tex
+ texmf-dist/doc/latex/prosper/ExampleFrames.tex
+ texmf-dist/doc/latex/prosper/ExampleLignesbleues.tex
+ texmf-dist/doc/latex/prosper/ExampleNuanceGris.tex
+ texmf-dist/doc/latex/prosper/ExampleTroisPoints.tex
+ texmf-dist/doc/latex/prosper/FAQ
+ texmf-dist/doc/latex/prosper/NEWS
+ texmf-dist/doc/latex/prosper/README details="Package Readme"
+ texmf-dist/doc/latex/prosper/green-bullet-on-blue-wc.gif
+ texmf-dist/doc/latex/prosper/green-bullet-on-blue.gif
+ texmf-dist/doc/latex/prosper/green-bullet-on-white.gif
+ texmf-dist/doc/latex/prosper/gyom.tex
+ texmf-dist/doc/latex/prosper/manifest.txt
+ texmf-dist/doc/latex/prosper/prosper-doc.pdf
+ texmf-dist/doc/latex/prosper/prosper-doc.tex
+ texmf-dist/doc/latex/prosper/prosper-template.jpg
+ texmf-dist/doc/latex/prosper/prosper-tour.pdf
+ texmf-dist/doc/latex/prosper/prosper-tour.tex
+ texmf-dist/doc/latex/prosper/red-bullet-on-blue-wc.gif
+ texmf-dist/doc/latex/prosper/red-bullet-on-blue.gif
+ texmf-dist/doc/latex/prosper/red-bullet-on-white.gif
+ texmf-dist/doc/latex/prosper/rico.tex
+ texmf-dist/doc/latex/prosper/rotation.tex
+ texmf-dist/doc/latex/prosper/yellow-bullet-on-blue-wc.gif
+ texmf-dist/doc/latex/prosper/yellow-bullet-on-blue.gif
+ texmf-dist/doc/latex/prosper/yellow-bullet-on-white.gif
+srcfiles size=125517
+ texmf-dist/source/latex/prosper/AUTHORS
+ texmf-dist/source/latex/prosper/ChangeLog
+ texmf-dist/source/latex/prosper/INSTALL
+ texmf-dist/source/latex/prosper/TODO
+ texmf-dist/source/latex/prosper/compilation.fig
+ texmf-dist/source/latex/prosper/prosper-structure.fig
+ texmf-dist/source/latex/prosper/prosper.png
+ texmf-dist/source/latex/prosper/prosper.ui
+ texmf-dist/source/latex/prosper/seminar-bg2-lepennec.fix
+runfiles size=722275
+ texmf-dist/tex/latex/prosper/PPRalcatel.sty
+ texmf-dist/tex/latex/prosper/PPRalienglow.sty
+ texmf-dist/tex/latex/prosper/PPRautumn.sty
+ texmf-dist/tex/latex/prosper/PPRazure.sty
+ texmf-dist/tex/latex/prosper/PPRblends.sty
+ texmf-dist/tex/latex/prosper/PPRcapsules.sty
+ texmf-dist/tex/latex/prosper/PPRcontemporain.sty
+ texmf-dist/tex/latex/prosper/PPRcorners.sty
+ texmf-dist/tex/latex/prosper/PPRdarkblue.sty
+ texmf-dist/tex/latex/prosper/PPRdefault.sty
+ texmf-dist/tex/latex/prosper/PPRframes.sty
+ texmf-dist/tex/latex/prosper/PPRfyma.sty
+ texmf-dist/tex/latex/prosper/PPRgyom.sty
+ texmf-dist/tex/latex/prosper/PPRlignesbleues.sty
+ texmf-dist/tex/latex/prosper/PPRmancini.sty
+ texmf-dist/tex/latex/prosper/PPRnuancegris.sty
+ texmf-dist/tex/latex/prosper/PPRprettybox.sty
+ texmf-dist/tex/latex/prosper/PPRrico.sty
+ texmf-dist/tex/latex/prosper/PPRserpaggi.sty
+ texmf-dist/tex/latex/prosper/PPRthomasd.sty
+ texmf-dist/tex/latex/prosper/PPRtroispoints.sty
+ texmf-dist/tex/latex/prosper/PPRwhitecross.sty
+ texmf-dist/tex/latex/prosper/PPRwinter.sty
+ texmf-dist/tex/latex/prosper/PPRwj.sty
+ texmf-dist/tex/latex/prosper/angleHG.ps
+ texmf-dist/tex/latex/prosper/arrow-glow.ps
+ texmf-dist/tex/latex/prosper/barre-rico.ps
+ texmf-dist/tex/latex/prosper/blue-inverted-arrow.ps
+ texmf-dist/tex/latex/prosper/boule-base.eps
+ texmf-dist/tex/latex/prosper/boulebleue-fondblanc.eps
+ texmf-dist/tex/latex/prosper/boulerouge-fondblanc.eps
+ texmf-dist/tex/latex/prosper/bouleverte-fondblanc.eps
+ texmf-dist/tex/latex/prosper/bullet-glow.ps
+ texmf-dist/tex/latex/prosper/compilation.eps
+ texmf-dist/tex/latex/prosper/degrade-base.eps
+ texmf-dist/tex/latex/prosper/degrade-blanc-bleu.eps
+ texmf-dist/tex/latex/prosper/green-bullet-on-blue-wc.ps
+ texmf-dist/tex/latex/prosper/green-bullet-on-blue.ps
+ texmf-dist/tex/latex/prosper/green-bullet-on-white.ps
+ texmf-dist/tex/latex/prosper/green-inverted-arrow.ps
+ texmf-dist/tex/latex/prosper/gyom.ps
+ texmf-dist/tex/latex/prosper/prosper-structure.eps
+ texmf-dist/tex/latex/prosper/prosper.cls
+ texmf-dist/tex/latex/prosper/red-bullet-on-blue-wc.ps
+ texmf-dist/tex/latex/prosper/red-bullet-on-blue.ps
+ texmf-dist/tex/latex/prosper/red-bullet-on-white.ps
+ texmf-dist/tex/latex/prosper/red-inverted-arrow.ps
+ texmf-dist/tex/latex/prosper/rico.ps
+ texmf-dist/tex/latex/prosper/rico_bullet1.ps
+ texmf-dist/tex/latex/prosper/rico_bullet2.ps
+ texmf-dist/tex/latex/prosper/rico_bullet3.ps
+ texmf-dist/tex/latex/prosper/rotation.ps
+ texmf-dist/tex/latex/prosper/rule-glow.ps
+ texmf-dist/tex/latex/prosper/yellow-bullet-on-blue-wc.ps
+ texmf-dist/tex/latex/prosper/yellow-bullet-on-blue.ps
+ texmf-dist/tex/latex/prosper/yellow-bullet-on-white.ps
+catalogue-version 1.0h
+catalogue-date 2006-12-03 19:48:14 +0100
+catalogue-ctan /macros/latex/contrib/prosper
+catalogue-license lppl
+
+name protocol
+category Package
+revision 2386
+shortdesc A class for typesetting minutes (only german).
+docfiles size=283146
+ texmf-dist/doc/latex/protocol/protest.tex
+ texmf-dist/doc/latex/protocol/protocol.pdf details="Package documentation"
+ texmf-dist/doc/latex/protocol/readme details="README file"
+srcfiles size=16371
+ texmf-dist/source/latex/protocol/protocol.dtx
+ texmf-dist/source/latex/protocol/protocol.ins
+runfiles size=5527
+ texmf-dist/tex/latex/protocol/protocol.cls
+catalogue-version 1.9
+catalogue-date 2006-11-19 20:23:42 +0100
+catalogue-ctan /macros/latex/contrib/protocol
+catalogue-license lppl1.3
+
+name psafm
+category Package
+revision 90
+runfiles size=128182
+ texmf-dist/fonts/afm/itc/psafm/stonesan/is8b8a.afm
+ texmf-dist/fonts/afm/itc/psafm/stonesan/is8bi8a.afm
+ texmf-dist/fonts/afm/itc/psafm/stonesan/is8r8a.afm
+ texmf-dist/fonts/afm/itc/psafm/stonesan/is8ri8a.afm
+ texmf-dist/fonts/afm/itc/psafm/stonesan/is8s8a.afm
+ texmf-dist/fonts/afm/itc/psafm/stonesan/is8si8a.afm
+
+name pseudocode
+category Package
+revision 1226
+shortdesc LaTeX enviroment for specifying algorithms in a natural way.
+longdesc This package provides the environment "pseudocode" for
+longdesc describing algorithms in a natural manner.
+docfiles size=169090
+ texmf-dist/doc/latex/pseudocode/README details="Readme"
+ texmf-dist/doc/latex/pseudocode/pseudocode.pdf details="Package documentation"
+ texmf-dist/doc/latex/pseudocode/pseudocode.tex
+runfiles size=7187
+ texmf-dist/tex/latex/pseudocode/pseudocode.sty
+catalogue-version
+catalogue-date 2007-02-25 15:34:59 +0100
+catalogue-ctan /macros/latex/contrib/pseudocode
+catalogue-license lppl
+
+name psfig
+category Package
+revision 613
+shortdesc A graphics inclusion package.
+longdesc The psfig package enables users to include graphics in LaTeX
+longdesc documents, with a choice of dvips and oztex drivers: other
+longdesc output mechanisms are not supported. The psfig package is
+longdesc largely superseded, for various reasons, including its non-free
+longdesc licence. For new work, users are strongly encouraged to use the
+longdesc LaTeX graphics bundle, specifically, either the graphicx or
+longdesc even epsfig package. In particular, epsfig, which is always to
+longdesc be found in modern distributions, implements a close analogue
+longdesc of the syntax of psfig.
+docfiles size=79679
+ texmf-dist/doc/generic/psfig/README
+ texmf-dist/doc/generic/psfig/figs/box.ps
+ texmf-dist/doc/generic/psfig/figs/cm.ps
+ texmf-dist/doc/generic/psfig/figs/piechart.ps
+ texmf-dist/doc/generic/psfig/figs/pretzel.ps
+ texmf-dist/doc/generic/psfig/figs/rosette.ps
+ texmf-dist/doc/generic/psfig/figs/starlines.ps
+ texmf-dist/doc/generic/psfig/figs/trevor.ps
+ texmf-dist/doc/generic/psfig/figs/zip.ps
+ texmf-dist/doc/generic/psfig/psfig-doc.tex
+ texmf-dist/doc/generic/psfig/psfig.man
+srcfiles size=172628
+ texmf-dist/source/generic/psfig/pscompress
+ texmf-dist/source/generic/psfig/unsupported/arbortext.pro
+ texmf-dist/source/generic/psfig/unsupported/dospecial.frag
+ texmf-dist/source/generic/psfig/unsupported/dospecial.patch
+ texmf-dist/source/generic/psfig/unsupported/graphpaper.ps.gz
+ texmf-dist/source/generic/psfig/unsupported/macdemo/README
+ texmf-dist/source/generic/psfig/unsupported/macdemo/cleanfig
+ texmf-dist/source/generic/psfig/unsupported/macdemo/figs/box.ps.gz
+ texmf-dist/source/generic/psfig/unsupported/macdemo/figs/cm.ps.gz
+ texmf-dist/source/generic/psfig/unsupported/macdemo/figs/piechart.ps.gz
+ texmf-dist/source/generic/psfig/unsupported/macdemo/figs/pretzel.ps.gz
+ texmf-dist/source/generic/psfig/unsupported/macdemo/figs/rosette.ps.gz
+ texmf-dist/source/generic/psfig/unsupported/macdemo/figs/starlines.ps.gz
+ texmf-dist/source/generic/psfig/unsupported/macdemo/figs/trevor.ps.gz
+ texmf-dist/source/generic/psfig/unsupported/macdemo/figs/zip.ps.gz
+ texmf-dist/source/generic/psfig/unsupported/macdemo/lprep68.pro
+ texmf-dist/source/generic/psfig/unsupported/macdemo/lprep68.procs
+ texmf-dist/source/generic/psfig/unsupported/macdemo/lprep70.pro
+ texmf-dist/source/generic/psfig/unsupported/macdemo/lprep70.procs
+ texmf-dist/source/generic/psfig/unsupported/macdemo/macdemo.tex
+ texmf-dist/source/generic/psfig/unsupported/macdemo/macfigs/bullet.fig68.Z
+ texmf-dist/source/generic/psfig/unsupported/macdemo/macfigs/bullet.fig68.bb
+ texmf-dist/source/generic/psfig/unsupported/macdemo/macfigs/dave.fig68.Z
+ texmf-dist/source/generic/psfig/unsupported/macdemo/macfigs/dave.fig68.bb
+ texmf-dist/source/generic/psfig/unsupported/macdemo/macfigs/macdraw.fig68.Z
+ texmf-dist/source/generic/psfig/unsupported/macdemo/macfigs/macdraw.fig68.bb
+ texmf-dist/source/generic/psfig/unsupported/macdemo/stripfonts.awk
+ texmf-dist/source/generic/psfig/unsupported/psfig-li.pro
+ texmf-dist/source/generic/psfig/unsupported/psfig-li.tex
+runfiles size=28879
+ texmf-dist/tex/generic/psfig/psfig.sty
+catalogue-version 1.10
+catalogue-date 2007-02-25 15:34:59 +0100
+catalogue-ctan /nonfree/graphics/psfig
+catalogue-license nosell
+
+name psfrag
+category Package
+revision 2095
+shortdesc Replace strings in encapsulated PostScript figures.
+longdesc Allows LaTeX constructions (equations, picture environments,
+longdesc etc.) to be precisely superimposed over Encapsulated PostScript
+longdesc figures, using your own favorite drawing tool to create an EPS
+longdesc figure and placing simple text ‘tags’ where each
+longdesc replacement is to be placed, with PSfrag automatically removing
+longdesc these tags from the figure and replacing them with a user
+longdesc specified LaTeX construction, properly aligned, scaled, and/or
+longdesc rotated.
+docfiles size=114178
+ texmf-dist/doc/latex/psfrag/00readme.txt
+ texmf-dist/doc/latex/psfrag/announce.txt details="Release notice"
+ texmf-dist/doc/latex/psfrag/example.eps
+ texmf-dist/doc/latex/psfrag/pfgguide.pdf details="Package documentation"
+ texmf-dist/doc/latex/psfrag/pfgguide.tex
+ texmf-dist/doc/latex/psfrag/testfig.eps
+srcfiles size=44200
+ texmf-dist/source/latex/psfrag/psfrag.dtx
+ texmf-dist/source/latex/psfrag/psfrag.ins
+runfiles size=12571
+ texmf-dist/dvips/psfrag/psfrag.pro
+ texmf-dist/tex/latex/psfrag/psfrag.sty
+catalogue-version 3.04
+catalogue-date 2007-03-11 16:56:01 +0100
+catalogue-ctan /macros/latex/contrib/psfrag
+catalogue-license dfsg
+
+name psfrag-italian
+category Documentation
+revision 5358
+docfiles size=189711
+ texmf-doc/doc/italian/psfrag-italian/itpfgguide.pdf
+ texmf-doc/doc/italian/psfrag-italian/itpfgguide.tex
+
+name psfragx
+category Package
+revision 1228
+shortdesc A psfrag eXtension.
+longdesc PSfragX offers a mechanism to embed \psfrag commands, as
+longdesc provided by the psfrag package, into the EPS file itself. Each
+longdesc time a graphic is included, the EPS file is scanned. If some
+longdesc tagged lines are found, they are used to define the psfrag
+longdesc replacements that should be performed automatically. In
+longdesc addition, a similar mechanism holds for overpic objects. These
+longdesc are picture objects superimposed on the included graphic. A
+longdesc similar mechanism is implemented in psfrag itself (but
+longdesc deprecated in the documentation), but psfragx offers much more
+longdesc flexibility. For example, if babel is used, it is possible to
+longdesc define different replacements corresponding to different
+longdesc languages. The replacements to take into account will be
+longdesc selected on the basis of the current language of the document.
+longdesc A Matlab script (LaPrint) is provided, to export an EPS file
+longdesc with psfragx annotations ready embedded.
+docfiles size=1168122
+ texmf-dist/doc/latex/psfragx/README.txt
+ texmf-dist/doc/latex/psfragx/example.eps
+ texmf-dist/doc/latex/psfragx/example.ovp
+ texmf-dist/doc/latex/psfragx/example.pfx
+ texmf-dist/doc/latex/psfragx/example.tex
+ texmf-dist/doc/latex/psfragx/laprint.m
+ texmf-dist/doc/latex/psfragx/laprintdoc.ps
+ texmf-dist/doc/latex/psfragx/laprpfx.mat
+ texmf-dist/doc/latex/psfragx/pfxprint.m
+ texmf-dist/doc/latex/psfragx/psfragx.m
+ texmf-dist/doc/latex/psfragx/psfragx.pdf
+ texmf-dist/doc/latex/psfragx/psfragx_example.pdf
+ texmf-dist/doc/latex/psfragx/psfragx_example.tex
+ texmf-dist/doc/latex/psfragx/readmePFX.txt
+srcfiles size=64286
+ texmf-dist/source/latex/psfragx/psfragx.drv
+ texmf-dist/source/latex/psfragx/psfragx.dtx
+ texmf-dist/source/latex/psfragx/psfragx.ins
+runfiles size=13539
+ texmf-dist/tex/latex/psfragx/psfragx.cfg
+ texmf-dist/tex/latex/psfragx/psfragx.sty
+catalogue-version 1.0
+catalogue-date 2006-09-03 18:11:17 +0200
+catalogue-ctan /macros/latex/contrib/psfragx
+catalogue-license lppl
+
+name psgo
+category Package
+revision 1229
+shortdesc Typeset go diagrams with PSTricks.
+docfiles size=22264
+ texmf-dist/doc/latex/psgo/README details="Readme"
+ texmf-dist/doc/latex/psgo/psgomanual.tex
+runfiles size=11716
+ texmf-dist/tex/latex/psgo/psgo.sty
+catalogue-version 0.14
+catalogue-date 2007-01-06 21:10:04 +0100
+catalogue-ctan /graphics/pstricks/contrib/psgo
+catalogue-license lppl
+
+name psizzl
+category Package
+revision 623
+shortdesc A TeX format for physics papers.
+longdesc PSIZZL is a TeX format for physics papers written at SLAC and
+longdesc used at several other places. It dates from rather early in the
+longdesc development of TeX82; as a result, some of the descriptions of
+longdesc limitations look rather quaint to modern eyes.
+docfiles size=15065
+ texmf-dist/doc/psizzl/base/psizzl.commands details="List of commands available"
+ texmf-dist/doc/psizzl/base/psizzl.doc
+srcfiles size=504
+ texmf-dist/source/psizzl/base/aaaread.me
+runfiles size=84250
+ texmf-dist/tex/psizzl/base/chapters.Psizzl
+ texmf-dist/tex/psizzl/base/citation.Psizzl
+ texmf-dist/tex/psizzl/base/fontdefs.Psizzl
+ texmf-dist/tex/psizzl/base/index.Psizzl
+ texmf-dist/tex/psizzl/base/institut.Psizzl
+ texmf-dist/tex/psizzl/base/letter.Psizzl
+ texmf-dist/tex/psizzl/base/lists.Psizzl
+ texmf-dist/tex/psizzl/base/macros.Psizzl
+ texmf-dist/tex/psizzl/base/memo.Psizzl
+ texmf-dist/tex/psizzl/base/mypsizzl.tex
+ texmf-dist/tex/psizzl/base/options.Psizzl
+ texmf-dist/tex/psizzl/base/output.Psizzl
+ texmf-dist/tex/psizzl/base/picture.Psizzl
+ texmf-dist/tex/psizzl/base/psizzl.tex
+ texmf-dist/tex/psizzl/base/publicat.Psizzl
+ texmf-dist/tex/psizzl/base/symbols.Psizzl
+ texmf-dist/tex/psizzl/base/thesis.Psizzl
+ texmf-dist/tex/psizzl/config/psizzl.ini
+catalogue-version 0.35
+catalogue-date 2006-12-03 01:48:16 +0100
+catalogue-ctan /macros/psizzl
+catalogue-license lppl
+
+name pslatex
+category Package
+revision 1230
+shortdesc Use PostScript fonts by default.
+longdesc A small package that makes LaTeX default to ‘standard’
+longdesc PostScript fonts. It is basically a merger of the times and the
+longdesc (obsolete) mathptm packages from the psnfss suite. You must
+longdesc have installed standard LaTeX and the psnfss PostScript fonts
+longdesc to use this package. The main novel feature is that the pslatex
+longdesc package tries to compensate for the visual differences between
+longdesc the Adobe fonts by scaling Helvetica by 90%, and
+longdesc ‘condensing’ Courier (i.e. scaling horizontally) by 85%.
+longdesc The package is supplied with a (unix) shell file for a
+longdesc ‘pslatex‘ command that allows standard LaTeX documents to
+longdesc be processed, without needing to edit the file. Note that
+longdesc current psnfss uses a different technique for scaling
+longdesc Helvetica, and treats Courier as a lost cause (there are better
+longdesc free fixed-width available now, than there were when pslatex
+longdesc was designed). As a result, pslatex is widely considered
+longdesc obsolete.
+srcfiles size=1306
+ texmf-dist/source/latex/pslatex/fontinst/pslatex.tex
+ texmf-dist/source/latex/pslatex/shell/pslatex
+ texmf-dist/source/latex/pslatex/shell/pslatex.bat
+runfiles size=18400
+ texmf-dist/fonts/map/dvips/pslatex/pcrr8rn.map
+ texmf-dist/fonts/tfm/public/pslatex/pcrr7tn.tfm
+ texmf-dist/fonts/tfm/public/pslatex/pcrr8rn.tfm
+ texmf-dist/fonts/tfm/public/pslatex/pcrr8tn.tfm
+ texmf-dist/fonts/vf/public/pslatex/pcrr7tn.vf
+ texmf-dist/fonts/vf/public/pslatex/pcrr8tn.vf
+ texmf-dist/tex/latex/pslatex/pslatex.sty
+catalogue-version
+catalogue-date 2006-12-03 22:46:57 +0100
+catalogue-ctan /macros/latex/contrib/pslatex
+catalogue-license lppl
+
+name psnfss
+category Package
+revision 2040
+shortdesc Font support for common PostScript fonts.
+longdesc Font definition files, macros and font metrics for freely-
+longdesc available Adobe Type 1 fonts. The font set consists of the
+longdesc ‘LaserWriter 35’ set (originally ‘freely available’
+longdesc because embedded in PostScript printers), and a variety of
+longdesc other free fonts such as Bitstream Charter, Adobe Utopia (both
+longdesc donated to the public domain by their commercial foundries) and
+longdesc Pazo Math (optionally extended with the fpl small-caps and old-
+longdesc style figures fonts). The bundle is part of the LaTeX
+longdesc ‘required’ set of packages.
+execute addMap charter.map
+execute addMap fpls.map
+execute addMap pazo.map
+execute addMap utopia.map
+docfiles size=423635
+ texmf-dist/doc/latex/psnfss/00readme.txt
+ texmf-dist/doc/latex/psnfss/changes.txt
+ texmf-dist/doc/latex/psnfss/manifest.txt
+ texmf-dist/doc/latex/psnfss/psfonts.pdf
+ texmf-dist/doc/latex/psnfss/psnfss2e.pdf
+ texmf-dist/doc/latex/psnfss/test/mathtest.tex
+ texmf-dist/doc/latex/psnfss/test/pitest.tex
+ texmf-dist/doc/latex/psnfss/test/test0.tex
+ texmf-dist/doc/latex/psnfss/test/test1.tex
+ texmf-dist/doc/latex/psnfss/test/test2.tex
+ texmf-dist/doc/latex/psnfss/test/test3.tex
+srcfiles size=68389
+ texmf-dist/source/latex/psnfss/psfonts.dtx
+ texmf-dist/source/latex/psnfss/psfonts.ins
+ texmf-dist/source/latex/psnfss/psnfss2e.tex
+runfiles size=94849
+ texmf-dist/fonts/map/dvips/psnfss/charter.map
+ texmf-dist/fonts/map/dvips/psnfss/fpls.map
+ texmf-dist/fonts/map/dvips/psnfss/pazo.map
+ texmf-dist/fonts/map/dvips/psnfss/psnfss.map
+ texmf-dist/fonts/map/dvips/psnfss/utopia.map
+ texmf-dist/tex/latex/psnfss/8rbch.fd
+ texmf-dist/tex/latex/psnfss/8rpag.fd
+ texmf-dist/tex/latex/psnfss/8rpbk.fd
+ texmf-dist/tex/latex/psnfss/8rpcr.fd
+ texmf-dist/tex/latex/psnfss/8rphv.fd
+ texmf-dist/tex/latex/psnfss/8rpnc.fd
+ texmf-dist/tex/latex/psnfss/8rppl.fd
+ texmf-dist/tex/latex/psnfss/8rptm.fd
+ texmf-dist/tex/latex/psnfss/8rput.fd
+ texmf-dist/tex/latex/psnfss/8rpzc.fd
+ texmf-dist/tex/latex/psnfss/avant.sty
+ texmf-dist/tex/latex/psnfss/bookman.sty
+ texmf-dist/tex/latex/psnfss/chancery.sty
+ texmf-dist/tex/latex/psnfss/charter.sty
+ texmf-dist/tex/latex/psnfss/courier.sty
+ texmf-dist/tex/latex/psnfss/helvet.sty
+ texmf-dist/tex/latex/psnfss/mathpazo.sty
+ texmf-dist/tex/latex/psnfss/mathpple.sty
+ texmf-dist/tex/latex/psnfss/mathptm.sty
+ texmf-dist/tex/latex/psnfss/mathptmx.sty
+ texmf-dist/tex/latex/psnfss/newcent.sty
+ texmf-dist/tex/latex/psnfss/omlbch.fd
+ texmf-dist/tex/latex/psnfss/omlpag.fd
+ texmf-dist/tex/latex/psnfss/omlpbk.fd
+ texmf-dist/tex/latex/psnfss/omlpcr.fd
+ texmf-dist/tex/latex/psnfss/omlphv.fd
+ texmf-dist/tex/latex/psnfss/omlpnc.fd
+ texmf-dist/tex/latex/psnfss/omlppl.fd
+ texmf-dist/tex/latex/psnfss/omlptm.fd
+ texmf-dist/tex/latex/psnfss/omlptmcm.fd
+ texmf-dist/tex/latex/psnfss/omlput.fd
+ texmf-dist/tex/latex/psnfss/omlpzc.fd
+ texmf-dist/tex/latex/psnfss/omlzplm.fd
+ texmf-dist/tex/latex/psnfss/omlzpple.fd
+ texmf-dist/tex/latex/psnfss/omlztmcm.fd
+ texmf-dist/tex/latex/psnfss/omsbch.fd
+ texmf-dist/tex/latex/psnfss/omspag.fd
+ texmf-dist/tex/latex/psnfss/omspbk.fd
+ texmf-dist/tex/latex/psnfss/omspcr.fd
+ texmf-dist/tex/latex/psnfss/omsphv.fd
+ texmf-dist/tex/latex/psnfss/omspnc.fd
+ texmf-dist/tex/latex/psnfss/omsppl.fd
+ texmf-dist/tex/latex/psnfss/omsptm.fd
+ texmf-dist/tex/latex/psnfss/omsput.fd
+ texmf-dist/tex/latex/psnfss/omspzc.fd
+ texmf-dist/tex/latex/psnfss/omspzccm.fd
+ texmf-dist/tex/latex/psnfss/omszplm.fd
+ texmf-dist/tex/latex/psnfss/omszpple.fd
+ texmf-dist/tex/latex/psnfss/omsztmcm.fd
+ texmf-dist/tex/latex/psnfss/omxpsycm.fd
+ texmf-dist/tex/latex/psnfss/omxzplm.fd
+ texmf-dist/tex/latex/psnfss/omxzpple.fd
+ texmf-dist/tex/latex/psnfss/omxztmcm.fd
+ texmf-dist/tex/latex/psnfss/ot1bch.fd
+ texmf-dist/tex/latex/psnfss/ot1pag.fd
+ texmf-dist/tex/latex/psnfss/ot1pbk.fd
+ texmf-dist/tex/latex/psnfss/ot1pcr.fd
+ texmf-dist/tex/latex/psnfss/ot1phv.fd
+ texmf-dist/tex/latex/psnfss/ot1pnc.fd
+ texmf-dist/tex/latex/psnfss/ot1ppl.fd
+ texmf-dist/tex/latex/psnfss/ot1pplj.fd
+ texmf-dist/tex/latex/psnfss/ot1pplx.fd
+ texmf-dist/tex/latex/psnfss/ot1ptm.fd
+ texmf-dist/tex/latex/psnfss/ot1ptmcm.fd
+ texmf-dist/tex/latex/psnfss/ot1put.fd
+ texmf-dist/tex/latex/psnfss/ot1pzc.fd
+ texmf-dist/tex/latex/psnfss/ot1zplm.fd
+ texmf-dist/tex/latex/psnfss/ot1zpple.fd
+ texmf-dist/tex/latex/psnfss/ot1ztmcm.fd
+ texmf-dist/tex/latex/psnfss/palatino.sty
+ texmf-dist/tex/latex/psnfss/pifont.sty
+ texmf-dist/tex/latex/psnfss/t1bch.fd
+ texmf-dist/tex/latex/psnfss/t1pag.fd
+ texmf-dist/tex/latex/psnfss/t1pbk.fd
+ texmf-dist/tex/latex/psnfss/t1pcr.fd
+ texmf-dist/tex/latex/psnfss/t1phv.fd
+ texmf-dist/tex/latex/psnfss/t1pnc.fd
+ texmf-dist/tex/latex/psnfss/t1ppl.fd
+ texmf-dist/tex/latex/psnfss/t1pplj.fd
+ texmf-dist/tex/latex/psnfss/t1pplx.fd
+ texmf-dist/tex/latex/psnfss/t1ptm.fd
+ texmf-dist/tex/latex/psnfss/t1put.fd
+ texmf-dist/tex/latex/psnfss/t1pzc.fd
+ texmf-dist/tex/latex/psnfss/times.sty
+ texmf-dist/tex/latex/psnfss/ts1bch.fd
+ texmf-dist/tex/latex/psnfss/ts1pag.fd
+ texmf-dist/tex/latex/psnfss/ts1pbk.fd
+ texmf-dist/tex/latex/psnfss/ts1pcr.fd
+ texmf-dist/tex/latex/psnfss/ts1phv.fd
+ texmf-dist/tex/latex/psnfss/ts1pnc.fd
+ texmf-dist/tex/latex/psnfss/ts1ppl.fd
+ texmf-dist/tex/latex/psnfss/ts1pplj.fd
+ texmf-dist/tex/latex/psnfss/ts1pplx.fd
+ texmf-dist/tex/latex/psnfss/ts1ptm.fd
+ texmf-dist/tex/latex/psnfss/ts1put.fd
+ texmf-dist/tex/latex/psnfss/ts1pzc.fd
+ texmf-dist/tex/latex/psnfss/ufplm.fd
+ texmf-dist/tex/latex/psnfss/ufplmbb.fd
+ texmf-dist/tex/latex/psnfss/upsy.fd
+ texmf-dist/tex/latex/psnfss/upzd.fd
+ texmf-dist/tex/latex/psnfss/utopia.sty
+catalogue-version 9.2a
+catalogue-date 2007-09-28 22:20:10 +0200
+catalogue-ctan /macros/latex/required/psnfss
+catalogue-license lppl
+
+name pspicture
+category Package
+revision 1715
+shortdesc PostScript picture support.
+longdesc A replacement for LaTeX's picture macros, that uses PostScript
+longdesc \special commands. The package is now largely superseded by
+longdesc pict2e.
+docfiles size=65794
+ texmf-dist/doc/latex/pspicture/README details="Package Readme"
+ texmf-dist/doc/latex/pspicture/pspicture.pdf details="Package documentation"
+srcfiles size=19684
+ texmf-dist/source/latex/pspicture/pspicture.dtx
+ texmf-dist/source/latex/pspicture/pspicture.ins
+runfiles size=2597
+ texmf-dist/tex/latex/pspicture/pspicture.sty
+catalogue-version
+catalogue-date 2007-03-11 16:56:01 +0100
+catalogue-ctan /macros/latex/contrib/pspicture
+catalogue-license lppl
+
+name pst-2dplot
+category Package
+revision 4069
+shortdesc A PSTricks package for drawing 2D curves.
+longdesc Pst-2dplot is a pstricks package that offers an easy-to-use and
+longdesc intuitive tool for plotting 2-d curves. It defines an
+longdesc environment with commands similar to MATLAB for plotting.
+docfiles size=115342
+ texmf-dist/doc/generic/pst-2dplot/README
+ texmf-dist/doc/generic/pst-2dplot/data1.data
+ texmf-dist/doc/generic/pst-2dplot/data2.data
+ texmf-dist/doc/generic/pst-2dplot/pst-2dplot.pdf details="Package documentation"
+runfiles size=5885
+ texmf-dist/tex/latex/pst-2dplot/pst-2dplot.sty
+catalogue-version 1.0
+catalogue-date 2006-12-31 09:43:01 +0000
+catalogue-ctan /graphics/pstricks/contrib/pst-2dplot
+catalogue-license lppl
+
+name pst-3d
+category Package
+revision 2155
+shortdesc A PSTricks package for tilting and other pseudo-3D tricks.
+longdesc The pst-3d package provides basic macros for shadows, tilting
+longdesc and three dimensional representations of text or graphical
+longdesc objects.
+docfiles size=242643
+ texmf-dist/doc/generic/pst-3d/Changes
+ texmf-dist/doc/generic/pst-3d/README details="Readme"
+ texmf-dist/doc/generic/pst-3d/pst-3d.pdf details="Package documentation"
+srcfiles size=56971
+ texmf-dist/source/generic/pst-3d/pst-3d.dtx
+ texmf-dist/source/generic/pst-3d/pst-3d.ins
+runfiles size=11356
+ texmf-dist/tex/generic/pst-3d/pst-3d.tex
+ texmf-dist/tex/latex/pst-3d/pst-3d.sty
+catalogue-version 1.0
+catalogue-date 2007-02-25 15:34:59 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-3d
+catalogue-license lppl
+
+name pst-3dplot
+category Package
+revision 5459
+shortdesc Draw 3d curves and graphs using PSTricks.
+longdesc A package using PSTricks to draw a large variety of graphs and
+longdesc plots, including 3D maths functions. Data can be read from
+longdesc external data files, making this package a generic tool for
+longdesc graphing within TeX/LaTeX, without the need for external tools.
+longdesc Uses the xkeyval package to provide its command argument
+longdesc decoding.
+docfiles size=2389267
+ texmf-dist/doc/generic/pst-3dplot/Changes
+ texmf-dist/doc/generic/pst-3dplot/README details="Readme"
+ texmf-dist/doc/generic/pst-3dplot/pst-3dplot-doc.bib
+ texmf-dist/doc/generic/pst-3dplot/pst-3dplot-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-3dplot/pst-3dplot-doc.tex
+runfiles size=89227
+ texmf-dist/dvips/pst-3dplot/pst-3dplot.pro
+ texmf-dist/tex/generic/pst-3dplot/pst-3dplot.tex
+ texmf-dist/tex/latex/pst-3dplot/pst-3dplot.sty
+catalogue-version 1.77
+catalogue-date 2007-10-03 23:53:40 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-3dplot
+catalogue-license lppl
+
+name pst-asr
+category Package
+revision 5504
+shortdesc Typeset autosegmental representations for linguists.
+longdesc The package uses PStricks to typeset autosegmental
+longdesc representations. It uses the PStricks (of course), and xkeyval
+longdesc packages.
+docfiles size=68029
+ texmf-dist/doc/generic/pst-asr/README
+ texmf-dist/doc/generic/pst-asr/pst-asr-examples.pdf details="Examples of usage"
+ texmf-dist/doc/generic/pst-asr/pst-asr-examples.tex
+runfiles size=21771
+ texmf-dist/tex/generic/pst-asr/pst-asr.tex
+ texmf-dist/tex/latex/pst-asr/pst-asr.sty
+catalogue-version 1.2
+catalogue-date 2006-09-25 20:01:00 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-asr
+catalogue-license lppl
+
+name pst-bar
+category Package
+revision 2411
+shortdesc Produces bar charts using pstricks.
+longdesc pst-bar uses pstricks to draw bar charts from data stored in a
+longdesc comma-delimited file. Several types of bar charts may be drawn,
+longdesc and the drawing parameters are highly customizable. No external
+longdesc packages are required except those that are part of the
+longdesc standard pstricks distribution. This release should be
+longdesc considered a beta with all of the caveats that beta releases
+longdesc typically carry.
+docfiles size=111823
+ texmf-dist/doc/generic/pst-bar/LICENSE
+ texmf-dist/doc/generic/pst-bar/README details="Readme"
+ texmf-dist/doc/generic/pst-bar/pst-bar-doc.pdf details="Package documentation"
+runfiles size=13440
+ texmf-dist/dvips/pst-bar/pst-bar.pro
+ texmf-dist/tex/generic/pst-bar/pst-bar.tex
+ texmf-dist/tex/latex/pst-bar/pst-bar.sty
+catalogue-version
+catalogue-date 2007-02-25 15:34:59 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-bar
+catalogue-license lppl
+
+name pst-barcode
+category Package
+revision 4401
+shortdesc Print barcodes using PostScript.
+longdesc The pst-barcode package allows printing of barcodes. Possible
+longdesc barcodes are: EAN-13; EAN-8; UPC-A; UPC-E; EAN-5; EAN-2; ISBN-
+longdesc 10 and ISBN-13; CODE-39; CODE-128 and UCC/EAN-128; Rationalized
+longdesc Codabar; Interleaved 2 of 5 and ITF-14; Code 2 of 5; Postnet;
+longdesc Royal Mail; Kix (Customer index); Dutch Mail; Australian Postal
+longdesc Service; Onecode; Symbol; MSI; Plessey; Pharmacode; Reduced
+longdesc Space Symbology (RSS); RSS-14; RSS limited; and RSS expanded.
+longdesc As a pstricks package, pst-barcode requires pstricks. The
+longdesc package uses PostScript for calculating the bars. For PDF
+longdesc output use a multi-pass mechansism such as pst-pdf.
+docfiles size=279679
+ texmf-dist/doc/generic/pst-barcode/Changes
+ texmf-dist/doc/generic/pst-barcode/README details="Readme"
+ texmf-dist/doc/generic/pst-barcode/pst-barcode-doc.bib
+ texmf-dist/doc/generic/pst-barcode/pst-barcode-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-barcode/pst-barcode-doc.tex
+srcfiles size=1089
+ texmf-dist/source/generic/pst-barcode/Makefile
+runfiles size=116187
+ texmf-dist/dvips/pst-barcode/pst-barcode.pro
+ texmf-dist/tex/generic/pst-barcode/pst-barcode.tex
+ texmf-dist/tex/latex/pst-barcode/pst-barcode.sty
+catalogue-version 0.04
+catalogue-date 2007-07-29 12:18:45 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-barcode
+catalogue-license lppl
+
+name pst-blur
+category Package
+revision 3494
+shortdesc PSTricks package for "blurred" shadows.
+longdesc Pst-blur is a package built for use with PSTricks. It provides
+longdesc macros that apply blurring to the normal shadow function of
+longdesc PSTricks.
+docfiles size=99284
+ texmf-dist/doc/generic/pst-blur/Changes
+ texmf-dist/doc/generic/pst-blur/README
+ texmf-dist/doc/generic/pst-blur/pst-blur.pdf
+srcfiles size=19047
+ texmf-dist/source/generic/pst-blur/Makefile
+ texmf-dist/source/generic/pst-blur/pst-blur.dtx
+ texmf-dist/source/generic/pst-blur/pst-blur.ins
+runfiles size=6774
+ texmf-dist/dvips/pst-blur/pst-blur.pro
+ texmf-dist/tex/generic/pst-blur/pst-blur.tex
+ texmf-dist/tex/latex/pst-blur/pst-blur.sty
+catalogue-version 2.0
+catalogue-date 2006-12-19 19:38:44 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-blur
+catalogue-license lppl
+
+name pst-circ
+category Package
+revision 5205
+shortdesc PSTricks package for drawing electric circuits.
+longdesc Pst-circ is a package built using PSTricks and in particular
+longdesc pst-node. It can easily draw current 2-terminal devices and
+longdesc some 3- and 4-terminal devices used in electronic or electric
+longdesc theory. The package’s macros are designed with a view to
+longdesc ‘logical’ representation of circuits, as far as possible,
+longdesc so as to relieve the user of purely graphical considerations
+longdesc when expressing a circuit.
+docfiles size=556569
+ texmf-dist/doc/generic/pst-circ/Changes
+ texmf-dist/doc/generic/pst-circ/README details="Readme"
+ texmf-dist/doc/generic/pst-circ/pst-circ-doc.bib
+ texmf-dist/doc/generic/pst-circ/pst-circ-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-circ/pst-circ-doc.tex
+srcfiles size=1102
+ texmf-dist/source/generic/pst-circ/Makefile
+runfiles size=73283
+ texmf-dist/dvips/pst-circ/pst-circ.pro
+ texmf-dist/tex/generic/pst-circ/pst-circ.tex
+ texmf-dist/tex/latex/pst-circ/pst-circ.sty
+catalogue-version 1.42
+catalogue-date 2007-10-15 12:34:30 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-circ
+catalogue-license lppl
+
+name pst-coil
+category Package
+revision 2559
+shortdesc A PSTricks package for coils, etc.
+longdesc Pst-coil is a PSTricks based package for coils and zigzags and
+longdesc for coil and zigzag node connections.
+docfiles size=194904
+ texmf-dist/doc/generic/pst-coil/Changes
+ texmf-dist/doc/generic/pst-coil/README details="Package README"
+ texmf-dist/doc/generic/pst-coil/pst-coil-doc.bib
+ texmf-dist/doc/generic/pst-coil/pst-coil-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-coil/pst-coil-doc.tex
+srcfiles size=1083
+ texmf-dist/source/generic/pst-coil/Makefile
+runfiles size=6157
+ texmf-dist/dvips/pst-coil/pst-coil.pro
+ texmf-dist/tex/generic/pst-coil/pst-coil.tex
+ texmf-dist/tex/latex/pst-coil/pst-coil.sty
+catalogue-version 1.00
+catalogue-date 2007-02-28 00:07:21 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-coil
+catalogue-license lppl
+
+name pst-dbicons
+category Package
+revision 3319
+shortdesc Support for drawing ER diagrams.
+longdesc The package provides some useful macros in the database area.
+longdesc The package focusses on typesetting ER-Diagrams in a
+longdesc declarative style, i.e., by positioning some nodes and defining
+longdesc the position of all other nodes relative to them by using the
+longdesc standard database terminology. The PSTricks package is required
+longdesc for using pst-dbicons, but no deep knowledge of PSTricks
+longdesc commands is required (although such knowledge is useful for
+longdesc exploiting the full functionality of the package).
+docfiles size=150969
+ texmf-dist/doc/generic/pst-dbicons/Changes
+ texmf-dist/doc/generic/pst-dbicons/README details="Package README"
+ texmf-dist/doc/generic/pst-dbicons/pst-dbicons.pdf details="Package documentation"
+srcfiles size=45106
+ texmf-dist/source/generic/pst-dbicons/Makefile
+ texmf-dist/source/generic/pst-dbicons/pst-dbicons.drv
+ texmf-dist/source/generic/pst-dbicons/pst-dbicons.dtx
+ texmf-dist/source/generic/pst-dbicons/pst-dbicons.ins
+runfiles size=12004
+ texmf-dist/tex/latex/pst-dbicons/pst-dbicons.sty
+catalogue-version 0.20
+catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-dbicons
+catalogue-license lppl
+
+name pst-diffraction
+category Package
+revision 5058
+shortdesc Print diffraction patterns from various apertures.
+longdesc The package enables the user to draw the diffraction patterns
+longdesc for different geometric forms of apertures for monochromatic
+longdesc light. The aperture stops can have rectangular, circular or
+longdesc triangular openings. The view of the diffraction may be planar,
+longdesc or three-dimensional. Options available are the dimensions of
+longdesc the aperture under consideration and of the particular optical
+longdesc setting, e.g. the radius in case of an circular opening.
+longdesc Moreover one can choose the wavelength of the light (the
+longdesc associated color will be calculated by the package).
+docfiles size=2493874
+ texmf-dist/doc/generic/pst-diffraction/Changes
+ texmf-dist/doc/generic/pst-diffraction/README details="Readme"
+ texmf-dist/doc/generic/pst-diffraction/pst-diffraction-doc.bib
+ texmf-dist/doc/generic/pst-diffraction/pst-diffraction-docDE.pdf details="Package documentation (German)" language="de"
+ texmf-dist/doc/generic/pst-diffraction/pst-diffraction-docDE.tex
+ texmf-dist/doc/generic/pst-diffraction/pst-diffraction-docE.pdf details="Package documentation (English)" language="en"
+ texmf-dist/doc/generic/pst-diffraction/pst-diffraction-docE.tex
+ texmf-dist/doc/generic/pst-diffraction/pst-diffraction-docFR.pdf details="Package documentation (French)" language="fr"
+ texmf-dist/doc/generic/pst-diffraction/pst-diffraction-docFR.tex
+srcfiles size=1580
+ texmf-dist/source/generic/pst-diffraction/Makefile
+runfiles size=17886
+ texmf-dist/tex/generic/pst-diffraction/pst-diffraction.tex
+ texmf-dist/tex/latex/pst-diffraction/pst-diffraction.sty
+catalogue-version 2.02
+catalogue-date 2007-09-27 14:50:03 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-diffraction
+catalogue-license lppl
+
+name pst-eps
+category Package
+revision 2565
+shortdesc Create EPS files from PSTricks figures.
+longdesc Pst-eps is a PSTricks-based package for exporting PSTricks
+longdesc images ‘on the fly’ to encapsulated PostScript (EPS) image
+longdesc files, which can then be read into a document in the usual way.
+docfiles size=129222
+ texmf-dist/doc/generic/pst-eps/Changes
+ texmf-dist/doc/generic/pst-eps/README details="Package README"
+ texmf-dist/doc/generic/pst-eps/pst-eps-doc.bib
+ texmf-dist/doc/generic/pst-eps/pst-eps-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-eps/pst-eps-doc.tex
+ texmf-dist/doc/generic/pst-eps/spirale.eps
+srcfiles size=1081
+ texmf-dist/source/generic/pst-eps/Makefile
+runfiles size=6839
+ texmf-dist/tex/generic/pst-eps/pst-eps.tex
+ texmf-dist/tex/latex/pst-eps/pst-eps.sty
+catalogue-version 1.0
+catalogue-date 2007-02-28 00:07:21 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-eps
+catalogue-license lppl
+
+name pst-eucl
+category Package
+revision 2719
+shortdesc Euclidian geometry with pstricks.
+longdesc The pst-eucl package allow the drawing of Euclidean geometric
+longdesc figures using TeX pstricks macros for specifying mathematical
+longdesc constraints. It is thus possible to build point using common
+longdesc transformations or intersections. The use of coordinates is
+longdesc limited to points which controlled the figure.
+docfiles size=966470
+ texmf-dist/doc/generic/pst-eucl/Exemples/abscur.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/abscur_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/angle.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/angle_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/arc.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/arc_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/astro.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/astro_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/bissec.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/bissec_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/ccirc.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/ccirc_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/cercle.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/cercle_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/cinscex.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/cinscex_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/curvetype.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/curvetype_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/cyclo.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/cyclo_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/delto.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/droite.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/droite_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/envcardi.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/envcardi_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/envellipse.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/envellipse_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/euler.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/euler_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/fracthom.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/fracthom_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/gal_biss.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/gal_biss_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/gauss.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/gauss_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/gencur.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/gencur_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/geohyper.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/geohyper_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/geonode.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/geonode_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/german_ra.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/german_ra_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/grav.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/grav_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/homothetie.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/homothetie_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/hyperbole.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/hyperbole_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/hypocyclo.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interCC.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interCC_bis_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interCC_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interDC.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interDC_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interDD.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interDD_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interFC.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interFC_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interFF.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interFF_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interFL.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/interFL_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/mediator.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/mediator_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/milieu.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/milieu_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/oij.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/oij_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/orthocentre.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/orthocentre_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/orthoethyper.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/orthoethyper_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/parabole.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/parabole_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/projection.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/projection_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/ptfermat.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/ptfermat_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/remarq.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/remarq_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/rotation.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/rotation_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/segmentmark.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/segmentmark_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/symcentrale.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/symcentrale_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/symorthogonale.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/symorthogonale_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/tg1c.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/tg1c_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/tg2c.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/tg2c_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/translation.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/translation_in.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/triangle.tex
+ texmf-dist/doc/generic/pst-eucl/Exemples/triangle_in.tex
+ texmf-dist/doc/generic/pst-eucl/README
+ texmf-dist/doc/generic/pst-eucl/euclide.pdf
+ texmf-dist/doc/generic/pst-eucl/euclide.tex
+ texmf-dist/doc/generic/pst-eucl/euclide_english.pdf
+ texmf-dist/doc/generic/pst-eucl/euclide_english.tex
+ texmf-dist/doc/generic/pst-eucl/euclide_macros.ist
+runfiles size=72694
+ texmf-dist/dvips/pst-eucl/pst-eucl.pro
+ texmf-dist/tex/generic/pst-eucl/pst-eucl.tex
+ texmf-dist/tex/latex/pst-eucl/euclide.sty
+ texmf-dist/tex/latex/pst-eucl/pst-eucl.sty
+catalogue-version 1.3.2
+catalogue-date 2006-12-19 19:38:44 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-eucl
+catalogue-license lppl
+
+name pst-fill
+category Package
+revision 5460
+shortdesc Fill or tile areas with PSTricks.
+longdesc Pst-fill is a PSTricks-based package for filling and tiling
+longdesc areas or characters.
+docfiles size=1231155
+ texmf-dist/doc/generic/pst-fill/Changes
+ texmf-dist/doc/generic/pst-fill/README details="Package README"
+ texmf-dist/doc/generic/pst-fill/pst-fill.pdf details="Package documentation"
+srcfiles size=72076
+ texmf-dist/source/generic/pst-fill/Makefile
+ texmf-dist/source/generic/pst-fill/pst-fill.dtx
+ texmf-dist/source/generic/pst-fill/pst-fill.ins
+runfiles size=13998
+ texmf-dist/tex/generic/pst-fill/pst-fill.tex
+ texmf-dist/tex/latex/pst-fill/pst-fill.sty
+catalogue-version 1.01
+catalogue-date 2007-03-11 15:39:31 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-fill
+catalogue-license lppl
+
+name pst-fr3d
+category Package
+revision 1240
+shortdesc Draw 3-dimensional framed boxes using PSTricks.
+longdesc A package using PSTricks to draw three dimensional framed boxes
+longdesc using a macro \PstFrameBoxThreeD. The macro is especially
+longdesc useful for drawing 3d-seeming buttons.
+docfiles size=195305
+ texmf-dist/doc/generic/pst-fr3d/Changes
+ texmf-dist/doc/generic/pst-fr3d/README details="Readme"
+ texmf-dist/doc/generic/pst-fr3d/pst-fr3d.pdf details="Package documentation"
+srcfiles size=30091
+ texmf-dist/source/generic/pst-fr3d/pst-fr3d.dtx
+ texmf-dist/source/generic/pst-fr3d/pst-fr3d.ins
+runfiles size=7139
+ texmf-dist/tex/generic/pst-fr3d/pst-fr3d.tex
+ texmf-dist/tex/latex/pst-fr3d/pst-fr3d.sty
+catalogue-version 1.10
+catalogue-date 2007-02-28 00:07:21 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-fr3d
+catalogue-license lppl
+
+name pst-fractal
+category Package
+revision 5050
+shortdesc Draw fractal sets using PSTricks.
+longdesc The package will draw the Julia and Mandelbrot sets, the
+longdesc Sierpinski triangle, Koch flake, and Apollonius Circle as well
+longdesc as fractal trees (which need not be balanced) with a variety of
+longdesc different parameters (including varying numbers of iterations).
+longdesc The package uses the pst-xkey package, part of the xkeyval
+longdesc distribution.
+docfiles size=1954817
+ texmf-dist/doc/generic/pst-fractal/Changes
+ texmf-dist/doc/generic/pst-fractal/README details="Readme"
+ texmf-dist/doc/generic/pst-fractal/images/1.png
+ texmf-dist/doc/generic/pst-fractal/images/10.png
+ texmf-dist/doc/generic/pst-fractal/images/11.png
+ texmf-dist/doc/generic/pst-fractal/images/12.png
+ texmf-dist/doc/generic/pst-fractal/images/13.png
+ texmf-dist/doc/generic/pst-fractal/images/14.png
+ texmf-dist/doc/generic/pst-fractal/images/15.png
+ texmf-dist/doc/generic/pst-fractal/images/16.png
+ texmf-dist/doc/generic/pst-fractal/images/17.png
+ texmf-dist/doc/generic/pst-fractal/images/18.png
+ texmf-dist/doc/generic/pst-fractal/images/19.png
+ texmf-dist/doc/generic/pst-fractal/images/2.png
+ texmf-dist/doc/generic/pst-fractal/images/20.png
+ texmf-dist/doc/generic/pst-fractal/images/21.png
+ texmf-dist/doc/generic/pst-fractal/images/22.png
+ texmf-dist/doc/generic/pst-fractal/images/23.png
+ texmf-dist/doc/generic/pst-fractal/images/24.png
+ texmf-dist/doc/generic/pst-fractal/images/25.png
+ texmf-dist/doc/generic/pst-fractal/images/26.png
+ texmf-dist/doc/generic/pst-fractal/images/27.png
+ texmf-dist/doc/generic/pst-fractal/images/28.png
+ texmf-dist/doc/generic/pst-fractal/images/29.png
+ texmf-dist/doc/generic/pst-fractal/images/3.png
+ texmf-dist/doc/generic/pst-fractal/images/30.png
+ texmf-dist/doc/generic/pst-fractal/images/31.png
+ texmf-dist/doc/generic/pst-fractal/images/32.png
+ texmf-dist/doc/generic/pst-fractal/images/33.png
+ texmf-dist/doc/generic/pst-fractal/images/34.png
+ texmf-dist/doc/generic/pst-fractal/images/35.png
+ texmf-dist/doc/generic/pst-fractal/images/36.png
+ texmf-dist/doc/generic/pst-fractal/images/37.png
+ texmf-dist/doc/generic/pst-fractal/images/38.png
+ texmf-dist/doc/generic/pst-fractal/images/39.png
+ texmf-dist/doc/generic/pst-fractal/images/4.png
+ texmf-dist/doc/generic/pst-fractal/images/40.png
+ texmf-dist/doc/generic/pst-fractal/images/41.png
+ texmf-dist/doc/generic/pst-fractal/images/42.png
+ texmf-dist/doc/generic/pst-fractal/images/43.png
+ texmf-dist/doc/generic/pst-fractal/images/44.png
+ texmf-dist/doc/generic/pst-fractal/images/45.png
+ texmf-dist/doc/generic/pst-fractal/images/5.png
+ texmf-dist/doc/generic/pst-fractal/images/6.png
+ texmf-dist/doc/generic/pst-fractal/images/7.png
+ texmf-dist/doc/generic/pst-fractal/images/8.png
+ texmf-dist/doc/generic/pst-fractal/images/9.png
+ texmf-dist/doc/generic/pst-fractal/pst-fractal-doc.bib
+ texmf-dist/doc/generic/pst-fractal/pst-fractal-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-fractal/pst-fractal-doc.tex
+srcfiles size=1111
+ texmf-dist/source/generic/pst-fractal/Makefile
+runfiles size=19437
+ texmf-dist/dvips/pst-fractal/pst-fractal.pro
+ texmf-dist/tex/generic/pst-fractal/pst-fractal.tex
+ texmf-dist/tex/latex/pst-fractal/pst-fractal.sty
+catalogue-version 0.05
+catalogue-date 2007-09-26 08:57:31 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-fractal
+catalogue-license lppl
+
+name pst-func
+category Package
+revision 4854
+shortdesc PSTricks package for plotting mathematical functions.
+longdesc pst-func is a package built for use with PSTricks. It provides
+longdesc macros for plotting various mathematical functions: –
+longdesc polynomials and their derivatives f(x)=an*x^n+an-1*x^(n-
+longdesc 1)+...+a0 defined by the coefficients a0 a1 a2 ... and the
+longdesc derivative order; – the Fourier sum f(x) = a0/2+a1cos(omega
+longdesc x)+...+b1sin(omega x)+... defined by the coefficients a0 a1 a2
+longdesc ... b1 b2 b3 ...; – the Bessel function defined by its order;
+longdesc – the Gauss function defined by sigma and mu; – the
+longdesc superellipse function (the Lamé curve); – various
+longdesc integration-derived functions; – binomial distribution
+longdesc functions; and – implicit functions. The plots may be
+longdesc generated as volumes of rotation about the X-axis, as well.
+docfiles size=2392176
+ texmf-dist/doc/generic/pst-func/Changes
+ texmf-dist/doc/generic/pst-func/README details="Package README"
+ texmf-dist/doc/generic/pst-func/pst-func-doc.bib
+ texmf-dist/doc/generic/pst-func/pst-func-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-func/pst-func-doc.tex
+srcfiles size=1085
+ texmf-dist/source/generic/pst-func/Makefile
+runfiles size=30614
+ texmf-dist/dvips/pst-func/pst-func.pro
+ texmf-dist/tex/generic/pst-func/pst-func.tex
+ texmf-dist/tex/latex/pst-func/pst-func.sty
+catalogue-version 0.50
+catalogue-date 2007-09-03 21:13:43 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-func
+catalogue-license lppl
+
+name pst-geo
+category Package
+revision 3148
+shortdesc Geographical Projections
+longdesc pst-geo is a set of PSTricks related packages for various
+longdesc cartographic projections of the terrestrial sphere. The package
+longdesc pst-map2d provides conventional projections such as Mercator,
+longdesc Lambert, cylindrical, etc. The package pst-map3d treats
+longdesc representation in three dimensions of the terrestrial sphere.
+longdesc Packages pst-map2dII and pst-map3dII allow use of the CIA World
+longdesc DataBank II. Various parameters of the packages allow for
+longdesc choice of the level of the detail and the layouts possible
+longdesc (cities, borders, rivers etc). Substantial data files are
+longdesc provided.
+docfiles size=45390
+ texmf-dist/doc/generic/pst-geo/Changes
+ texmf-dist/doc/generic/pst-geo/README details="Readme"
+ texmf-dist/doc/generic/pst-geo/README.TEXLIVE
+ texmf-dist/doc/generic/pst-geo/doc-map2d.tex
+ texmf-dist/doc/generic/pst-geo/doc-map2dII.tex
+ texmf-dist/doc/generic/pst-geo/doc-map3d.tex
+ texmf-dist/doc/generic/pst-geo/doc-map3dII.tex
+ texmf-dist/doc/generic/pst-geo/examples2d.tgz
+ texmf-dist/doc/generic/pst-geo/examples3d.tgz
+runfiles size=50979
+ texmf-dist/dvips/pst-geo/map3d.pro
+ texmf-dist/dvips/pst-geo/map3dII.pro
+ texmf-dist/tex/generic/pst-geo/pst-map2d.tex
+ texmf-dist/tex/generic/pst-geo/pst-map2dII.tex
+ texmf-dist/tex/generic/pst-geo/pst-map3d.tex
+ texmf-dist/tex/generic/pst-geo/pst-map3dII.tex
+ texmf-dist/tex/latex/pst-geo/pst-map2d.sty
+ texmf-dist/tex/latex/pst-geo/pst-map2dII.sty
+ texmf-dist/tex/latex/pst-geo/pst-map3d.sty
+ texmf-dist/tex/latex/pst-geo/pst-map3dII.sty
+catalogue-version 1.10
+catalogue-date 2007-03-11 16:56:01 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-geo
+catalogue-license lppl
+
+name pst-ghsb
+category Package
+revision 1242
+docfiles size=96167
+ texmf-dist/doc/generic/pst-ghsb/README
+ texmf-dist/doc/generic/pst-ghsb/t-ghsb.pdf
+ texmf-dist/doc/generic/pst-ghsb/t-ghsb.tex
+ texmf-dist/doc/generic/pst-ghsb/t2-ghsb.pdf
+ texmf-dist/doc/generic/pst-ghsb/t2-ghsb.tex
+runfiles size=7293
+ texmf-dist/dvips/pst-ghsb/pst-ghsb.pro
+ texmf-dist/tex/generic/pst-ghsb/pst-ghsb.tex
+ texmf-dist/tex/latex/pst-ghsb/pst-ghsb.sty
+
+name pst-gr3d
+category Package
+revision 1243
+shortdesc Three dimensional grids with PSTricks.
+longdesc This PSTricks package provides a command \PstGridThreeD that
+longdesc will draw a three dimensional grid, offering a number of
+longdesc options for its appearance.
+docfiles size=189670
+ texmf-dist/doc/generic/pst-gr3d/Changes
+ texmf-dist/doc/generic/pst-gr3d/README details="Readme"
+ texmf-dist/doc/generic/pst-gr3d/pst-gr3d.pdf details="Package documentation"
+srcfiles size=33590
+ texmf-dist/source/latex/pst-gr3d/pst-gr3d.dtx
+ texmf-dist/source/latex/pst-gr3d/pst-gr3d.ins
+runfiles size=7489
+ texmf-dist/tex/generic/pst-gr3d/pst-gr3d.tex
+ texmf-dist/tex/latex/pst-gr3d/pst-gr3d.sty
+catalogue-version 1.34
+catalogue-date 2006-12-19 19:38:44 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-gr3d
+catalogue-license lppl
+
+name pst-grad
+category Package
+revision 4677
+shortdesc Filling with colour gradients, using PStricks.
+longdesc Pst-grad is a PSTricks based package for filling with colour
+longdesc gradients. Supported are colours in the RGB, CMYK or HSB
+longdesc models. Other colour gradient mechanisms are to be found in
+longdesc package pst-slpe.
+docfiles size=274141
+ texmf-dist/doc/generic/pst-grad/Changes
+ texmf-dist/doc/generic/pst-grad/pst-grad-doc.bib
+ texmf-dist/doc/generic/pst-grad/pst-grad-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-grad/pst-grad-doc.tex
+runfiles size=12488
+ texmf-dist/dvips/pst-grad/pst-grad.pro
+ texmf-dist/tex/generic/pst-grad/pst-grad.tex
+ texmf-dist/tex/latex/pst-grad/pst-grad.sty
+catalogue-version 1.06
+catalogue-date 2007-07-11 11:50:31 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-grad
+catalogue-license lppl
+
+name pst-infixplot
+category Package
+revision 2718
+shortdesc Using pstricks plotting capacities with infix expressions rather than RPN
+longdesc Plotting functions with pst-plot is very powerful but sometimes
+longdesc difficult to learn since the syntax of \psplot and
+longdesc \parametricplot requires some PostScript knowledge. The infix-
+longdesc RPN and pst-infixplot styles simplify the usage of pst-plot for
+longdesc the beginner, providing macro commands that convert natural
+longdesc mathematical expressions to PostScript syntax.
+docfiles size=336613
+ texmf-dist/doc/generic/pst-infixplot/README
+ texmf-dist/doc/generic/pst-infixplot/pst-infixplot-doc.ps
+ texmf-dist/doc/generic/pst-infixplot/pst-infixplot-doc.tex
+ texmf-dist/doc/generic/pst-infixplot/pst-infixplot.pdf
+runfiles size=14347
+ texmf-dist/tex/generic/pst-infixplot/infix-RPN.tex
+ texmf-dist/tex/generic/pst-infixplot/pst-infixplot.tex
+ texmf-dist/tex/latex/pst-infixplot/infix-RPN.sty
+ texmf-dist/tex/latex/pst-infixplot/pst-infixplot.sty
+catalogue-version 0.11
+catalogue-date 2006-12-19 19:38:44 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-infixplot
+catalogue-license lppl
+
+name pst-jtree
+category Package
+revision 5496
+docfiles size=339747
+ texmf-dist/doc/generic/pst-jtree/README
+ texmf-dist/doc/generic/pst-jtree/pst-jtree-doc.pdf
+ texmf-dist/doc/generic/pst-jtree/pst-jtree-examples.pdf
+ texmf-dist/doc/generic/pst-jtree/pst-jtree-examples.tex
+runfiles size=18775
+ texmf-dist/tex/generic/pst-jtree/pst-jtree.tex
+ texmf-dist/tex/latex/pst-jtree/pst-jtree.sty
+
+name pst-labo
+category Package
+revision 2951
+shortdesc Draw objects for Chemistry laboratories.
+longdesc Pst-labo is a PSTricks related package for drawing basic and
+longdesc complex chemical objects. The documentation of the package is
+longdesc illuminated with plenty of illustrations together with their
+longdesc source code, making it an easy read.
+docfiles size=3589679
+ texmf-dist/doc/generic/pst-labo/Changes
+ texmf-dist/doc/generic/pst-labo/README details="Readme"
+ texmf-dist/doc/generic/pst-labo/pst-labo-doc.bib
+ texmf-dist/doc/generic/pst-labo/pst-labo-docDE.ltx
+ texmf-dist/doc/generic/pst-labo/pst-labo-docDE.pdf details="German documentation:"
+ texmf-dist/doc/generic/pst-labo/pst-labo-docDE.tex
+ texmf-dist/doc/generic/pst-labo/pst-labo-docEN.ltx
+ texmf-dist/doc/generic/pst-labo/pst-labo-docEN.pdf details="English documentation:"
+ texmf-dist/doc/generic/pst-labo/pst-labo-docEN.tex
+ texmf-dist/doc/generic/pst-labo/pst-labo-docFR.ltx
+ texmf-dist/doc/generic/pst-labo/pst-labo-docFR.pdf details="French documentation:"
+ texmf-dist/doc/generic/pst-labo/pst-labo-docFR.tex
+ texmf-dist/doc/generic/pst-labo/pstlabo8-tab1-DE.tex
+ texmf-dist/doc/generic/pst-labo/pstlabo8-tab1-EN.tex
+ texmf-dist/doc/generic/pst-labo/pstlabo8-tab1-FR.tex
+runfiles size=46501
+ texmf-dist/tex/generic/pst-labo/pst-labo.tex
+ texmf-dist/tex/generic/pst-labo/pst-laboObj.tex
+ texmf-dist/tex/latex/pst-labo/pst-labo.sty
+catalogue-version 2.03
+catalogue-date 2007-03-11 16:56:01 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-labo
+catalogue-license lppl
+
+name pst-lens
+category Package
+revision 1681
+shortdesc Lenses with PSTricks.
+longdesc This PSTricks package provides a really rather simple command
+longdesc \PstLens that will draw a lens. Command parameters provide a
+longdesc remarkable range of effects.
+docfiles size=491388
+ texmf-dist/doc/generic/pst-lens/Changes
+ texmf-dist/doc/generic/pst-lens/README details="Readme"
+ texmf-dist/doc/generic/pst-lens/pst-lens.pdf details="Package documentation"
+srcfiles size=38887
+ texmf-dist/source/generic/pst-lens/pst-lens.dtx
+ texmf-dist/source/generic/pst-lens/pst-lens.ins
+runfiles size=5297
+ texmf-dist/tex/generic/pst-lens/pst-lens.tex
+ texmf-dist/tex/latex/pst-lens/pst-lens.sty
+catalogue-version 1.02
+catalogue-date 2007-06-15 10:24:12 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-lens
+catalogue-license lppl
+
+name pst-light3d
+category Package
+revision 1248
+shortdesc 3D lighting effects for pstricks.
+longdesc A PSTricks package for three dimensional lighting effects on
+longdesc characters and PSTricks graphics, like lines, curves, plots,
+longdesc ...
+docfiles size=720625
+ texmf-dist/doc/generic/pst-light3d/README details="Readme"
+ texmf-dist/doc/generic/pst-light3d/Version-0.11
+ texmf-dist/doc/generic/pst-light3d/pst-light3d-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-light3d/pst-light3d-doc.tex
+runfiles size=6243
+ texmf-dist/dvips/pst-light3d/pst-light3d.pro
+ texmf-dist/tex/generic/pst-light3d/pst-light3d.tex
+ texmf-dist/tex/latex/pst-light3d/pst-light3d.sty
+catalogue-version 0.12
+catalogue-date 2007-03-11 16:56:01 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-light3d
+catalogue-license lppl
+
+name pst-math
+category Package
+revision 5333
+shortdesc Enhancement of PostScript math operators to use with pstricks
+longdesc PostScript lacks a lot of basic operators such as tan, acos,
+longdesc asin, cosh, sinh, tanh, acosh, asinh, atanh, exp (with e base).
+longdesc Also (oddly) cos and sin use arguments in degrees. Pst-math
+longdesc provides all those operators in a header file pst-math.pro with
+longdesc wrappers pst-math.sty and pst-math.tex. In addition, sinc,
+longdesc gauss, gammaln and bessel are implemented (only partially for
+longdesc the latter). pst-math is designed essentially to work with pst-
+longdesc plot but can be used in whatever PS code (such as pstricks
+longdesc SpecialCoor "!", useful to put labels). This work is in
+longdesc progress! PS is limited to single precision so complex
+longdesc operators like gammaln can give erroneous results.
+docfiles size=171950
+ texmf-dist/doc/generic/pst-math/Changes
+ texmf-dist/doc/generic/pst-math/README details="Readme"
+ texmf-dist/doc/generic/pst-math/pst-math-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-math/pst-math-doc.tex
+runfiles size=7099
+ texmf-dist/dvips/pst-math/pst-math.pro
+ texmf-dist/tex/generic/pst-math/pst-math.tex
+ texmf-dist/tex/latex/pst-math/pst-math.sty
+catalogue-version 0.3
+catalogue-date 2007-11-01 13:48:32 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-math
+catalogue-license lppl
+
+name pst-ob3d
+category Package
+revision 5292
+shortdesc Three dimensional objects using PSTricks.
+longdesc The package uses PSTricks to provide basic three-dimensional
+longdesc objects. As yet, only cubes (which can be deformed to
+longdesc rectangular parallelipipeds) and dies (which are only a special
+longdesc kind of cubes) are defined.
+docfiles size=196851
+ texmf-dist/doc/generic/pst-ob3d/Changes
+ texmf-dist/doc/generic/pst-ob3d/README
+ texmf-dist/doc/generic/pst-ob3d/pst-ob3d.pdf details="Package documentation"
+srcfiles size=45392
+ texmf-dist/source/generic/pst-ob3d/Makefile
+ texmf-dist/source/generic/pst-ob3d/pst-ob3d.dtx
+ texmf-dist/source/generic/pst-ob3d/pst-ob3d.ins
+runfiles size=11873
+ texmf-dist/tex/generic/pst-ob3d/pst-ob3d.tex
+ texmf-dist/tex/latex/pst-ob3d/pst-ob3d.sty
+catalogue-version 0.21
+catalogue-date 2007-08-22 21:26:14 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-ob3d
+catalogue-license lppl
+
+name pst-optexp
+category Package
+revision 4902
+shortdesc Drawing optical experimental setups.
+longdesc The package pst-optexp is a collection of optical components
+longdesc that facilitate easy sketching of optical experimental setups.
+longdesc Mechanisms for proper alignment of different components are
+longdesc provided internally. This way the user does not have to care
+longdesc for proper orientation of the elements.
+docfiles size=275489
+ texmf-dist/doc/generic/pst-optexp/Changes
+ texmf-dist/doc/generic/pst-optexp/README details="Readme"
+ texmf-dist/doc/generic/pst-optexp/doc/parque-nacional.eps
+ texmf-dist/doc/generic/pst-optexp/doc/pst-optexp-doc.pdf details="Package manual:"
+ texmf-dist/doc/generic/pst-optexp/doc/pst-optexp-doc.tex
+runfiles size=33408
+ texmf-dist/tex/generic/pst-optexp/pst-optexp.tex
+ texmf-dist/tex/latex/pst-optexp/pst-optexp.sty
+catalogue-version 1.1
+catalogue-date 2007-09-06 17:28:54 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-optexp
+catalogue-license lppl
+
+name pst-optic
+category Package
+revision 3001
+shortdesc Drawing optics diagrams.
+longdesc A package for drawing both reflective and refractive optics
+longdesc diagrams. The package requires pstricks later than version
+longdesc 1.10.
+docfiles size=862563
+ texmf-dist/doc/generic/pst-optic/Changes
+ texmf-dist/doc/generic/pst-optic/README details="Readme"
+ texmf-dist/doc/generic/pst-optic/pst-optic-doc.bib
+ texmf-dist/doc/generic/pst-optic/pst-optic-doc.pdf details="Package manual:"
+ texmf-dist/doc/generic/pst-optic/pst-optic-doc.tex
+ texmf-dist/doc/generic/pst-optic/pst-optic-examples.pdf details="Examples:"
+ texmf-dist/doc/generic/pst-optic/pst-optic-examples.tex
+srcfiles size=1085
+ texmf-dist/source/generic/pst-optic/Makefile
+runfiles size=72765
+ texmf-dist/tex/generic/pst-optic/pst-optic.tex
+ texmf-dist/tex/latex/pst-optic/pst-optic.sty
+catalogue-version 0.96
+catalogue-date 2007-03-11 16:56:01 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-optic
+catalogue-license dfsg
+
+name pst-osci
+category Package
+revision 2270
+shortdesc Oscgons with PSTricks.
+longdesc pst-osci is a PSTricks package enables you to produce
+longdesc oscilloscope "screen shots". Three channels can be used to
+longdesc represent the most common signals (damped or not): namely
+longdesc sinusoidal, rectangular, triangular, dog's tooth (left and
+longdesc right oriented). The third channel allows you to add, to
+longdesc subtract or to multiply the two other signals. Lissajous
+longdesc diagrams (XY-mode) can also be obtained.
+docfiles size=1399856
+ texmf-dist/doc/generic/pst-osci/Changes
+ texmf-dist/doc/generic/pst-osci/README
+ texmf-dist/doc/generic/pst-osci/oscilloscope.pdf details="French documentation:" language="fr"
+ texmf-dist/doc/generic/pst-osci/oscilloscope.tex
+ texmf-dist/doc/generic/pst-osci/pst-osci-doc.pdf details="English documentation:" language="en"
+ texmf-dist/doc/generic/pst-osci/pst-osci-doc.tex
+runfiles size=13033
+ texmf-dist/tex/generic/pst-osci/pst-osci.tex
+ texmf-dist/tex/latex/pst-osci/pst-osci.sty
+catalogue-version 2.82
+catalogue-date 2006-12-19 19:38:44 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-osci
+catalogue-license lppl
+
+name pst-pdf
+category Package
+revision 5461
+shortdesc Make PDF versions of graphics by processing between runs.
+longdesc The package pst-pdf simplifies the use of graphics from
+longdesc PSTricks and other PostScript code in PDF documents. As in
+longdesc building a bibliography with BibTEX additional external
+longdesc programmes are being invoked. In this case they are used to
+longdesc create a PDF file (\PDFcontainer) that will contain all this
+longdesc graphics material. In the final document this contents will be
+longdesc inserted instead of the original PostScript code. The package
+longdesc works with pstricks and requires a recent version of the
+longdesc preview package.
+docfiles size=1898772
+ texmf-dist/doc/generic/pst-pdf/CHANGES
+ texmf-dist/doc/generic/pst-pdf/CHANGES.tex
+ texmf-dist/doc/generic/pst-pdf/README details="README file"
+ texmf-dist/doc/generic/pst-pdf/elephant.ps
+ texmf-dist/doc/generic/pst-pdf/insect1.eps
+ texmf-dist/doc/generic/pst-pdf/insect15.eps
+ texmf-dist/doc/generic/pst-pdf/knuth.png
+ texmf-dist/doc/generic/pst-pdf/penguin.eps
+ texmf-dist/doc/generic/pst-pdf/psf-demo.eps
+ texmf-dist/doc/generic/pst-pdf/pst-pdf-DE.pdf details="German documentation:" language="de"
+ texmf-dist/doc/generic/pst-pdf/pst-pdf-example.pdf details="Example:"
+ texmf-dist/doc/generic/pst-pdf/pst-pdf-example.tex
+ texmf-dist/doc/generic/pst-pdf/pst-pdf.pdf details="English documentation:" language="en"
+ texmf-dist/doc/generic/pst-pdf/scripts/ps4pdf
+ texmf-dist/doc/generic/pst-pdf/scripts/ps4pdf.bat
+ texmf-dist/doc/generic/pst-pdf/scripts/ps4pdf.bat.noMiKTeX
+ texmf-dist/doc/generic/pst-pdf/scripts/ps4pdf.bat.w95
+srcfiles size=74285
+ texmf-dist/source/generic/pst-pdf/Makefile
+ texmf-dist/source/generic/pst-pdf/pst-pdf.dtx
+ texmf-dist/source/generic/pst-pdf/pst-pdf.ins
+runfiles size=14727
+ texmf-dist/tex/latex/pst-pdf/pst-pdf.sty
+catalogue-version 1.1p
+catalogue-date 2007-06-05 14:11:42 +0200
+catalogue-ctan /macros/latex/contrib/pst-pdf
+catalogue-license lppl
+
+name pst-pdgr
+category Package
+revision 5462
+shortdesc Draw medical pedigrees using pstricks.
+longdesc The package provides a set of macros based on PSTricks to draw
+longdesc medical pedigrees according to the recommendations for
+longdesc standardized human pedigree nomenclature. The drawing commands
+longdesc place the symbols on a pspicture canvas. An interface for
+longdesc making trees is also provided. The package may be used both
+longdesc with LaTeX and PlainTeX. A separate Perl program for generating
+longdesc TeX files from spreadsheets is available.
+docfiles size=195634
+ texmf-dist/doc/generic/pst-pdgr/NEWS
+ texmf-dist/doc/generic/pst-pdgr/README details="Readme"
+ texmf-dist/doc/generic/pst-pdgr/pst-pdgr.bib
+ texmf-dist/doc/generic/pst-pdgr/pst-pdgr.pdf details="Package documentation"
+srcfiles size=82915
+ texmf-dist/source/generic/pst-pdgr/Makefile
+ texmf-dist/source/generic/pst-pdgr/pst-pdgr.dtx
+ texmf-dist/source/generic/pst-pdgr/pst-pdgr.ins
+runfiles size=12244
+ texmf-dist/tex/generic/pst-pdgr/pst-pdgr.tex
+ texmf-dist/tex/latex/pst-pdgr/pst-pdgr.cfg
+ texmf-dist/tex/latex/pst-pdgr/pst-pdgr.sty
+catalogue-version 0.3
+catalogue-date 2007-08-14 12:06:32 +0200
+catalogue-ctan /graphics/pstricks/contrib/pedigree/pst-pdgr
+catalogue-license lppl
+
+name pst-poly
+category Package
+revision 1252
+shortdesc Polygons with PSTricks.
+longdesc This PSTricks package provides a really rather simple command
+longdesc \PstPolygon that will draw various regular and non-regular
+longdesc polygons (according to command parameters); various shortcuts
+longdesc to commonly-used polygons are provided, as well as a command
+longdesc \pspolygonbox that frames text with a polygon. The package uses
+longdesc the xkeyval package for argument decoding.
+docfiles size=202402
+ texmf-dist/doc/generic/pst-poly/Changes
+ texmf-dist/doc/generic/pst-poly/README details="Package Readme"
+ texmf-dist/doc/generic/pst-poly/pst-poly.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-poly/tst-poly.pdf details="Package usage examples"
+ texmf-dist/doc/generic/pst-poly/tst-poly.tex
+srcfiles size=54204
+ texmf-dist/source/latex/pst-poly/pst-poly.dtx
+ texmf-dist/source/latex/pst-poly/pst-poly.ins
+runfiles size=11709
+ texmf-dist/tex/generic/pst-poly/pst-poly.tex
+ texmf-dist/tex/latex/pst-poly/pst-poly.sty
+catalogue-version 1.60
+catalogue-date 2006-12-19 00:41:48 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-poly
+catalogue-license lppl
+
+name pst-qtree
+category Package
+revision 4147
+shortdesc Simple syntax for trees.
+longdesc The package provides a qtree-like front end for PSTricks.
+docfiles size=45200
+ texmf-dist/doc/generic/pst-qtree/CHANGES
+ texmf-dist/doc/generic/pst-qtree/LICENSE
+ texmf-dist/doc/generic/pst-qtree/pst-qtree-manual.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-qtree/pst-qtree-manual.tex
+runfiles size=4409
+ texmf-dist/tex/generic/pst-qtree/pst-qtree.tex
+ texmf-dist/tex/latex/pst-qtree/pst-qtree.sty
+catalogue-version
+catalogue-date 2007-04-21 14:28:35 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-qtree
+catalogue-license gpl
+
+name pst-slpe
+category Package
+revision 1253
+shortdesc Sophisticated colour gradients.
+longdesc This PStricks package covers all the colour gradient
+longdesc functionality of pst-grad (part of the base pstricks
+longdesc distribution), and provides the following facilities: – pst-
+longdesc slpe permits the user to specify an arbitrary number of
+longdesc colours, along with the points at which they are to be reached;
+longdesc – pst-slpe converts between RGB and HSV behind the scenes;
+longdesc – pst-slpe provides concentric and radial gradients; and –
+longdesc pst-slpe uses the xkeyval package for the extended key
+longdesc handling.
+docfiles size=173201
+ texmf-dist/doc/generic/pst-slpe/README
+ texmf-dist/doc/generic/pst-slpe/pst-slpe.pdf
+srcfiles size=32505
+ texmf-dist/source/latex/pst-slpe/pst-slpe.dtx
+ texmf-dist/source/latex/pst-slpe/pst-slpe.ins
+runfiles size=8043
+ texmf-dist/dvips/pst-slpe/pst-slpe.pro
+ texmf-dist/tex/generic/pst-slpe/pst-slpe.tex
+ texmf-dist/tex/latex/pst-slpe/pst-slpe.sty
+catalogue-version 1.1
+catalogue-date 2006-12-09 11:31:38 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-slpe
+catalogue-license lppl
+
+name pst-soroban
+category Package
+revision 5206
+shortdesc Draw a Soroban using PSTricks.
+longdesc The package uses PSTricks to draw a Japanese abacus, or
+longdesc soroban. The soroban is still used in Japan today.
+docfiles size=103210
+ texmf-dist/doc/generic/pst-soroban/Changes
+ texmf-dist/doc/generic/pst-soroban/README details="Readme"
+ texmf-dist/doc/generic/pst-soroban/pst-soroban-doc.bib
+ texmf-dist/doc/generic/pst-soroban/pst-soroban-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-soroban/pst-soroban-doc.tex
+srcfiles size=1089
+ texmf-dist/source/generic/pst-soroban/Makefile
+runfiles size=4637
+ texmf-dist/tex/latex/pst-soroban/pst-soroban.sty
+catalogue-version 1.0
+catalogue-date 2007-10-28 23:28:59 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-soroban
+catalogue-license lppl
+
+name pst-spectra
+category Package
+revision 5297
+shortdesc Draw continuum, emission and absorption spectra with PSTricks.
+longdesc The package is a PSTricks extension, based on a NASA lines
+longdesc database. It allows you to draw continuum, emission and
+longdesc absorption spectra. A Total of 16 880 visible lines from 99
+longdesc elements can be displayed. The package requires the xkeyval
+longdesc package for decoding its arguments.
+docfiles size=213736
+ texmf-dist/doc/generic/pst-spectra/README details="Package README"
+ texmf-dist/doc/generic/pst-spectra/pst-spectra.pdf details="Package documentation" language="fr"
+ texmf-dist/doc/generic/pst-spectra/pst-spectraEN.pdf details="Package outline" language="en"
+runfiles size=269997
+ texmf-dist/dvips/pst-spectra/pst-spectra.pro
+ texmf-dist/tex/generic/pst-spectra/pst-spectra.tex
+ texmf-dist/tex/latex/pst-spectra/pst-spectra.sty
+catalogue-version 0.91
+catalogue-date 2006-11-29 14:22:26 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-spectra
+catalogue-license lppl
+
+name pst-stru
+category Package
+revision 5489
+shortdesc Civil engineering diagrams, using pstricks.
+longdesc Pst-stru is a PSTricks-based package to draw structural schemes
+longdesc in civil engineering analysis, for beams, portals, arches and
+longdesc piles.
+docfiles size=227141
+ texmf-dist/doc/generic/pst-stru/Changes
+ texmf-dist/doc/generic/pst-stru/README
+ texmf-dist/doc/generic/pst-stru/pst-stru-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-stru/pst-stru-doc.tex
+runfiles size=11375
+ texmf-dist/tex/generic/pst-stru/pst-stru.tex
+ texmf-dist/tex/latex/pst-stru/pst-stru.sty
+catalogue-version 0.11
+catalogue-date 2006-11-29 14:22:26 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-stru
+catalogue-license lppl
+
+name pst-text
+category Package
+revision 2561
+shortdesc Text and character manipulation in PSTricks.
+longdesc Pst-text is a PSTricks based package for plotting text along a
+longdesc different path and manipulating characters. It includes the
+longdesc functionality of the old package pst-char.
+docfiles size=192523
+ texmf-dist/doc/generic/pst-text/Changes
+ texmf-dist/doc/generic/pst-text/README details="Package README"
+ texmf-dist/doc/generic/pst-text/pst-text-doc.bib
+ texmf-dist/doc/generic/pst-text/pst-text-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-text/pst-text-doc.tex
+srcfiles size=1083
+ texmf-dist/source/generic/pst-text/Makefile
+runfiles size=7500
+ texmf-dist/dvips/pst-text/pst-text.pro
+ texmf-dist/tex/generic/pst-text/pst-text.tex
+ texmf-dist/tex/latex/pst-text/pst-text.sty
+catalogue-version 1.00
+catalogue-date 2007-03-11 16:56:01 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-text
+catalogue-license lppl
+
+name pst-uml
+category Package
+revision 3311
+shortdesc UML diagrams with PSTricks.
+longdesc pst-uml is a PSTricks package that provides support for drawing
+longdesc moderately complex UML (Universal Modelling Language) diagrams.
+longdesc (The PDF documentation is written in French.)
+depend multido
+docfiles size=551399
+ texmf-dist/doc/generic/pst-uml/Changes
+ texmf-dist/doc/generic/pst-uml/README details="Readme"
+ texmf-dist/doc/generic/pst-uml/diagCase.tex
+ texmf-dist/doc/generic/pst-uml/diagClass.tex
+ texmf-dist/doc/generic/pst-uml/diagClass1.tex
+ texmf-dist/doc/generic/pst-uml/diagSeq.tex
+ texmf-dist/doc/generic/pst-uml/diagState.tex
+ texmf-dist/doc/generic/pst-uml/pst-uml-doc.pdf details="Package documentation" language="fr"
+ texmf-dist/doc/generic/pst-uml/pst-uml-doc.tex
+ texmf-dist/doc/generic/pst-uml/pst-uml-encapsuled-pdf-fig.pdf
+ texmf-dist/doc/generic/pst-uml/pst-uml-encapsuled-pdf-fig.tex
+ texmf-dist/doc/generic/pst-uml/pst-uml-exemples.pdf details="Examples" language="fr"
+ texmf-dist/doc/generic/pst-uml/pst-uml-exemples.tex
+srcfiles size=6716
+ texmf-dist/source/generic/pst-uml/Makefile
+runfiles size=27317
+ texmf-dist/tex/latex/pst-uml/pst-uml.sty
+catalogue-version 0.83
+catalogue-date 2007-01-04 21:17:26 +0100
+catalogue-ctan /graphics/pstricks/contrib/pst-uml
+catalogue-license lppl
+
+name pst-vue3d
+category Package
+revision 4098
+shortdesc Draw perspective views of three dimensional objects.
+longdesc With pst-vue3d three dimensional objects like cubes, spheres
+longdesc and others can be viewed from different points. The
+longdesc distribution includes a comprehensive set of examples of usage.
+docfiles size=4633129
+ texmf-dist/doc/generic/pst-vue3d/Changes
+ texmf-dist/doc/generic/pst-vue3d/README details="Readme"
+ texmf-dist/doc/generic/pst-vue3d/pst-vue3d-doc.bib
+ texmf-dist/doc/generic/pst-vue3d/pst-vue3d-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-vue3d/pst-vue3d-doc.tex
+srcfiles size=1105
+ texmf-dist/source/generic/pst-vue3d/Makefile
+runfiles size=103358
+ texmf-dist/dvips/pst-vue3d/pst-vue3d.pro
+ texmf-dist/tex/generic/pst-vue3d/pst-vue3d.tex
+ texmf-dist/tex/latex/pst-vue3d/pst-vue3d.sty
+catalogue-version 1.23
+catalogue-date 2007-04-05 18:07:19 +0200
+catalogue-ctan /graphics/pstricks/contrib/pst-vue3d
+catalogue-license lppl
+
+name pstricks
+category Package
+revision 4215
+shortdesc PostScript macros for TeX.
+longdesc An extensive collection of PostScript macros that is compatible
+longdesc with most TeX macro formats, including Plain TeX, LaTeX, AMS-
+longdesc TeX, and AMS-LaTeX. Included are macros for colour, graphics,
+longdesc pie charts, rotation, trees and overlays. It has many special
+longdesc features, including a wide variety of graphics (picture
+longdesc drawing) macros, with a flexible interface and with colour
+longdesc support. There are macros for colouring or shading the cells of
+longdesc tables. The package pstricks-add contains bug-fixes and
+longdesc additions for pstricks (among others). PSTricks uses PostScript
+longdesc \special commands, which are not supported by PDF(La)TeX. This
+longdesc limitation may be overcome by using either the pst-pdf or the
+longdesc pdftricks package, to generate a PDF inclusion from a PSTricks
+longdesc diagram.
+docfiles size=5955012
+ texmf-dist/doc/generic/pstricks/Changes.doc
+ texmf-dist/doc/generic/pstricks/README
+ texmf-dist/doc/generic/pstricks/pst-quickref.pdf
+ texmf-dist/doc/generic/pstricks/pstnews1-10.pdf
+ texmf-dist/doc/generic/pstricks/pstnews1-10.tex
+ texmf-dist/doc/generic/pstricks/pstnews1-11.pdf
+ texmf-dist/doc/generic/pstricks/pstnews1-11.tex
+ texmf-dist/doc/generic/pstricks/pstnews1-12.pdf
+ texmf-dist/doc/generic/pstricks/pstnews1-12.tex
+ texmf-dist/doc/generic/pstricks/pstnews1-14.pdf
+ texmf-dist/doc/generic/pstricks/pstnews1-14.tex
+ texmf-dist/doc/generic/pstricks/pstnews1-15.pdf
+ texmf-dist/doc/generic/pstricks/pstnews1-15.tex
+ texmf-dist/doc/generic/pstricks/pstnews97-15.pdf
+ texmf-dist/doc/generic/pstricks/pstnews97-15.tex
+ texmf-dist/doc/generic/pstricks/pstricks-bug.tex
+ texmf-dist/doc/generic/pstricks/pstricks-doc.pdf
+runfiles size=227492
+ texmf-dist/dvips/pstricks/Changes
+ texmf-dist/dvips/pstricks/pst-dots.pro
+ texmf-dist/dvips/pstricks/pst-node.pro
+ texmf-dist/dvips/pstricks/pstricks.pro
+ texmf-dist/tex/generic/pstricks/Changes
+ texmf-dist/tex/generic/pstricks/dvipsone.con
+ texmf-dist/tex/generic/pstricks/pst-key.tex
+ texmf-dist/tex/generic/pstricks/pst-node.tex
+ texmf-dist/tex/generic/pstricks/pst-plot.tex
+ texmf-dist/tex/generic/pstricks/pst-tree.tex
+ texmf-dist/tex/generic/pstricks/pstricks.con
+ texmf-dist/tex/generic/pstricks/pstricks.tex
+ texmf-dist/tex/generic/pstricks/textures.con
+ texmf-dist/tex/generic/pstricks/vtex.con
+ texmf-dist/tex/generic/pstricks/xdvipdfmx.con
+ texmf-dist/tex/latex/pstricks/Changes
+ texmf-dist/tex/latex/pstricks/pst-all.sty
+ texmf-dist/tex/latex/pstricks/pst-key.sty
+ texmf-dist/tex/latex/pstricks/pst-node.sty
+ texmf-dist/tex/latex/pstricks/pst-plot.sty
+ texmf-dist/tex/latex/pstricks/pst-tree.sty
+ texmf-dist/tex/latex/pstricks/pstcol.sty
+ texmf-dist/tex/latex/pstricks/pstricks.sty
+catalogue-version 1.15
+catalogue-date 2007-05-02 16:12:08 +0200
+catalogue-ctan /graphics/pstricks/base
+catalogue-license lppl
+
+name pstricks-add
+category Package
+revision 5253
+shortdesc A collection of add-ons and bugfixes for PSTricks.
+longdesc Collects together examples that have been posted to the
+longdesc pstricks mailing list, together with some additional features
+longdesc for pstricks, including: – bugfixes; – new options for
+longdesc pspicture environment; – ellipses and parts of ellipses; –
+longdesc arrows; – braces as node connection/linestyle; – arrows;
+longdesc – dashed/dotted lines; and – CMYK colour support. The
+longdesc package also includes additions and bugfixes for packages pst-
+longdesc plot and pst-node (each of which is a part of the pstricks
+longdesc distribution).
+docfiles size=2088659
+ texmf-dist/doc/generic/pstricks-add/Changes
+ texmf-dist/doc/generic/pstricks-add/README details="Package README"
+ texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.bib
+ texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.ltx
+ texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.tex
+ texmf-dist/doc/generic/pstricks-add/sfg_test.tex
+srcfiles size=1092
+ texmf-dist/source/generic/pstricks-add/Makefile
+runfiles size=148929
+ texmf-dist/dvips/pstricks-add/pstricks-add.pro
+ texmf-dist/tex/generic/pstricks-add/pstricks-add.tex
+ texmf-dist/tex/latex/pstricks-add/pstricks-add.sty
+catalogue-version 2.91
+catalogue-date 2007-10-21 12:44:39 +0200
+catalogue-ctan /graphics/pstricks/contrib/pstricks-add
+catalogue-license lppl
+
+name pstricks-tutorial
+category Documentation
+revision 3598
+docfiles size=5051238
+ texmf-doc/doc/english/pstricks-tutorial/chap1-figures.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap1-src.tar.gz
+ texmf-doc/doc/english/pstricks-tutorial/chap1.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap2-figures.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap2-src.tar.gz
+ texmf-doc/doc/english/pstricks-tutorial/chap2.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap3-figures.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap3-src.tar.gz
+ texmf-doc/doc/english/pstricks-tutorial/chap3.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap4-figures.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap4-src.tar.gz
+ texmf-doc/doc/english/pstricks-tutorial/chap4.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap5-figures.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap5-src.tar.gz
+ texmf-doc/doc/english/pstricks-tutorial/chap5.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap6-figures.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap6-src.tar.gz
+ texmf-doc/doc/english/pstricks-tutorial/chap6.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap7-figures.pdf
+ texmf-doc/doc/english/pstricks-tutorial/chap7-src.tar.gz
+ texmf-doc/doc/english/pstricks-tutorial/chap7.pdf
+
+name ptptex
+category Package
+revision 1258
+shortdesc Macros for 'Progress of Theoretical Physics'.
+longdesc Includes a template, and a class option file for preprints.
+longdesc Requires the cite, overcite and wrapfig packages.
+docfiles size=272783
+ texmf-dist/doc/latex/ptptex/manptp.pdf details="Package documentation"
+ texmf-dist/doc/latex/ptptex/manptp.tex
+ texmf-dist/doc/latex/ptptex/template.tex
+runfiles size=41168
+ texmf-dist/tex/latex/ptptex/ptp-prep.clo
+ texmf-dist/tex/latex/ptptex/ptptex.cls
+ texmf-dist/tex/latex/ptptex/wrapft.sty
+catalogue-version 0.9
+catalogue-date 2007-01-06 21:10:04 +0100
+catalogue-ctan /macros/latex/contrib/ptptex
+catalogue-license unknown
+
+name punk
+category Package
+revision 101
+shortdesc Donald Knuth's punk font.
+longdesc A response to the assertion in a lecture that “typography
+longdesc tends to lag behind other stylistic changes by about 10
+longdesc years”. Knuth felt it was (in 1988) time to design a
+longdesc replacement for his designs of the 1970s, and came up with this
+longdesc font! The fonts are distributed as MetaFont source. The package
+longdesc offers LaTeX support by Rohit Grover, from an original by
+longdesc Sebastian Rahtz, which is slightly odd in claiming that the
+longdesc fonts are T1-encoded. A (possibly) more rational support
+longdesc package is to be found in punk-latex
+runfiles size=24917
+ texmf-dist/fonts/source/public/punk/punk.mf
+ texmf-dist/fonts/source/public/punk/punk10.mf
+ texmf-dist/fonts/source/public/punk/punk12.mf
+ texmf-dist/fonts/source/public/punk/punk20.mf
+ texmf-dist/fonts/source/public/punk/punka.mf
+ texmf-dist/fonts/source/public/punk/punkae.mf
+ texmf-dist/fonts/source/public/punk/punkbx20.mf
+ texmf-dist/fonts/source/public/punk/punkd.mf
+ texmf-dist/fonts/source/public/punk/punkg.mf
+ texmf-dist/fonts/source/public/punk/punkl.mf
+ texmf-dist/fonts/source/public/punk/punkp.mf
+ texmf-dist/fonts/source/public/punk/punksl.mf
+ texmf-dist/fonts/source/public/punk/punksl20.mf
+ texmf-dist/fonts/tfm/public/punk/punk10.tfm
+ texmf-dist/fonts/tfm/public/punk/punk12.tfm
+ texmf-dist/fonts/tfm/public/punk/punk20.tfm
+ texmf-dist/fonts/tfm/public/punk/punkbx20.tfm
+ texmf-dist/fonts/tfm/public/punk/punksl20.tfm
+catalogue-version
+catalogue-date 2007-10-10 11:06:37 +0200
+catalogue-ctan /fonts/punk
+catalogue-license knuth
+
+name pxfonts
+category Package
+revision 1259
+shortdesc Palatino-like fonts in support of mathematics.
+longdesc Pxfonts supplies virtual text roman fonts using Adobe Palatino
+longdesc (or URWPalladioL) with some modified and additional text
+longdesc symbols in the OT1, T1, and TS1 encodings; maths alphabets
+longdesc using Palation/Palladio; maths fonts providing all the symbols
+longdesc of the Computer Modern and AMS fonts, including all the Greek
+longdesc capital letters from CMR; and additional maths fonts of various
+longdesc other symbols. The set is complemented by a sans-serif set of
+longdesc text fonts, based on Helvetica/NimbusSanL, and a monospace set
+longdesc derived from the parallel TX font set. All the fonts are in
+longdesc Type 1 format (AFM and PFB files), and are supported by TeX
+longdesc metrics (VF and TFM files) and macros for use with LaTeX.
+execute addMap pxfonts.map
+docfiles size=662840
+ texmf-dist/doc/fonts/pxfonts/COPYRIGHT
+ texmf-dist/doc/fonts/pxfonts/patch1.txt
+ texmf-dist/doc/fonts/pxfonts/pxfontsdoc.pdf
+ texmf-dist/doc/fonts/pxfonts/pxfontsdoc.tex
+ texmf-dist/doc/fonts/pxfonts/pxfontsdocA4.pdf
+ texmf-dist/doc/fonts/pxfonts/pxfontsdocA4.tex
+ texmf-dist/doc/fonts/pxfonts/pxmi.vpl
+ texmf-dist/doc/fonts/pxfonts/pxmi1.vpl
+runfiles size=831051
+ texmf-dist/fonts/afm/public/pxfonts/pxbex.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxbexa.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxbmia.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxbsy.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxbsya.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxbsyb.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxbsyc.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxex.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxexa.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxmia.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxsy.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxsya.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxsyb.afm
+ texmf-dist/fonts/afm/public/pxfonts/pxsyc.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpcxb.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpcxbi.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpcxi.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpcxr.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpxb.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpxbi.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpxbmi.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpxbsc.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpxi.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpxmi.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpxr.afm
+ texmf-dist/fonts/afm/public/pxfonts/rpxsc.afm
+ texmf-dist/fonts/map/dvips/pxfonts/pxfonts.map
+ texmf-dist/fonts/map/dvips/pxfonts/pxr.map
+ texmf-dist/fonts/map/dvips/pxfonts/pxr1.map
+ texmf-dist/fonts/map/dvips/pxfonts/pxr2.map
+ texmf-dist/fonts/map/dvips/pxfonts/pxr3.map
+ texmf-dist/fonts/tfm/public/pxfonts/p1xb.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/p1xbi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/p1xbsc.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/p1xbsl.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/p1xi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/p1xr.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/p1xsc.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/p1xsl.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pcxb.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pcxbi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pcxbsl.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pcxi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pcxr.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pcxsl.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxb.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbex.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbexa.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbmi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbmi1.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbmia.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbsc.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbsl.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbsy.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbsya.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbsyb.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxbsyc.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxex.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxexa.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxmi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxmi1.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxmia.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxr.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxsc.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxsl.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxsy.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxsya.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxsyb.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/pxsyc.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpcxb.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpcxbi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpcxbsl.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpcxi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpcxr.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpcxsl.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxb.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxbi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxbmi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxbsc.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxbsl.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxmi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxpplb.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxpplbi.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxpplbo.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxpplr.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxpplri.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxpplro.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxr.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxsc.tfm
+ texmf-dist/fonts/tfm/public/pxfonts/rpxsl.tfm
+ texmf-dist/fonts/type1/public/pxfonts/pxbex.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxbexa.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxbmia.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxbsy.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxbsya.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxbsyb.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxbsyc.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxex.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxexa.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxmia.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxsy.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxsya.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxsyb.pfb
+ texmf-dist/fonts/type1/public/pxfonts/pxsyc.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpcxb.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpcxbi.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpcxi.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpcxr.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpxb.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpxbi.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpxbmi.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpxbsc.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpxi.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpxmi.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpxr.pfb
+ texmf-dist/fonts/type1/public/pxfonts/rpxsc.pfb
+ texmf-dist/fonts/vf/public/pxfonts/p1xb.vf
+ texmf-dist/fonts/vf/public/pxfonts/p1xbi.vf
+ texmf-dist/fonts/vf/public/pxfonts/p1xbsc.vf
+ texmf-dist/fonts/vf/public/pxfonts/p1xbsl.vf
+ texmf-dist/fonts/vf/public/pxfonts/p1xi.vf
+ texmf-dist/fonts/vf/public/pxfonts/p1xr.vf
+ texmf-dist/fonts/vf/public/pxfonts/p1xsc.vf
+ texmf-dist/fonts/vf/public/pxfonts/p1xsl.vf
+ texmf-dist/fonts/vf/public/pxfonts/pcxb.vf
+ texmf-dist/fonts/vf/public/pxfonts/pcxbi.vf
+ texmf-dist/fonts/vf/public/pxfonts/pcxbsl.vf
+ texmf-dist/fonts/vf/public/pxfonts/pcxi.vf
+ texmf-dist/fonts/vf/public/pxfonts/pcxr.vf
+ texmf-dist/fonts/vf/public/pxfonts/pcxsl.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxb.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxbi.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxbmi.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxbmi1.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxbsc.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxbsl.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxi.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxmi.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxmi1.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxr.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxsc.vf
+ texmf-dist/fonts/vf/public/pxfonts/pxsl.vf
+ texmf-dist/tex/latex/pxfonts/omlpxmi.fd
+ texmf-dist/tex/latex/pxfonts/omlpxr.fd
+ texmf-dist/tex/latex/pxfonts/omspxr.fd
+ texmf-dist/tex/latex/pxfonts/omspxsy.fd
+ texmf-dist/tex/latex/pxfonts/omxpxex.fd
+ texmf-dist/tex/latex/pxfonts/ot1pxr.fd
+ texmf-dist/tex/latex/pxfonts/ot1pxss.fd
+ texmf-dist/tex/latex/pxfonts/ot1pxtt.fd
+ texmf-dist/tex/latex/pxfonts/pxfonts.sty
+ texmf-dist/tex/latex/pxfonts/t1pxr.fd
+ texmf-dist/tex/latex/pxfonts/t1pxss.fd
+ texmf-dist/tex/latex/pxfonts/t1pxtt.fd
+ texmf-dist/tex/latex/pxfonts/ts1pxr.fd
+ texmf-dist/tex/latex/pxfonts/ts1pxss.fd
+ texmf-dist/tex/latex/pxfonts/ts1pxtt.fd
+ texmf-dist/tex/latex/pxfonts/upxexa.fd
+ texmf-dist/tex/latex/pxfonts/upxmia.fd
+ texmf-dist/tex/latex/pxfonts/upxr.fd
+ texmf-dist/tex/latex/pxfonts/upxss.fd
+ texmf-dist/tex/latex/pxfonts/upxsya.fd
+ texmf-dist/tex/latex/pxfonts/upxsyb.fd
+ texmf-dist/tex/latex/pxfonts/upxsyc.fd
+ texmf-dist/tex/latex/pxfonts/upxtt.fd
+catalogue-version 1.0
+catalogue-date 2007-10-10 11:06:37 +0200
+catalogue-ctan /fonts/pxfonts
+catalogue-license gpl
+
+name qcm
+category Package
+revision 1260
+docfiles size=125091
+ texmf-dist/doc/latex/qcm/NEWS
+ texmf-dist/doc/latex/qcm/README
+ texmf-dist/doc/latex/qcm/qcm.el
+ texmf-dist/doc/latex/qcm/qcm.pdf
+srcfiles size=32132
+ texmf-dist/source/latex/qcm/qcm.dtx
+ texmf-dist/source/latex/qcm/qcm.ins
+runfiles size=11212
+ texmf-dist/tex/latex/qcm/qcm.cls
+ texmf-dist/tex/latex/qcm/qcm.sty
+
+name qobitree
+category Package
+revision 1487
+shortdesc LaTeX macros for typesetting trees.
+longdesc Provides commands \branch and \leaf for specifying the elements
+longdesc of the tree; you build up your tree with those commands, and
+longdesc then issue the \tree command to typeset the whole.
+docfiles size=21521
+ texmf-dist/doc/latex/qobitree/example.dvi
+ texmf-dist/doc/latex/qobitree/example.tex
+ texmf-dist/doc/latex/qobitree/readme details="Package documentation"
+runfiles size=23623
+ texmf-dist/tex/latex/qobitree/qobitree.tex
+catalogue-version
+catalogue-date 2006-12-22 20:40:11 +0100
+catalogue-ctan /macros/latex/contrib/qobitree
+catalogue-license unknown
+
+name qpxqtx
+category Package
+revision 3893
+docfiles size=41851
+ texmf-dist/doc/fonts/qpxqtx/00README
+ texmf-dist/doc/fonts/qpxqtx/p01tst.tex
+ texmf-dist/doc/fonts/qpxqtx/p02tst.tex
+ texmf-dist/doc/fonts/qpxqtx/qpxsymb.tex
+ texmf-dist/doc/fonts/qpxqtx/qpxtest.tex
+ texmf-dist/doc/fonts/qpxqtx/qtxsymb.tex
+ texmf-dist/doc/fonts/qpxqtx/qtxtest.tex
+ texmf-dist/doc/fonts/qpxqtx/t01tst.tex
+ texmf-dist/doc/fonts/qpxqtx/t02tst.tex
+runfiles size=67326
+ texmf-dist/fonts/tfm/public/qpxqtx/qpxbmi.tfm
+ texmf-dist/fonts/tfm/public/qpxqtx/qpxbmia.tfm
+ texmf-dist/fonts/tfm/public/qpxqtx/qpxmi.tfm
+ texmf-dist/fonts/tfm/public/qpxqtx/qpxmia.tfm
+ texmf-dist/fonts/tfm/public/qpxqtx/qtxbmi.tfm
+ texmf-dist/fonts/tfm/public/qpxqtx/qtxbmia.tfm
+ texmf-dist/fonts/tfm/public/qpxqtx/qtxmi.tfm
+ texmf-dist/fonts/tfm/public/qpxqtx/qtxmia.tfm
+ texmf-dist/fonts/vf/public/qpxqtx/qpxbmi.vf
+ texmf-dist/fonts/vf/public/qpxqtx/qpxbmia.vf
+ texmf-dist/fonts/vf/public/qpxqtx/qpxmi.vf
+ texmf-dist/fonts/vf/public/qpxqtx/qpxmia.vf
+ texmf-dist/fonts/vf/public/qpxqtx/qtxbmi.vf
+ texmf-dist/fonts/vf/public/qpxqtx/qtxbmia.vf
+ texmf-dist/fonts/vf/public/qpxqtx/qtxmi.vf
+ texmf-dist/fonts/vf/public/qpxqtx/qtxmia.vf
+ texmf-dist/tex/generic/qpxqtx/amspbold.tex
+ texmf-dist/tex/generic/qpxqtx/amsqpx.def
+ texmf-dist/tex/generic/qpxqtx/amsqpx.tex
+ texmf-dist/tex/generic/qpxqtx/amsqtx.def
+ texmf-dist/tex/generic/qpxqtx/amsqtx.tex
+ texmf-dist/tex/generic/qpxqtx/amstbold.tex
+ texmf-dist/tex/generic/qpxqtx/qpxmath.sty
+ texmf-dist/tex/generic/qpxqtx/qpxmath.tex
+ texmf-dist/tex/generic/qpxqtx/qtxmath.sty
+ texmf-dist/tex/generic/qpxqtx/qtxmath.tex
+
+name qstest
+category Package
+revision 3990
+shortdesc Bundle for unit tests and pattern matching.
+longdesc This is the public release of the qstest bundle (written for
+longdesc DocScape Publisher) (C) 2006, 2007 QuinScape GmbH. The bundle
+longdesc contains the packages ‘makematch’ for matching patterns to
+longdesc targets (with a generalization in the form of pattern lists and
+longdesc keyword lists), and ‘qstest’ for performing unit tests,
+longdesc allowing the user to run a number of logged tests ensuring the
+longdesc consistency of values, properties and call sequences during
+longdesc execution of test code. Both packages make extensive use of in
+longdesc their package documentation, providing illustrated examples
+longdesc that are automatically verified to work as expected. Check the
+longdesc README file for details.
+docfiles size=273694
+ texmf-dist/doc/latex/qstest/README details="Readme"
+ texmf-dist/doc/latex/qstest/makematch-qs.tex
+ texmf-dist/doc/latex/qstest/makematch.pdf details="makematch Package documentation"
+ texmf-dist/doc/latex/qstest/qstest-qs.tex
+ texmf-dist/doc/latex/qstest/qstest.pdf details="qstest Package documentation"
+srcfiles size=98331
+ texmf-dist/source/latex/qstest/Makefile
+ texmf-dist/source/latex/qstest/makematch.drv
+ texmf-dist/source/latex/qstest/makematch.dtx
+ texmf-dist/source/latex/qstest/qstest.drv
+ texmf-dist/source/latex/qstest/qstest.dtx
+ texmf-dist/source/latex/qstest/qstest.ins
+runfiles size=18484
+ texmf-dist/tex/latex/qstest/makematch.sty
+ texmf-dist/tex/latex/qstest/qstest.sty
+catalogue-version
+catalogue-date 2007-02-25 09:43:45 +0100
+catalogue-ctan /macros/latex/contrib/qstest
+catalogue-license lppl
+
+name qsymbols
+category Package
+revision 1263
+shortdesc Maths symbol abbreviations.
+longdesc Provides macros for defining systematic mnemonic abbreviations,
+longdesc starting with ` for math symbols and \" for arrows, using
+longdesc standard symbols as well as those from the amssymb and stmaryrd
+longdesc packages.
+docfiles size=97333
+ texmf-dist/doc/latex/qsymbols/qsymbols.ps.gz
+ texmf-dist/doc/latex/qsymbols/qsymbols.tex
+srcfiles size=22403
+ texmf-dist/source/latex/qsymbols/CATALOG
+ texmf-dist/source/latex/qsymbols/COPYING
+ texmf-dist/source/latex/qsymbols/MANIFEST
+ texmf-dist/source/latex/qsymbols/Makefile
+ texmf-dist/source/latex/qsymbols/README
+runfiles size=27061
+ texmf-dist/tex/latex/qsymbols/qsymbols.sty
+catalogue-version
+catalogue-date 2006-12-22 20:40:11 +0100
+catalogue-ctan /macros/latex/contrib/qsymbols
+catalogue-license gpl
+
+name qtree
+category Package
+revision 1828
+shortdesc Draw tree structures.
+longdesc The package offers support for drawing tree diagrams, and is
+longdesc especially suitable for linguistics use. It allows trees to be
+longdesc specified in a simple bracket notation, automatically
+longdesc calculates branch sizes, and supports both DVI/PostScript and
+longdesc PDF output by use of pict2e facilities. The package is a
+longdesc development of the existing qobitree package, offering a new
+longdesc front end.
+docfiles size=295421
+ texmf-dist/doc/latex/qtree/README
+ texmf-dist/doc/latex/qtree/qarrows.pdf details="Use of tree-dvips with qtree:" language="en"
+ texmf-dist/doc/latex/qtree/qarrows.tex
+ texmf-dist/doc/latex/qtree/qtreenotes.pdf details="Package documentation:" language="en"
+ texmf-dist/doc/latex/qtree/qtreenotes.tex
+runfiles size=37608
+ texmf-dist/tex/latex/qtree/qtree.sty
+catalogue-version 3.1
+catalogue-date 2007-02-26 15:09:49 +0100
+catalogue-ctan /macros/latex/contrib/qtree
+catalogue-license lppl
+
+name quotchap
+category Package
+revision 1264
+shortdesc Decorative chapter headings.
+longdesc A package for creating decorative chapter headings with
+longdesc quotations, a PostScript output device and the psnfss package
+longdesc are needed, the color package and a greyscale output device are
+longdesc recommended.
+docfiles size=64497
+ texmf-dist/doc/latex/quotchap/document.pdf details="Sample document (chapter headings only)"
+ texmf-dist/doc/latex/quotchap/document.tex
+srcfiles size=19772
+ texmf-dist/source/latex/quotchap/00readme.txt
+ texmf-dist/source/latex/quotchap/quotchap.dtx
+ texmf-dist/source/latex/quotchap/quotchap.ins
+runfiles size=5623
+ texmf-dist/tex/latex/quotchap/quotchap.sty
+catalogue-version 0.9f
+catalogue-date 2006-12-22 20:40:11 +0100
+catalogue-ctan /macros/latex/contrib/quotchap
+catalogue-license lppl
+
+name r-und-s
+category Package
+revision 613
+docfiles size=9004
+ texmf-dist/doc/generic/r-und-s/COPYRIGHT
+ texmf-dist/doc/generic/r-und-s/r_und_s.doc
+runfiles size=50349
+ texmf-dist/tex/generic/r-und-s/eng_rs.sty
+ texmf-dist/tex/generic/r-und-s/eng_rs.tex
+ texmf-dist/tex/generic/r-und-s/r_und_s.sty
+ texmf-dist/tex/generic/r-und-s/r_und_s.tex
+
+name randbild
+category Package
+revision 4309
+shortdesc Marginal pictures.
+longdesc Provides environments randbild, to draw small marginal plots
+longdesc (using the package pstricks package pst-plot), and
+longdesc randbildbasis (the same, only without the automatically drawn
+longdesc coordinate system).
+docfiles size=183640
+ texmf-dist/doc/latex/randbild/README details="Readme (bilingual)"
+ texmf-dist/doc/latex/randbild/randbild.pdf details="Benutzerdoku:" language="de"
+srcfiles size=13673
+ texmf-dist/source/latex/randbild/randbild.dtx
+ texmf-dist/source/latex/randbild/randbild.ins
+runfiles size=2370
+ texmf-dist/tex/latex/randbild/randbild.sty
+catalogue-version 0.2
+catalogue-date 2007-05-16 07:57:15 +0200
+catalogue-ctan /macros/latex/contrib/randbild
+catalogue-license lppl
+
+name randtext
+category Package
+revision 1853
+shortdesc Randomise the order of characters in strings.
+longdesc The package provides a single macro \randomize{TEXT} that
+longdesc typesets the characters of TEXT in random order, such that the
+longdesc resulting output appears correct, but most automated attempts
+longdesc to read the file will misunderstand it. This function allows
+longdesc one to include an email address in a TeX document and publish
+longdesc it online without fear of email address harvesters or spammers
+longdesc easily picking up the address.
+docfiles size=537
+ texmf-dist/doc/latex/randtext/README
+runfiles size=5399
+ texmf-dist/tex/latex/randtext/randtext.sty
+catalogue-version
+catalogue-date 2007-02-26 00:17:56 +0100
+catalogue-ctan /macros/latex/contrib/randtext/randtext.sty
+catalogue-license lppl
+
+name rccol
+category Package
+revision 1266
+shortdesc Decimal-centered optionally rounded numbers in tabular.
+longdesc The rccol package provides decimal-centered numbers:
+longdesc corresponding digits and decimal separators aligned.
+longdesc Furthermore, rounding to the desired precision is possible. The
+longdesc package makes use of the fltpoint package (as well as the LaTeX
+longdesc required array package).
+docfiles size=173324
+ texmf-dist/doc/latex/rccol/README details="Readme"
+ texmf-dist/doc/latex/rccol/rccol.pdf
+srcfiles size=30372
+ texmf-dist/source/latex/rccol/rccol.dtx
+ texmf-dist/source/latex/rccol/rccol.ins
+runfiles size=5997
+ texmf-dist/tex/latex/rccol/rccol.sty
+catalogue-version 1.1
+catalogue-date 2007-01-06 10:07:33 +0100
+catalogue-ctan /macros/latex/contrib/rccol
+catalogue-license dfsg
+
+name rcs
+category Package
+revision 4918
+shortdesc Use RCS (revision control system) tags in LaTeX documents.
+longdesc The rcs package utilizes the inclusion of RCS supplied data in
+longdesc LaTeX documents. It's upward compatible to *all* rcs styles I
+longdesc know of. In particular, you can easily – access values of
+longdesc every RCS field in your document – put the checkin date on
+longdesc the titlepage – put RCS fields in a footline You can typeset
+longdesc revision logs. Not in verbatim -- real LaTeX text! But you need
+longdesc a configurable RCS for that. Refer to the user manual for more
+longdesc detailed information. You can also configure the rcs package
+longdesc easily to do special things for any keyword. This bundle comes
+longdesc with a user manual, an internal interface description, full
+longdesc documentation of the implementation, style information for AUC-
+longdesc TeX, and test cases.
+docfiles size=191426
+ texmf-dist/doc/latex/rcs/CATALOG
+ texmf-dist/doc/latex/rcs/History
+ texmf-dist/doc/latex/rcs/INSTALL
+ texmf-dist/doc/latex/rcs/License
+ texmf-dist/doc/latex/rcs/MANIFEST
+ texmf-dist/doc/latex/rcs/README details="Readme"
+ texmf-dist/doc/latex/rcs/rcs-conf.pdf details="Package internal interfaces"
+ texmf-dist/doc/latex/rcs/rcs-user.pdf details="User documentation"
+srcfiles size=78975
+ texmf-dist/source/latex/rcs/Makefile
+ texmf-dist/source/latex/rcs/rcs.el
+ texmf-dist/source/latex/rcs/src/Diff
+ texmf-dist/source/latex/rcs/src/Imakefile
+ texmf-dist/source/latex/rcs/src/README
+ texmf-dist/source/latex/rcs/src/TODO
+ texmf-dist/source/latex/rcs/src/rcs-conf.tex
+ texmf-dist/source/latex/rcs/src/rcs-doc.sty
+ texmf-dist/source/latex/rcs/src/rcs-user.tex
+ texmf-dist/source/latex/rcs/src/rcs.doc
+ texmf-dist/source/latex/rcs/src/style/rcs.el
+ texmf-dist/source/latex/rcs/src/style/rcs.elc
+ texmf-dist/source/latex/rcs/src/test/Imakefile
+ texmf-dist/source/latex/rcs/src/test/Makefile
+ texmf-dist/source/latex/rcs/src/test/empty-log.tex
+ texmf-dist/source/latex/rcs/src/test/german.tex
+ texmf-dist/source/latex/rcs/src/test/log-error.tex
+ texmf-dist/source/latex/rcs/src/test/log.tex
+ texmf-dist/source/latex/rcs/src/test/rcsdef.tex
+ texmf-dist/source/latex/rcs/src/test/rcsid-param.tex
+ texmf-dist/source/latex/rcs/src/test/rcsid.tex
+ texmf-dist/source/latex/rcs/src/test/under_score.tex
+runfiles size=35468
+ texmf-dist/tex/latex/rcs/rcs.sty
+catalogue-version
+catalogue-date 2007-06-06 17:06:28 +0200
+catalogue-ctan /macros/latex/contrib/rcs
+catalogue-license gpl
+
+name rcsinfo
+category Package
+revision 1268
+shortdesc Support for the revision control system.
+longdesc A package to extract RCS (Revision Control System) information
+longdesc and use it in a LaTeX document. For users of LaTeX2HTML
+longdesc rcsinfo.perl is included.
+docfiles size=186133
+ texmf-dist/doc/latex/rcsinfo/README details="Readme"
+ texmf-dist/doc/latex/rcsinfo/README-1.9
+ texmf-dist/doc/latex/rcsinfo/rcsinfo.init
+ texmf-dist/doc/latex/rcsinfo/rcsinfo.pdf details="Package documentation"
+ texmf-dist/doc/latex/rcsinfo/rcsinfo.perl
+ texmf-dist/doc/latex/rcsinfo/rcsinfo2html.tex
+srcfiles size=60790
+ texmf-dist/source/latex/rcsinfo/Makefile
+ texmf-dist/source/latex/rcsinfo/rcsinfo.dtx
+ texmf-dist/source/latex/rcsinfo/rcsinfo.ins
+runfiles size=11569
+ texmf-dist/tex/latex/rcsinfo/rcsinfo.cfg
+ texmf-dist/tex/latex/rcsinfo/rcsinfo.sty
+catalogue-version 1.11
+catalogue-date 2007-01-06 10:07:33 +0100
+catalogue-ctan /macros/latex/contrib/rcsinfo
+catalogue-license lppl
+
+name realcalc
+category Package
+revision 613
+shortdesc Macros for real arithmetic calculations.
+longdesc There are known problems with this package; an alternative is
+longdesc fp (a latex package, only).
+docfiles size=8894
+ texmf-dist/doc/generic/realcalc/realdemo.tex
+ texmf-dist/doc/generic/realcalc/realtest.tex
+srcfiles size=1456
+ texmf-dist/source/generic/realcalc/readme
+runfiles size=14159
+ texmf-dist/tex/generic/realcalc/realcalc.tex
+catalogue-version
+catalogue-date 2007-01-06 10:07:33 +0100
+catalogue-ctan /macros/generic/realcalc
+catalogue-license nosell
+
+name recipecard
+category Package
+revision 5491
+shortdesc Typeset recipes in note-card-sized boxes.
+longdesc The recipecard class typesets recipes into note card sized
+longdesc boxes that can then be cut out and pasted on to note cards. The
+longdesc recipe then looks elegant and fits in the box of recipes.
+docfiles size=225583
+ texmf-dist/doc/latex/recipecard/README details="Package README"
+ texmf-dist/doc/latex/recipecard/recipecard.pdf details="Package documentation"
+ texmf-dist/doc/latex/recipecard/test2.pdf
+ texmf-dist/doc/latex/recipecard/test2.tex
+srcfiles size=30745
+ texmf-dist/source/latex/recipecard/recipecard.dtx
+runfiles size=7401
+ texmf-dist/tex/latex/recipecard/recipecard.cls
+catalogue-version 2.0
+catalogue-date 2006-11-29 14:22:26 +0100
+catalogue-ctan /macros/latex/contrib/recipecard
+catalogue-license lppl
+
+name rectopma
+category Package
+revision 1487
+shortdesc Recycle top matter.
+longdesc Saves the arguments of \author and \title for reference (after
+longdesc \maketitle) in a document. (\maketitle simply disposes of the
+longdesc information, in the standard classes and some others.)
+docfiles size=4767
+ texmf-dist/doc/latex/rectopma/TestTitle.dvi
+ texmf-dist/doc/latex/rectopma/TestTitle.tex
+runfiles size=3262
+ texmf-dist/tex/latex/rectopma/rectopma.sty
+catalogue-version
+catalogue-date 2007-01-06 10:07:33 +0100
+catalogue-ctan /macros/latex/contrib/rectopma
+catalogue-license lppl
+
+name refcheck
+category Package
+revision 1270
+shortdesc Check references (in figures, table, equations, etc).
+longdesc Intended to check references in a document, looking for
+longdesc numbered but unlabelled equations, for labels which are not
+longdesc used in the text, for unused bibliography references. It can
+longdesc also display label names in text near corresponding numbers of
+longdesc equations and/or bibliography references.
+docfiles size=66851
+ texmf-dist/doc/latex/refcheck/refdemo.pdf details="Package demo"
+ texmf-dist/doc/latex/refcheck/refdemo.tex
+runfiles size=9199
+ texmf-dist/tex/latex/refcheck/refcheck.sty
+catalogue-version 1.7
+catalogue-date 2007-01-06 10:07:33 +0100
+catalogue-ctan /macros/latex/contrib/refcheck
+catalogue-license gpl
+
+name refman
+category Package
+revision 1487
+shortdesc Format technical reference manuals.
+longdesc Document classes (report- and article-style) for writing
+longdesc technical reference manuals. It offers a wide left margin for
+longdesc notes to the reader, like some of the manuals distributed by
+longdesc Adobe.
+docfiles size=736665
+ texmf-dist/doc/latex/refman/lay_d2.tex
+ texmf-dist/doc/latex/refman/lay_e2.tex
+ texmf-dist/doc/latex/refman/layout_d.pdf details="Layout-Änderungen mit LaTeX" language="de"
+ texmf-dist/doc/latex/refman/layout_d.tex
+ texmf-dist/doc/latex/refman/layout_e.pdf details="Changing the layout with LaTeX" language="en"
+ texmf-dist/doc/latex/refman/layout_e.tex
+ texmf-dist/doc/latex/refman/refman.dvi
+ texmf-dist/doc/latex/refman/refman.upl details="README"
+srcfiles size=127672
+ texmf-dist/source/latex/refman/refman.dtx
+ texmf-dist/source/latex/refman/refman.ins
+runfiles size=66820
+ texmf-dist/tex/latex/refman/pagepc.sty
+ texmf-dist/tex/latex/refman/refart.cls
+ texmf-dist/tex/latex/refman/refrep.cls
+catalogue-version 2.0e
+catalogue-date 2006-11-19 21:19:11 +0100
+catalogue-ctan /macros/latex/contrib/refman
+catalogue-license lppl
+
+name refstyle
+category Package
+revision 2111
+shortdesc Advanced formatting of cross references.
+longdesc The refstyle provides a consistent way of producing references
+longdesc throughout a project. Enough flexibility is provided to make
+longdesc local changes to a single reference. The user can configure
+longdesc their own setup. refstyle has a direct interface to varioref,
+longdesc and namerefs from the nameref package can easily be
+longdesc incorporated (if needed). For large projects such as a series
+longdesc of books or a multi volume thesis, written as freestanding
+longdesc documents, a facility is provided to interface to the xr
+longdesc package for external document references.
+docfiles size=457816
+ texmf-dist/doc/latex/refstyle/refconfig.pdf details="Configuration manual:"
+ texmf-dist/doc/latex/refstyle/refstyle.pdf details="Users manual:"
+srcfiles size=24565
+ texmf-dist/source/latex/refstyle/refstyle.zip
+runfiles size=21409
+ texmf-dist/tex/latex/refstyle/refstyle.cfg
+ texmf-dist/tex/latex/refstyle/refstyle.sty
+catalogue-version 0.3
+catalogue-date 2006-09-14 22:20:05 +0200
+catalogue-ctan /macros/latex/contrib/refstyle
+catalogue-license lppl
+
+name regcount
+category Package
+revision 2419
+shortdesc Display the allocation status of the TeX registers.
+longdesc Adds a macro \rgcount which displays the allocation status of
+longdesc the TeX registers. The display is written into the .log file as
+longdesc it is a bit verbose. An automatic call to \rgcount is done at
+longdesc \begin{document} and \end{document}.
+docfiles size=178
+ texmf-dist/doc/latex/regcount/readme
+srcfiles size=10285
+ texmf-dist/source/latex/regcount/regcount.dtx
+ texmf-dist/source/latex/regcount/regcount.ins
+runfiles size=3434
+ texmf-dist/tex/latex/regcount/regcount.sty
+catalogue-version 1.0
+catalogue-date 2007-01-09 18:22:13 +0100
+catalogue-ctan /macros/latex/contrib/regcount
+catalogue-license lppl
+
+name register
+category Package
+revision 4059
+shortdesc Typeset programmable elements in digital hardware (registers).
+longdesc This package is designed for typesetting the programmable
+longdesc elements in digital hardware, i.e., registers. Such registers
+longdesc typically have many fields and can be quite wide; they are thus
+longdesc a challenge to typeset in a consistent manner. Register is
+longdesc similar in some aspects to the bytefield package. Anyone doing
+longdesc hardware documentation using LaTeX should examine both
+longdesc packages. Register requires a fairly recent version of the
+longdesc float package. A Perl module and a Perl script are provided, to
+longdesc translate the register specifications into programmable data
+longdesc structures.
+docfiles size=175412
+ texmf-dist/doc/latex/register/Reg_macro.pm
+ texmf-dist/doc/latex/register/reg_list.pl
+ texmf-dist/doc/latex/register/register.pdf details="Package documentation"
+srcfiles size=44168
+ texmf-dist/source/latex/register/register.dtx
+ texmf-dist/source/latex/register/register.ins
+runfiles size=11684
+ texmf-dist/tex/latex/register/register.sty
+catalogue-version 1.5
+catalogue-date 2007-03-09 14:28:14 +0100
+catalogue-ctan /macros/latex/contrib/register
+catalogue-license lppl
+
+name relenc
+category Package
+revision 1487
+shortdesc A "relaxed" font encoding.
+longdesc LaTeX package providing a relaxed font encoding to make
+longdesc available to a font designer more slots for insertion of
+longdesc ligatures and accented characters.
+docfiles size=384423
+ texmf-dist/doc/latex/relenc/reldemo.dvi
+ texmf-dist/doc/latex/relenc/reldemo.tex
+ texmf-dist/doc/latex/relenc/relenc.dvi
+ texmf-dist/doc/latex/relenc/relenc.tex
+srcfiles size=136088
+ texmf-dist/source/latex/relenc/README
+ texmf-dist/source/latex/relenc/relenc.dtx
+ texmf-dist/source/latex/relenc/relenc.ins
+ texmf-dist/source/latex/relenc/t1renc.dtx
+ texmf-dist/source/latex/relenc/t1rzcm.fdd
+ texmf-dist/source/latex/relenc/zcmr8d.vf2
+ texmf-dist/source/latex/relenc/zcmr8d.vf3
+ texmf-dist/source/latex/relenc/zcmra.vf2
+ texmf-dist/source/latex/relenc/zcmra.vf3
+runfiles size=51876
+ texmf-dist/fonts/tfm/public/relenc/zcmr8d.tfm
+ texmf-dist/fonts/tfm/public/relenc/zcmra.tfm
+ texmf-dist/fonts/vf/public/relenc/zcmr8d.vf
+ texmf-dist/fonts/vf/public/relenc/zcmra.vf
+ texmf-dist/tex/latex/relenc/2sidedoc.sty
+ texmf-dist/tex/latex/relenc/ecsubzcm.sty
+ texmf-dist/tex/latex/relenc/relenc.sty
+ texmf-dist/tex/latex/relenc/t1renc.def
+ texmf-dist/tex/latex/relenc/t1rzcm.fd
+catalogue-version
+catalogue-date 2007-01-09 18:22:13 +0100
+catalogue-ctan /macros/latex/contrib/relenc
+catalogue-license unknown
+
+name repeatindex
+category Package
+revision 1276
+shortdesc Repeat items in an index after a page or column break
+longdesc This Package repeats item of an index if a page or column break
+longdesc occurs within a list of subitems. This helps to find out to
+longdesc which main item a subitem belongs.
+docfiles size=16541
+ texmf-dist/doc/latex/repeatindex/README
+ texmf-dist/doc/latex/repeatindex/testrepeatindex.pdf
+ texmf-dist/doc/latex/repeatindex/testrepeatindex.tex
+runfiles size=4320
+ texmf-dist/makeindex/repeatindex/repeatindex.ist
+ texmf-dist/tex/latex/repeatindex/repeatindex.sty
+catalogue-version 0.01
+catalogue-date 2007-01-09 18:22:13 +0100
+catalogue-ctan /macros/latex/contrib/repeatindex
+catalogue-license lppl
+
+name resume
+category Package
+revision 1277
+runfiles size=25066
+ texmf-dist/tex/latex/resume/res.cls
+
+name revtex
+category Package
+revision 1278
+shortdesc Styles for various Physics Journals.
+longdesc Includes styles for American Physical Society, American
+longdesc Institute of Physics, and Optical Society of America. The
+longdesc distribution consists of the RevTeX class itself, and several
+longdesc support packages.
+docfiles size=1631442
+ texmf-dist/doc/latex/revtex/DOWNLOAD
+ texmf-dist/doc/latex/revtex/README details="Package Readme"
+ texmf-dist/doc/latex/revtex/apssamp.end
+ texmf-dist/doc/latex/revtex/apssamp.tex
+ texmf-dist/doc/latex/revtex/auguide.tex
+ texmf-dist/doc/latex/revtex/differ.tex
+ texmf-dist/doc/latex/revtex/fig_1.eps
+ texmf-dist/doc/latex/revtex/fig_2.eps
+ texmf-dist/doc/latex/revtex/ltxdocext.pdf
+ texmf-dist/doc/latex/revtex/ltxgrid.pdf
+ texmf-dist/doc/latex/revtex/ltxutil.pdf
+ texmf-dist/doc/latex/revtex/revtex4.pdf
+ texmf-dist/doc/latex/revtex/summary.tex
+ texmf-dist/doc/latex/revtex/template.aps
+srcfiles size=597224
+ texmf-dist/source/latex/revtex/ltxdocext.dtx
+ texmf-dist/source/latex/revtex/ltxgrid.dtx
+ texmf-dist/source/latex/revtex/ltxutil.dtx
+ texmf-dist/source/latex/revtex/revtex4.dtx
+ texmf-dist/source/latex/revtex/revtex4.ins
+ texmf-dist/source/latex/revtex/textcase.dtx
+runfiles size=284416
+ texmf-dist/bibtex/bib/revtex/apssamp.bib
+ texmf-dist/bibtex/bst/revtex/apsrev.bst
+ texmf-dist/bibtex/bst/revtex/apsrmp.bst
+ texmf-dist/tex/latex/revtex/10pt.rtx
+ texmf-dist/tex/latex/revtex/11pt.rtx
+ texmf-dist/tex/latex/revtex/12pt.rtx
+ texmf-dist/tex/latex/revtex/aps.rtx
+ texmf-dist/tex/latex/revtex/docs.sty
+ texmf-dist/tex/latex/revtex/revsymb.sty
+ texmf-dist/tex/latex/revtex/revtex4.cls
+ texmf-dist/tex/latex/revtex/rmp.rtx
+catalogue-version 4.0
+catalogue-date 2007-07-04 10:51:13 +0200
+catalogue-ctan /macros/latex/contrib/revtex
+catalogue-license lppl
+
+name rlepsf
+category Package
+revision 1279
+shortdesc Rewrite labels in EPS graphics.
+longdesc A macro package for use with epsf.tex which allows PostScript
+longdesc labels in an Encapsulated PostScript file to be replaced by TeX
+longdesc labels. The package provides commands \relabel (simply replace
+longdesc a PostScript string), \adjustrelabel (replace a PostScript
+longdesc string, with position adjustment), and \extralabel (add a label
+longdesc at given coordinates). You can, if you so choose, use the
+longdesc facilities of the labelfig package in place of using
+longdesc \extralabel.
+docfiles size=67884
+ texmf-dist/doc/latex/rlepsf/read.me
+ texmf-dist/doc/latex/rlepsf/rlepsdoc.ps.gz
+runfiles size=6503
+ texmf-dist/tex/latex/rlepsf/rlepsf.tex
+catalogue-version
+catalogue-date 2007-01-13 23:45:25 +0100
+catalogue-ctan /macros/generic/rlepsf
+catalogue-license lppl
+
+name rmpage
+category Package
+revision 1487
+shortdesc A package to help change page layout parameters in LaTeX.
+longdesc The package lets you change page layout parameters in small
+longdesc steps over a range of values using options. It can set
+longdesc \textwidth appropriately for the main fount, and ensure that
+longdesc the text fits inside the printable area of a printer. An
+longdesc rmpage-formatted document can be typeset identically without
+longdesc rmpage after a single cut and paste operation. Local
+longdesc configuration can set defaults: for all documents; and by
+longdesc class, by printer, and by paper size. The geometry package is
+longdesc better if you want to set page layout parameters to particular
+longdesc measurements.
+docfiles size=544095
+ texmf-dist/doc/latex/rmpage/rmpage.dvi
+ texmf-dist/doc/latex/rmpage/rmpage.tex
+srcfiles size=57085
+ texmf-dist/source/latex/rmpage/readme
+ texmf-dist/source/latex/rmpage/rmplocal.gfc
+runfiles size=266666
+ texmf-dist/tex/latex/rmpage/rmpage.sty
+ texmf-dist/tex/latex/rmpage/rmpgen.cfg
+catalogue-version
+catalogue-date 2007-01-13 23:45:25 +0100
+catalogue-ctan /macros/latex/contrib/rmpage
+catalogue-license unknown
+
+name robustcommand
+category Package
+revision 1804
+shortdesc Declare robust command, with \newcommand checks.
+longdesc The package merely provides a variation of
+longdesc \DeclareRobustCommand, which checks for the existence of a
+longdesc command before declaring it robust.
+docfiles size=75822
+ texmf-dist/doc/latex/robustcommand/README details="Readme"
+ texmf-dist/doc/latex/robustcommand/robustcommand.pdf details="Benutzerdoku:" language="de"
+srcfiles size=6424
+ texmf-dist/source/latex/robustcommand/robustcommand.dtx
+ texmf-dist/source/latex/robustcommand/robustcommand.ins
+runfiles size=1471
+ texmf-dist/tex/latex/robustcommand/robustcommand.sty
+catalogue-version 0.1
+catalogue-date 2007-02-26 15:09:49 +0100
+catalogue-ctan /macros/latex/contrib/robustcommand
+catalogue-license lppl
+
+name robustindex
+category Package
+revision 1281
+shortdesc Create index with pagerefs.
+longdesc Third parties often change the page numbers without rerunning
+longdesc makeindex. One would like to make the page numbers in the index
+longdesc entries more robust. This bundle provides robustindex.sty and
+longdesc robustglossary.sty, which use the \pageref mechanism to
+longdesc maintain correct page numbers
+docfiles size=128791
+ texmf-dist/doc/latex/robustindex/README details="Readme"
+ texmf-dist/doc/latex/robustindex/robustindex.html details="Package documentation"
+ texmf-dist/doc/latex/robustindex/robustsample.pdf
+ texmf-dist/doc/latex/robustindex/robustsample.tex
+runfiles size=8945
+ texmf-dist/tex/latex/robustindex/robustglossary.sty
+ texmf-dist/tex/latex/robustindex/robustindex.sty
+catalogue-version
+catalogue-date 2007-02-26 15:09:49 +0100
+catalogue-ctan /macros/latex/contrib/robustindex
+catalogue-license lppl
+
+name roex
+category Package
+revision 604
+srcfiles size=29834
+ texmf-dist/source/metafont/roex/0roex.doc
+ texmf-dist/source/metafont/roex/roexsamp/0roexsam.doc
+ texmf-dist/source/metafont/roex/roexsamp/es-01.mf
+ texmf-dist/source/metafont/roex/roexsamp/es-02.mf
+ texmf-dist/source/metafont/roex/roexsamp/es-03.mf
+ texmf-dist/source/metafont/roex/roexsamp/ro-01.mf
+ texmf-dist/source/metafont/roex/roexsamp/ro-02.mf
+ texmf-dist/source/metafont/roex/roexsamp/ro-03.mf
+ texmf-dist/source/metafont/roex/roexsamp/ro-04.mf
+ texmf-dist/source/metafont/roex/roexsamp/ro-05.mf
+ texmf-dist/source/metafont/roex/roexsamp/ro-06.mf
+ texmf-dist/source/metafont/roex/roexsamp/ro-07.mf
+ texmf-dist/source/metafont/roex/roexsamp/roes-01.mf
+ texmf-dist/source/metafont/roex/roexsamp/roes-02.mf
+ texmf-dist/source/metafont/roex/roexsamp/roes-03.mf
+ texmf-dist/source/metafont/roex/roexsamp/roes-04.mf
+runfiles size=69516
+ texmf-dist/metafont/roex/roex.mf
+
+name romannum
+category Package
+revision 1282
+shortdesc Generate roman numerals instead of arabic digits.
+longdesc The romannum package changes LaTeX generated numbers to be
+longdesc printed with roman numerals instead of arabic digits. It
+longdesc requires the stdclsdv package. Users of the bookhands fonts may
+longdesc find this package useful.
+docfiles size=728
+ texmf-dist/doc/latex/romannum/README details="Readme"
+srcfiles size=17738
+ texmf-dist/source/latex/romannum/romannum.dtx
+ texmf-dist/source/latex/romannum/romannum.ins
+runfiles size=4182
+ texmf-dist/tex/latex/romannum/romannum.sty
+catalogue-version
+catalogue-date 2007-01-14 10:43:12 +0100
+catalogue-ctan /macros/latex/contrib/romannum
+catalogue-license lppl
+
+name rotating
+category Package
+revision 1487
+shortdesc Rotation tools, including rotated full-page floats.
+longdesc A package built on the standard LaTeX graphics package to
+longdesc perform all the different sorts of rotation one might like,
+longdesc including complete figures and tables with their captions. If
+longdesc you want continuous text (i.e., more than one page) set in
+longdesc landscape mode, use the lscape package instead. The rotating
+longdesc packages only deals in rotated boxes (or floats), and boxes
+longdesc always stay on one page. If you need to use the facilities of
+longdesc the float in the same document, load rotating.sty via rotfloat,
+longdesc which smooths the path between the rotating and float packages.
+docfiles size=69455
+ texmf-dist/doc/latex/rotating/cat.eps
+ texmf-dist/doc/latex/rotating/examples.dvi
+ texmf-dist/doc/latex/rotating/examples.tex
+srcfiles size=14102
+ texmf-dist/source/latex/rotating/examples.ex
+ texmf-dist/source/latex/rotating/makefile
+ texmf-dist/source/latex/rotating/manifest
+ texmf-dist/source/latex/rotating/readme
+ texmf-dist/source/latex/rotating/rotating.dtx
+ texmf-dist/source/latex/rotating/rotating.ins
+runfiles size=5607
+ texmf-dist/tex/latex/rotating/rotating.sty
+catalogue-version
+catalogue-date 2007-01-14 10:43:12 +0100
+catalogue-ctan /macros/latex/contrib/rotating
+catalogue-license lppl
+
+name rotfloat
+category Package
+revision 1284
+shortdesc Rotate floats.
+longdesc The float package provides commands to define new floats of
+longdesc various styles (plain, boxed, ruled, and userdefined ones); the
+longdesc rotating package provides new environments (sidewaysfigure and
+longdesc sidewaystable) which are rotated by 90 or 270 degrees. But what
+longdesc about new rotated floats, e.g. a rotated ruled one? This
+longdesc package makes this possible; it builds a bridge between the two
+longdesc packages and extends the commands from the float package to
+longdesc define rotated versions of the new floats, too.
+docfiles size=6498
+ texmf-dist/doc/latex/rotfloat/examples.tex
+ texmf-dist/doc/latex/rotfloat/rotfloat.xml
+srcfiles size=19999
+ texmf-dist/source/latex/rotfloat/rotfloat.dtx
+ texmf-dist/source/latex/rotfloat/rotfloat.ins
+runfiles size=3864
+ texmf-dist/tex/latex/rotfloat/rotfloat.sty
+catalogue-version 1.2
+catalogue-date 2007-01-14 10:43:12 +0100
+catalogue-ctan /macros/latex/contrib/rotfloat
+catalogue-license lppl
+
+name rotpages
+category Package
+revision 1285
+shortdesc Typeset sets of pages upside-down and backwards.
+longdesc The rotpages package allows you to format documents where small
+longdesc sets of pages are rotated by 180 degrees and rearranged, so
+longdesc that they can be read by turning the printed copy upside-down.
+longdesc It was primarly meant for collecting exercises and solutions:
+longdesc using the package, you can print the exercise text normally and
+longdesc the solutions rotated.
+docfiles size=214917
+ texmf-dist/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.pdf
+ texmf-dist/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.tex
+ texmf-dist/doc/latex/rotpages/Examples/rotpages-fancy-ex.pdf
+ texmf-dist/doc/latex/rotpages/Examples/rotpages-fancy-ex.tex
+ texmf-dist/doc/latex/rotpages/Examples/rotpages-singlecolumn-ex.pdf
+ texmf-dist/doc/latex/rotpages/Examples/rotpages-singlecolumn-ex.tex
+ texmf-dist/doc/latex/rotpages/README details="Readme"
+ texmf-dist/doc/latex/rotpages/rotpages-doc.pdf
+ texmf-dist/doc/latex/rotpages/rotpages-doc.tex
+runfiles size=4701
+ texmf-dist/tex/latex/rotpages/rotpages.sty
+catalogue-version 3.0
+catalogue-date 2007-01-14 10:43:12 +0100
+catalogue-ctan /macros/latex/contrib/rotpages
+catalogue-license lppl
+
+name rsc
+category Package
+revision 5236
+shortdesc BibTeX style for use with RSC journals.
+longdesc The rsc package provides a BibTeX style in accordance with the
+longdesc requirements of the Royal Society of Chemistry. It was
+longdesc originally based on the file pccp.bst, but also implements a
+longdesc number of styles from the achemso package. The package is now a
+longdesc stub for the chemstyle package, which the author developed to
+longdesc unify the writing of articles with a chemistry content.
+docfiles size=123721
+ texmf-dist/doc/latex/rsc/README details="Readme"
+ texmf-dist/doc/latex/rsc/rsc.pdf details="Package documentation"
+srcfiles size=45889
+ texmf-dist/source/latex/rsc/rsc.dtx
+ texmf-dist/source/latex/rsc/rsc.ins
+runfiles size=120422
+ texmf-dist/bibtex/bst/rsc/angew-mc.bst
+ texmf-dist/bibtex/bst/rsc/angew.bst
+ texmf-dist/bibtex/bst/rsc/angewnat.bst
+ texmf-dist/bibtex/bst/rsc/rsc-mc.bst
+ texmf-dist/bibtex/bst/rsc/rsc.bst
+ texmf-dist/bibtex/bst/rsc/rscnat.bst
+ texmf-dist/tex/latex/rsc/jawltxdoc.sty
+ texmf-dist/tex/latex/rsc/rsc.sty
+catalogue-version 2.2
+catalogue-date 2007-10-17 10:21:00 +0200
+catalogue-ctan /macros/latex/contrib/rsc
+catalogue-license gpl
+
+name rsfs
+category Package
+revision 621
+shortdesc Ralph Smith's Formal Script font.
+longdesc Contains MetaFont sources for fonts of uppercase script letters
+longdesc for use as symbols in scientific and mathematical typesetting,
+longdesc in contrast to the informal script fonts such as that used for
+longdesc the ‘calligraphic’ symbols in the TeX maths symbol font. An
+longdesc Adobe Type 1 format version of the fonts is also available.
+longdesc LaTeX support, for using these fonts in mathematics, is
+longdesc available via one of the packages calrsfs and mathrsfs.
+execute addMixedMap rsfs.map
+docfiles size=2480
+ texmf-dist/doc/fonts/rsfs/README
+runfiles size=100381
+ texmf-dist/fonts/afm/hoekwater/rsfs/rsfs10.afm
+ texmf-dist/fonts/afm/hoekwater/rsfs/rsfs5.afm
+ texmf-dist/fonts/afm/hoekwater/rsfs/rsfs7.afm
+ texmf-dist/fonts/map/dvips/rsfs/rsfs.map
+ texmf-dist/fonts/source/public/rsfs/rsfs10.mf
+ texmf-dist/fonts/source/public/rsfs/rsfs5.mf
+ texmf-dist/fonts/source/public/rsfs/rsfs7.mf
+ texmf-dist/fonts/source/public/rsfs/script.mf
+ texmf-dist/fonts/source/public/rsfs/scriptu.mf
+ texmf-dist/fonts/tfm/public/rsfs/rsfs10.tfm
+ texmf-dist/fonts/tfm/public/rsfs/rsfs5.tfm
+ texmf-dist/fonts/tfm/public/rsfs/rsfs7.tfm
+ texmf-dist/fonts/type1/hoekwater/rsfs/rsfs10.pfb
+ texmf-dist/fonts/type1/hoekwater/rsfs/rsfs10.pfm
+ texmf-dist/fonts/type1/hoekwater/rsfs/rsfs5.pfb
+ texmf-dist/fonts/type1/hoekwater/rsfs/rsfs5.pfm
+ texmf-dist/fonts/type1/hoekwater/rsfs/rsfs7.pfb
+ texmf-dist/fonts/type1/hoekwater/rsfs/rsfs7.pfm
+ texmf-dist/tex/plain/rsfs/scrload.tex
+catalogue-version
+catalogue-date 2007-10-18 21:38:10 +0200
+catalogue-ctan /fonts/rsfs
+catalogue-license lppl
+
+name rst
+category Package
+revision 1287
+docfiles size=173522
+ texmf-dist/doc/latex/rst/README
+ texmf-dist/doc/latex/rst/rst-package.pdf
+srcfiles size=6767
+ texmf-dist/source/latex/rst/urml2latex.perl
+runfiles size=46684
+ texmf-dist/tex/latex/rst/rst.sty
+
+name rtkinenc
+category Package
+revision 1288
+shortdesc Input encoding with fallback procedures.
+longdesc The rtkinenc package is functionally similar to the standard
+longdesc LaTeX package inputenc: both set up active characters so that
+longdesc an input character outside the range of 7-bit visible ASCII is
+longdesc coverted into one or more corresponding LaTeX commands. The
+longdesc main difference lies in that rtkinenc allows the user to
+longdesc specify a fallback procedure to use when the text command
+longdesc corresponding to some input character isn't available. Names of
+longdesc commands in rtkinenc have been selected so that it can read
+longdesc inputenc encoding definition files, and the aim is that
+longdesc rtkinenc should be backwards compatible with inputenc. rtkinenc
+longdesc is not a new version of inputenc though, nor is it part of
+longdesc standard LaTeX. For an example of how rtkinenc is used, the
+longdesc user may look at the tclldoc class.
+docfiles size=1028
+ texmf-dist/doc/latex/rtkinenc/README.txt details="Readme"
+srcfiles size=22245
+ texmf-dist/source/latex/rtkinenc/rtkinenc.dtx
+ texmf-dist/source/latex/rtkinenc/rtkinenc.ins
+runfiles size=6580
+ texmf-dist/tex/latex/rtkinenc/rtkinenc.sty
+catalogue-version 1.0
+catalogue-date 2007-01-15 14:17:51 +0100
+catalogue-ctan /macros/latex/contrib/rtkinenc
+catalogue-license lppl
+
+name rtklage
+category Package
+revision 2109
+docfiles size=73561
+ texmf-dist/doc/latex/rtklage/README
+ texmf-dist/doc/latex/rtklage/bspklage.tex
+ texmf-dist/doc/latex/rtklage/rtklage.pdf
+runfiles size=2358
+ texmf-dist/tex/latex/rtklage/rtklage.cls
+
+name ruhyphen
+category Package
+revision 613
+shortdesc Russian hyphenation.
+longdesc A collection of Russian hyphenation patterns supporting a
+longdesc number of Cyrillic font encodings, including T2, UCY (Omega
+longdesc Unicode Cyrillic), LCY, LWN (OT2), and koi8-r.
+srcfiles size=32774
+ texmf-dist/source/generic/ruhyphen/BUGS
+ texmf-dist/source/generic/ruhyphen/Makefile
+ texmf-dist/source/generic/ruhyphen/README
+ texmf-dist/source/generic/ruhyphen/README.ruhyphal
+ texmf-dist/source/generic/ruhyphen/hyphen.rules
+ texmf-dist/source/generic/ruhyphen/mkcyryo
+ texmf-dist/source/generic/ruhyphen/reduce-patt
+ texmf-dist/source/generic/ruhyphen/sorthyph
+ texmf-dist/source/generic/ruhyphen/sortkoi8
+ texmf-dist/source/generic/ruhyphen/trans
+runfiles size=195834
+ texmf-dist/tex/generic/ruhyphen/catkoi.tex
+ texmf-dist/tex/generic/ruhyphen/cyryoal.tex
+ texmf-dist/tex/generic/ruhyphen/cyryoas.tex
+ texmf-dist/tex/generic/ruhyphen/cyryoct.tex
+ texmf-dist/tex/generic/ruhyphen/cyryodv.tex
+ texmf-dist/tex/generic/ruhyphen/cyryomg.tex
+ texmf-dist/tex/generic/ruhyphen/cyryovl.tex
+ texmf-dist/tex/generic/ruhyphen/cyryozn.tex
+ texmf-dist/tex/generic/ruhyphen/enrhm2.tex
+ texmf-dist/tex/generic/ruhyphen/hypht2.tex
+ texmf-dist/tex/generic/ruhyphen/koi2koi.tex
+ texmf-dist/tex/generic/ruhyphen/koi2lcy.tex
+ texmf-dist/tex/generic/ruhyphen/koi2ot2.tex
+ texmf-dist/tex/generic/ruhyphen/koi2t2a.tex
+ texmf-dist/tex/generic/ruhyphen/koi2ucy.tex
+ texmf-dist/tex/generic/ruhyphen/ruenhyph.tex
+ texmf-dist/tex/generic/ruhyphen/ruhyphal.tex
+ texmf-dist/tex/generic/ruhyphen/ruhyphas.tex
+ texmf-dist/tex/generic/ruhyphen/ruhyphct.tex
+ texmf-dist/tex/generic/ruhyphen/ruhyphdv.tex
+ texmf-dist/tex/generic/ruhyphen/ruhyphen.tex
+ texmf-dist/tex/generic/ruhyphen/ruhyphmg.tex
+ texmf-dist/tex/generic/ruhyphen/ruhyphvl.tex
+ texmf-dist/tex/generic/ruhyphen/ruhyphzn.tex
+catalogue-version 1.6
+catalogue-date 2007-01-14 10:43:12 +0100
+catalogue-ctan /language/hyphenation/ruhyphen
+catalogue-license lppl
+
+name sae
+category Package
+revision 1289
+shortdesc Typeset an SAE technical paper.
+longdesc This class provides correct formatting according to the
+longdesc requirements of an SAE (Society of Automotive Engineers)
+longdesc Technical Paper. It should be useful for authors whose papers
+longdesc have a high mathematical content.
+docfiles size=27090
+ texmf-dist/doc/latex/sae/example.pdf details="Eaxmple of use"
+ texmf-dist/doc/latex/sae/example.tex
+ texmf-dist/doc/latex/sae/index.html details="Package documentation"
+runfiles size=11403
+ texmf-dist/tex/latex/sae/sae.cls
+ texmf-dist/tex/latex/sae/saeold.cls
+catalogue-version
+catalogue-date 2006-12-03 22:46:57 +0100
+catalogue-ctan /macros/latex/contrib/sae
+catalogue-license nosell
+
+name sanskrit
+category Package
+revision 1290
+shortdesc Sanskrit support.
+longdesc A font and pre-processor suitable for the production of
+longdesc documents written in Sanskrit. Type 1 versions of the fonts are
+longdesc available.
+docfiles size=693871
+ texmf-dist/doc/latex/sanskrit/readme.txt details="Readme"
+ texmf-dist/doc/latex/sanskrit/sktdoc.pdf
+srcfiles size=225793
+ texmf-dist/source/latex/sanskrit/skt.c
+ texmf-dist/source/latex/sanskrit/sktdoc.skt
+runfiles size=612801
+ texmf-dist/fonts/map/dvips/sanskrit/skt.map
+ texmf-dist/fonts/source/public/sanskrit/skt10.mf
+ texmf-dist/fonts/source/public/sanskrit/skt8.mf
+ texmf-dist/fonts/source/public/sanskrit/skt9.mf
+ texmf-dist/fonts/source/public/sanskrit/sktb10.mf
+ texmf-dist/fonts/source/public/sanskrit/sktbs10.mf
+ texmf-dist/fonts/source/public/sanskrit/sktchars.mf
+ texmf-dist/fonts/source/public/sanskrit/sktdefs.mf
+ texmf-dist/fonts/source/public/sanskrit/sktf10.mf
+ texmf-dist/fonts/source/public/sanskrit/sktfs10.mf
+ texmf-dist/fonts/source/public/sanskrit/sktligs.mf
+ texmf-dist/fonts/source/public/sanskrit/skts10.mf
+ texmf-dist/fonts/tfm/public/sanskrit/skt10.tfm
+ texmf-dist/fonts/tfm/public/sanskrit/skt8.tfm
+ texmf-dist/fonts/tfm/public/sanskrit/skt9.tfm
+ texmf-dist/fonts/tfm/public/sanskrit/sktb10.tfm
+ texmf-dist/fonts/tfm/public/sanskrit/sktbs10.tfm
+ texmf-dist/fonts/tfm/public/sanskrit/sktf10.tfm
+ texmf-dist/fonts/tfm/public/sanskrit/sktfs10.tfm
+ texmf-dist/fonts/tfm/public/sanskrit/skts10.tfm
+ texmf-dist/fonts/type1/public/sanskrit/skt10.pfb
+ texmf-dist/fonts/type1/public/sanskrit/skt8.pfb
+ texmf-dist/fonts/type1/public/sanskrit/skt9.pfb
+ texmf-dist/fonts/type1/public/sanskrit/sktb10.pfb
+ texmf-dist/fonts/type1/public/sanskrit/sktbs10.pfb
+ texmf-dist/fonts/type1/public/sanskrit/sktf10.pfb
+ texmf-dist/fonts/type1/public/sanskrit/sktfs10.pfb
+ texmf-dist/fonts/type1/public/sanskrit/skts10.pfb
+ texmf-dist/tex/latex/sanskrit/ot1skt.fd
+ texmf-dist/tex/latex/sanskrit/skt.sty
+catalogue-version
+catalogue-date 2007-01-14 10:43:12 +0100
+catalogue-ctan /language/sanskrit
+catalogue-license lppl
+
+name sauerj
+category Package
+revision 1291
+shortdesc A bundle of utilities by Jonathan Sauer.
+longdesc The bundle consists of: a tool for collecting text for later
+longdesc re-use, a tool for typesetting the "meta-information" within a
+longdesc text, a tool for use in constructing macros with multiple
+longdesc optional parameters, a package for multiple column parallel
+longdesc texts, a tool for processing key-value structured lists, and
+longdesc macros for typesetting a number as a German-language string.
+docfiles size=1032986
+ texmf-dist/doc/latex/sauerj/README
+ texmf-dist/doc/latex/sauerj/collect.pdf
+ texmf-dist/doc/latex/sauerj/metainfo.pdf
+ texmf-dist/doc/latex/sauerj/optparams.pdf
+ texmf-dist/doc/latex/sauerj/parcolumns.pdf
+ texmf-dist/doc/latex/sauerj/processkv.pdf
+ texmf-dist/doc/latex/sauerj/zahl2string.pdf
+srcfiles size=135574
+ texmf-dist/source/latex/sauerj/collect.dtx
+ texmf-dist/source/latex/sauerj/collect.ins
+ texmf-dist/source/latex/sauerj/metainfo.dtx
+ texmf-dist/source/latex/sauerj/metainfo.ins
+ texmf-dist/source/latex/sauerj/optparams.dtx
+ texmf-dist/source/latex/sauerj/optparams.ins
+ texmf-dist/source/latex/sauerj/parcolumns.dtx
+ texmf-dist/source/latex/sauerj/parcolumns.ins
+ texmf-dist/source/latex/sauerj/processkv.dtx
+ texmf-dist/source/latex/sauerj/processkv.ins
+ texmf-dist/source/latex/sauerj/zahl2string.dtx
+ texmf-dist/source/latex/sauerj/zahl2string.ins
+runfiles size=18546
+ texmf-dist/tex/latex/sauerj/collect.sty
+ texmf-dist/tex/latex/sauerj/metainfo.sty
+ texmf-dist/tex/latex/sauerj/optparams.sty
+ texmf-dist/tex/latex/sauerj/parcolumns.sty
+ texmf-dist/tex/latex/sauerj/processkv.sty
+ texmf-dist/tex/latex/sauerj/zahl2string.sty
+catalogue-version
+catalogue-date 2007-01-15 20:25:47 +0100
+catalogue-ctan /macros/latex/contrib/sauerj
+catalogue-license lppl
+
+name sauter
+category Package
+revision 101
+shortdesc Wide range of design sizes for CM fonts.
+longdesc Extensions, originally to the CM fonts, providing a
+longdesc parameterization scheme to build MetaFont fonts at true design
+longdesc sizes, for a large range of sizes. The scheme has now been
+longdesc extended to a range of other fonts, including the AMS fonts,
+longdesc bbm, bbold, rsfs and wasy fonts.
+runfiles size=109520
+ texmf-dist/fonts/source/public/sauter/b-cmb.mf
+ texmf-dist/fonts/source/public/sauter/b-cmbsy.mf
+ texmf-dist/fonts/source/public/sauter/b-cmbx.mf
+ texmf-dist/fonts/source/public/sauter/b-cmbxsl.mf
+ texmf-dist/fonts/source/public/sauter/b-cmbxti.mf
+ texmf-dist/fonts/source/public/sauter/b-cmcsc.mf
+ texmf-dist/fonts/source/public/sauter/b-cmdunh.mf
+ texmf-dist/fonts/source/public/sauter/b-cmex.mf
+ texmf-dist/fonts/source/public/sauter/b-cmff.mf
+ texmf-dist/fonts/source/public/sauter/b-cmfi.mf
+ texmf-dist/fonts/source/public/sauter/b-cmfib.mf
+ texmf-dist/fonts/source/public/sauter/b-cminch.mf
+ texmf-dist/fonts/source/public/sauter/b-cmitt.mf
+ texmf-dist/fonts/source/public/sauter/b-cmmi.mf
+ texmf-dist/fonts/source/public/sauter/b-cmmib.mf
+ texmf-dist/fonts/source/public/sauter/b-cmr.mf
+ texmf-dist/fonts/source/public/sauter/b-cmsl.mf
+ texmf-dist/fonts/source/public/sauter/b-cmsltt.mf
+ texmf-dist/fonts/source/public/sauter/b-cmss.mf
+ texmf-dist/fonts/source/public/sauter/b-cmssbx.mf
+ texmf-dist/fonts/source/public/sauter/b-cmssdc.mf
+ texmf-dist/fonts/source/public/sauter/b-cmssi.mf
+ texmf-dist/fonts/source/public/sauter/b-cmssq.mf
+ texmf-dist/fonts/source/public/sauter/b-cmssqi.mf
+ texmf-dist/fonts/source/public/sauter/b-cmssxi.mf
+ texmf-dist/fonts/source/public/sauter/b-cmsy.mf
+ texmf-dist/fonts/source/public/sauter/b-cmtcsc.mf
+ texmf-dist/fonts/source/public/sauter/b-cmtex.mf
+ texmf-dist/fonts/source/public/sauter/b-cmti.mf
+ texmf-dist/fonts/source/public/sauter/b-cmtt.mf
+ texmf-dist/fonts/source/public/sauter/b-cmu.mf
+ texmf-dist/fonts/source/public/sauter/b-cmvtt.mf
+ texmf-dist/fonts/source/public/sauter/c-bmath.mf
+ texmf-dist/fonts/source/public/sauter/c-cmbx.mf
+ texmf-dist/fonts/source/public/sauter/c-cmex.mf
+ texmf-dist/fonts/source/public/sauter/c-cmff.mf
+ texmf-dist/fonts/source/public/sauter/c-cmmi.mf
+ texmf-dist/fonts/source/public/sauter/c-cmr.mf
+ texmf-dist/fonts/source/public/sauter/c-cmss.mf
+ texmf-dist/fonts/source/public/sauter/c-cmssbx.mf
+ texmf-dist/fonts/source/public/sauter/c-cmssq.mf
+ texmf-dist/fonts/source/public/sauter/c-cmsy.mf
+ texmf-dist/fonts/source/public/sauter/c-cmti.mf
+ texmf-dist/fonts/source/public/sauter/c-cmtt.mf
+ texmf-dist/fonts/source/public/sauter/c-sigma.mf
+catalogue-version 2.4
+catalogue-date 2007-01-14 10:43:12 +0100
+catalogue-ctan /fonts/cm/sauter
+catalogue-license unknown
+
+name sauterfonts
+category Package
+revision 1292
+shortdesc Use sauter fonts in LaTeX.
+longdesc A package providing font definition files (plus a replacement
+longdesc for the package exscale) to access many of the fonts in
+longdesc Sauter's collection. These fonts are available in all point
+longdesc sizes and look nicer for such "intermediate" document sizes as
+longdesc 11pt. Also included is the package sbbm, an alternative to
+longdesc access the bbm fonts, a nice collection of blackboard bold
+longdesc symbols.
+docfiles size=470
+ texmf-dist/doc/latex/sauterfonts/README details="Readme"
+srcfiles size=19467
+ texmf-dist/source/latex/sauterfonts/sauterfonts.fdd
+ texmf-dist/source/latex/sauterfonts/sauterfonts.ins
+runfiles size=40333
+ texmf-dist/tex/latex/sauterfonts/sbbm.sty
+ texmf-dist/tex/latex/sauterfonts/sexscale.sty
+ texmf-dist/tex/latex/sauterfonts/somlcmm.fd
+ texmf-dist/tex/latex/sauterfonts/somlcmr.fd
+ texmf-dist/tex/latex/sauterfonts/somscmr.fd
+ texmf-dist/tex/latex/sauterfonts/somscmsy.fd
+ texmf-dist/tex/latex/sauterfonts/somxcmex.fd
+ texmf-dist/tex/latex/sauterfonts/sot1cmdh.fd
+ texmf-dist/tex/latex/sauterfonts/sot1cmfib.fd
+ texmf-dist/tex/latex/sauterfonts/sot1cmfr.fd
+ texmf-dist/tex/latex/sauterfonts/sot1cmr.fd
+ texmf-dist/tex/latex/sauterfonts/sot1cmss.fd
+ texmf-dist/tex/latex/sauterfonts/sot1cmtt.fd
+ texmf-dist/tex/latex/sauterfonts/sot1cmvtt.fd
+ texmf-dist/tex/latex/sauterfonts/subbm.fd
+ texmf-dist/tex/latex/sauterfonts/subbmdh.fd
+ texmf-dist/tex/latex/sauterfonts/subbmfib.fd
+ texmf-dist/tex/latex/sauterfonts/subbmss.fd
+ texmf-dist/tex/latex/sauterfonts/subbmtt.fd
+ texmf-dist/tex/latex/sauterfonts/subbmvtt.fd
+ texmf-dist/tex/latex/sauterfonts/subbold.fd
+ texmf-dist/tex/latex/sauterfonts/sucmr.fd
+ texmf-dist/tex/latex/sauterfonts/sucmss.fd
+ texmf-dist/tex/latex/sauterfonts/sucmtt.fd
+ texmf-dist/tex/latex/sauterfonts/sulasy.fd
+ texmf-dist/tex/latex/sauterfonts/sumsa.fd
+ texmf-dist/tex/latex/sauterfonts/sumsb.fd
+ texmf-dist/tex/latex/sauterfonts/sursfs.fd
+ texmf-dist/tex/latex/sauterfonts/sustmry.fd
+ texmf-dist/tex/latex/sauterfonts/suwasy.fd
+catalogue-version
+catalogue-date 2007-01-14 10:43:12 +0100
+catalogue-ctan /macros/latex/contrib/sauterfonts
+catalogue-license gpl
+
+name savefnmark
+category Package
+revision 2392
+shortdesc Save name of the footnote mark for reuse.
+longdesc Sometimes the same footnote applies to more than one location
+longdesc in a table. With this package the mark of a footnote can be
+longdesc saved into a name, and re-used subsequently without creating
+longdesc another footnote at the bottom.
+docfiles size=186881
+ texmf-dist/doc/latex/savefnmark/savefnmark.pdf
+srcfiles size=12012
+ texmf-dist/source/latex/savefnmark/savefnmark.drv
+ texmf-dist/source/latex/savefnmark/savefnmark.dtx
+ texmf-dist/source/latex/savefnmark/savefnmark.ins
+runfiles size=1663
+ texmf-dist/tex/latex/savefnmark/savefnmark.sty
+catalogue-version 1.0
+catalogue-date 2007-01-14 15:20:52 +0100
+catalogue-ctan /macros/latex/contrib/savefnmark
+catalogue-license gpl
+
+name savesym
+category Package
+revision 1294
+shortdesc Redefine symbols where names conflict.
+longdesc There are a number of symbols (e.g., \Square) that are defined
+longdesc by several packages. In order to typeset all the variants in a
+longdesc document, we have to give the glyph a unique name. To do that,
+longdesc we define \savesymbol{XXX}, which renames a symbol from \XXX to
+longdesc \origXXX, and \restoresymbols{yyy}{XXX}, which renames \origXXX
+longdesc back to \XXX and defines a new command, \yyyXXX, which
+longdesc corresponds to the most recently loaded version of \XXX.
+runfiles size=1854
+ texmf-dist/tex/latex/savesym/savesym.sty
+catalogue-version 1.1
+catalogue-date 2007-01-14 15:20:52 +0100
+catalogue-ctan /macros/latex/contrib/savesym/savesym.sty
+catalogue-license lppl
+
+name savetrees
+category Package
+revision 2527
+shortdesc Pack as much as possible onto each page of a LaTeX document.
+longdesc The goal of the savetrees package is to pack as much text as
+longdesc possible onto each page of a LaTeX document. Admittedly, this
+longdesc makes the document far less attractive. Nevertheless, savetrees
+longdesc is a simple way to save paper when printing draft copies of a
+longdesc document. It can also be useful when trying to meet a tight
+longdesc page-length requirement for a conference or journal submission.
+docfiles size=279103
+ texmf-dist/doc/latex/savetrees/README details="Package README"
+ texmf-dist/doc/latex/savetrees/makethin.pl
+ texmf-dist/doc/latex/savetrees/savetrees.pdf details="Package documentation"
+srcfiles size=109251
+ texmf-dist/source/latex/savetrees/savetrees.dtx
+ texmf-dist/source/latex/savetrees/savetrees.ins
+runfiles size=31479
+ texmf-dist/bibtex/bst/savetrees/savetrees.bst
+ texmf-dist/tex/latex/savetrees/savetrees.sty
+catalogue-version 1.2
+catalogue-date 2006-11-21 16:17:05 +0100
+catalogue-ctan /macros/latex/contrib/savetrees
+catalogue-license lppl
+
+name scale
+category Package
+revision 2392
+shortdesc Scale document by sqrt(2) or magstep(2).
+longdesc A package to scale a document by sqrt(2) (or by \magstep{2}).
+longdesc This is useful if you are preparing a document on, for example,
+longdesc A5 paper and want to print on A4 paper to achieve a better
+longdesc resolution.
+docfiles size=18886
+ texmf-dist/doc/latex/scale/COPYING
+ texmf-dist/doc/latex/scale/README
+srcfiles size=9018
+ texmf-dist/source/latex/scale/scale.dtx
+ texmf-dist/source/latex/scale/scale.ins
+runfiles size=2884
+ texmf-dist/tex/latex/scale/scale.sty
+catalogue-version 1.1.2
+catalogue-date 2006-11-06 12:20:58 +0100
+catalogue-ctan /macros/latex/contrib/scale
+catalogue-license gpl
+
+name scalebar
+category Package
+revision 1297
+shortdesc Create scalebars for maps, diagrams or photos.
+longdesc This is a small package to create scalebars for maps, diagrams
+longdesc or photos. It was designed for use with cave maps but can be
+longdesc used for anything from showing a scalebar in kilometers for
+longdesc topographic maps to a scalebar in micrometers for an electron
+longdesc microscope image.
+docfiles size=59503
+ texmf-dist/doc/latex/scalebar/README details="Package README"
+ texmf-dist/doc/latex/scalebar/scalebar_examples.pdf details="Package usage guide and examples"
+ texmf-dist/doc/latex/scalebar/scalebar_examples.tex
+srcfiles size=20537
+ texmf-dist/source/latex/scalebar/scalebar.dtx
+ texmf-dist/source/latex/scalebar/scalebar.ins
+runfiles size=3423
+ texmf-dist/tex/latex/scalebar/scalebar.sty
+catalogue-version 1.0
+catalogue-date 2006-11-06 13:28:58 +0100
+catalogue-ctan /macros/latex/contrib/scalebar
+catalogue-license lppl
+
+name schedule
+category Package
+revision 3478
+shortdesc Weekly schedules.
+longdesc Automatically format weekly schedules using LaTeX's picture
+longdesc environment. It requires the packages calc and color. Its main
+longdesc feature is the accuracy with which appointments are
+longdesc represented: boxes drawn to represent a particular appointment
+longdesc are accurate to the minute — i.e., a 31-minute appointment
+longdesc will have a box 1/30th longer than a 30-minute appointment. A
+longdesc number of features are included to allow the user to customize
+longdesc the output.
+docfiles size=146257
+ texmf-dist/doc/latex/schedule/example.pdf details="Example of use"
+ texmf-dist/doc/latex/schedule/example.tex
+ texmf-dist/doc/latex/schedule/schedule.pdf details="Package documentation"
+srcfiles size=25690
+ texmf-dist/source/latex/schedule/schedule.dtx
+ texmf-dist/source/latex/schedule/schedule.ins
+runfiles size=16501
+ texmf-dist/tex/latex/schedule/schedule.sty
+catalogue-version
+catalogue-date 2007-01-14 15:20:52 +0100
+catalogue-ctan /macros/latex/contrib/schedule
+catalogue-license unknown
+
+name scheme-basic
+category Scheme
+revision 5228
+shortdesc TeX Live basic scheme
+longdesc This is the basic TeX Live scheme: it is a small set of files
+longdesc sufficient to typeset plain TeX or LaTeX documents in
+longdesc PostScript or PDF.
+depend collection-basic
+depend collection-latex
+
+name scheme-context
+category Scheme
+revision 5228
+shortdesc TeX Live scheme for ConTeXt
+longdesc This is the ConTeXt TeX Live scheme: it is a small set of files
+longdesc sufficient to typeset ConTeXt documents in PostScript or PDF.
+depend collection-context
+depend collection-metapost
+depend collection-xetex
+
+name scheme-full
+category Scheme
+revision 5228
+shortdesc TeX Live full scheme
+longdesc This is the full TeX Live collection: it holds all the files
+longdesc available.
+depend collection-basic
+depend collection-bibtexextra
+depend collection-binextra
+depend collection-context
+depend collection-documentation-base
+depend collection-documentation-bulgarian
+depend collection-documentation-chinese
+depend collection-documentation-czechslovak
+depend collection-documentation-dutch
+depend collection-documentation-english
+depend collection-documentation-finnish
+depend collection-documentation-french
+depend collection-documentation-german
+depend collection-documentation-greek
+depend collection-documentation-italian
+depend collection-documentation-japanese
+depend collection-documentation-korean
+depend collection-documentation-mongolian
+depend collection-documentation-polish
+depend collection-documentation-portuguese
+depend collection-documentation-russian
+depend collection-documentation-spanish
+depend collection-documentation-thai
+depend collection-documentation-turkish
+depend collection-documentation-ukrainian
+depend collection-documentation-vietnamese
+depend collection-fontbin
+depend collection-fontsextra
+depend collection-fontsrecommended
+depend collection-formatsextra
+depend collection-games
+depend collection-genericextra
+depend collection-genericrecommended
+depend collection-graphicstools
+depend collection-htmlxml
+depend collection-humanities
+depend collection-langafrican
+depend collection-langarab
+depend collection-langarmenian
+depend collection-langcjk
+depend collection-langcroatian
+depend collection-langcyrillic
+depend collection-langczechslovak
+depend collection-langdanish
+depend collection-langdutch
+depend collection-langfinnish
+depend collection-langfrench
+depend collection-langgerman
+depend collection-langgreek
+depend collection-langhebrew
+depend collection-langhungarian
+depend collection-langindic
+depend collection-langitalian
+depend collection-langlatin
+depend collection-langmanju
+depend collection-langmongolian
+depend collection-langnorwegian
+depend collection-langother
+depend collection-langpolish
+depend collection-langportuguese
+depend collection-langspanish
+depend collection-langswedish
+depend collection-langtibetan
+depend collection-langukenglish
+depend collection-langvietnamese
+depend collection-latex
+depend collection-latex3
+depend collection-latexextra
+depend collection-latexrecommended
+depend collection-mathextra
+depend collection-metapost
+depend collection-music
+depend collection-omega
+depend collection-pictures
+depend collection-plainextra
+depend collection-pstricks
+depend collection-psutils
+depend collection-publishers
+depend collection-science
+depend collection-texinfo
+depend collection-ttfutils
+depend collection-xetex
+
+name scheme-gust
+category Scheme
+revision 5228
+shortdesc GUST TeX Live scheme
+longdesc This is the GUST TeX Live scheme: it is a set of files
+longdesc sufficient to typeset Polish plain TeX, LaTeX and ConTeXt
+longdesc documents in PostScript or PDF.
+depend FAQ-en
+depend Type1fonts
+depend amslatex-primer
+depend comprehensive
+depend firststeps
+depend impatient
+depend metafont-for-beginners
+depend metafp
+depend metapost-examples
+depend pstricks-tutorial
+depend tds
+depend amstex
+depend comment
+depend concrete
+depend seminar
+depend tex4ht
+depend bin-amstex
+depend bin-bibtex8
+depend bin-dvidvi
+depend bin-dviljk
+depend bin-seetexk
+depend bin-tex4htk
+depend bin-texdoc
+depend collection-basic
+depend collection-context
+depend collection-documentation-polish
+depend collection-fontbin
+depend collection-fontsrecommended
+depend collection-langpolish
+depend collection-latex
+depend collection-latexrecommended
+depend collection-metapost
+depend collection-psutils
+depend collection-xetex
+
+name scheme-gutenberg
+category Scheme
+revision 5228
+shortdesc GUTenberg TeX Live scheme
+longdesc This is the GUTenberg TeX Live scheme: it is a small set of
+longdesc files sufficient to typeset plain TeX or LaTeX documents in
+longdesc PostScript or PDF, specifically for French-speaking users.
+depend collection-basic
+depend collection-bibtexextra
+depend collection-binextra
+depend collection-context
+depend collection-documentation-english
+depend collection-documentation-french
+depend collection-fontbin
+depend collection-fontsextra
+depend collection-fontsrecommended
+depend collection-fontsrecommended
+depend collection-genericextra
+depend collection-htmlxml
+depend collection-langfrench
+depend collection-langgerman
+depend collection-latex
+depend collection-latexextra
+depend collection-latexrecommended
+depend collection-mathextra
+depend collection-metapost
+depend collection-pictures
+depend collection-plainextra
+depend collection-pstricks
+depend collection-psutils
+depend collection-texinfo
+
+name scheme-medium
+category Scheme
+revision 5228
+shortdesc TeX Live medium scheme
+longdesc This is the medium TeX Live collection: it holds a sufficient
+longdesc set of files for a usable installation, but omits many
+longdesc additional packages.
+depend collection-basic
+depend collection-binextra
+depend collection-context
+depend collection-documentation-english
+depend collection-fontbin
+depend collection-fontsrecommended
+depend collection-langczechslovak
+depend collection-langdutch
+depend collection-langfrench
+depend collection-langgerman
+depend collection-langitalian
+depend collection-langpolish
+depend collection-langportuguese
+depend collection-langspanish
+depend collection-langukenglish
+depend collection-latex
+depend collection-latexrecommended
+depend collection-mathextra
+depend collection-metapost
+depend collection-texinfo
+depend collection-xetex
+
+name scheme-minimal
+category Scheme
+revision 5228
+shortdesc TeX Live minimal scheme
+longdesc This is the minimal TeX Live scheme, with support for only
+longdesc plain TeX. (No LaTeX macros.)
+depend collection-basic
+
+name scheme-omega
+category Scheme
+revision 5228
+shortdesc TeX Live for Omega users
+longdesc This is a collection for people working only with Omega and
+longdesc relatives on multilingual scripts.
+depend collection-basic
+depend collection-binextra
+depend collection-documentation-english
+depend collection-fontbin
+depend collection-fontsrecommended
+depend collection-langafrican
+depend collection-langarmenian
+depend collection-langcjk
+depend collection-langcroatian
+depend collection-langcyrillic
+depend collection-langczechslovak
+depend collection-langdanish
+depend collection-langdutch
+depend collection-langfinnish
+depend collection-langfrench
+depend collection-langgerman
+depend collection-langgreek
+depend collection-langhungarian
+depend collection-langindic
+depend collection-langitalian
+depend collection-langlatin
+depend collection-langmanju
+depend collection-langmongolian
+depend collection-langnorwegian
+depend collection-langother
+depend collection-langpolish
+depend collection-langportuguese
+depend collection-langspanish
+depend collection-langswedish
+depend collection-langtibetan
+depend collection-langukenglish
+depend collection-langvietnamese
+depend collection-latex
+depend collection-omega
+depend collection-texinfo
+
+name scheme-tetex
+category Scheme
+revision 5228
+shortdesc teTeX scheme
+longdesc TeX Live scheme nearly equivalent to the teTeX distribution
+longdesc that was maintained by Thomas Esser.
+depend FAQ-en
+depend amslatex-primer
+depend firststeps
+depend gentle
+depend help
+depend lshort-english
+depend mathmode
+depend pstricks-tutorial
+depend tamethebeast
+depend tds
+depend tex-refs
+depend bbm
+depend bbm-macros
+depend bbold
+depend cmbright
+depend cweb
+depend eplain
+depend eulervm
+depend mkind-english
+depend mltex
+depend rsfs
+depend bin-bibtex8
+depend bin-ctie
+depend bin-cweb
+depend bin-detex
+depend bin-dtl
+depend bin-dvi2tty
+depend bin-dvicopy
+depend bin-dvidvi
+depend bin-dviljk
+depend bin-eplain
+depend bin-mltex
+depend bin-patgen
+depend bin-seetexk
+depend bin-tie
+depend bin-web
+depend collection-basic
+depend collection-context
+depend collection-documentation-base
+depend collection-fontbin
+depend collection-fontsrecommended
+depend collection-genericrecommended
+depend collection-langcjk
+depend collection-langcroatian
+depend collection-langcyrillic
+depend collection-langczechslovak
+depend collection-langdanish
+depend collection-langdutch
+depend collection-langfinnish
+depend collection-langfrench
+depend collection-langgerman
+depend collection-langgreek
+depend collection-langhungarian
+depend collection-langitalian
+depend collection-langlatin
+depend collection-langmongolian
+depend collection-langnorwegian
+depend collection-langother
+depend collection-langpolish
+depend collection-langportuguese
+depend collection-langspanish
+depend collection-langswedish
+depend collection-langukenglish
+depend collection-langvietnamese
+depend collection-latex
+depend collection-latexrecommended
+depend collection-mathextra
+depend collection-metapost
+depend collection-omega
+depend collection-pictures
+depend collection-pstricks
+depend collection-texinfo
+
+name scheme-xml
+category Scheme
+revision 5228
+shortdesc XML typesetting scheme
+longdesc This contains the things you need to do XML-related work,
+longdesc including PassiveTeX, Jadetex, Context and Omega
+depend context
+depend jadetex
+depend ltxmisc
+depend marvosym
+depend marvosym
+depend metapost
+depend passivetex
+depend rotating
+depend stmaryrd
+depend tex4ht
+depend tipa
+depend ucs
+depend wasy
+depend wasysym
+depend xmltex
+depend bin-context
+depend bin-jadetex
+depend bin-metapost
+depend bin-tex4htk
+depend bin-xmltex
+depend collection-basic
+depend collection-fontsrecommended
+depend collection-latex
+depend collection-omega
+
+name scientificpaper
+category Package
+revision 1299
+shortdesc Format a scientific paper for journal publication.
+docfiles size=2656
+ texmf-dist/doc/latex/scientificpaper/README
+runfiles size=3591
+ texmf-dist/tex/latex/scientificpaper/science.sty
+catalogue-version
+catalogue-date 2007-01-14 15:20:52 +0100
+catalogue-ctan /macros/latex/contrib/scientificpaper/science.sty
+catalogue-license lppl
+
+name sciposter
+category Package
+revision 1975
+shortdesc Make posters of ISO A3 size and larger.
+longdesc This collection of files contains LaTeX packages for posters of
+longdesc ISO A3 size and larger (ISO A0 is the default size). American
+longdesc paper sizes and custom paper are supported. In particular,
+longdesc sciposter.cls defines a document class which allows cutting and
+longdesc pasting most of an article to a poster without any editing
+longdesc (save reducing the size) — see the manual. Sciposter does
+longdesc work for LaTeX, not just pdfLaTeX. However, xdvi produces
+longdesc strange results, though a recent version of dvips does create
+longdesc good ps-files from the dvi files. Also note that logos must
+longdesc either be put in the current working directory or in the
+longdesc directories of your LaTeX distribution. For some reason
+longdesc graphicspath settings are ignored.
+docfiles size=633190
+ texmf-dist/doc/latex/sciposter/README
+ texmf-dist/doc/latex/sciposter/sciposterexample/auto/sciposter-example.el
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks1.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks1.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks1a.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks1a.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks1mx.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks1mx.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks1vx.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks1vx.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks2.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks2.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks2mx.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks2mx.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3mx.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3mx.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3op.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3op.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3openvx.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3rec.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3rec.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3vx.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocks3vx.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocksopen3a.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocksopen3a.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocksopen3vx.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocksopen3vx.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocksopen3vy.eps
+ texmf-dist/doc/latex/sciposter/sciposterexample/blocksopen3vy.pdf
+ texmf-dist/doc/latex/sciposter/sciposterexample/sciposter-example.tex
+ texmf-dist/doc/latex/sciposter/scipostermanual.pdf
+runfiles size=33640
+ texmf-dist/tex/latex/sciposter/paperb0.cfg
+ texmf-dist/tex/latex/sciposter/paperb1.cfg
+ texmf-dist/tex/latex/sciposter/paperb2.cfg
+ texmf-dist/tex/latex/sciposter/paperb3.cfg
+ texmf-dist/tex/latex/sciposter/papercustom.cfg
+ texmf-dist/tex/latex/sciposter/paperra0.cfg
+ texmf-dist/tex/latex/sciposter/paperra1.cfg
+ texmf-dist/tex/latex/sciposter/paperra2.cfg
+ texmf-dist/tex/latex/sciposter/sciposter.cls
+catalogue-version 1.18
+catalogue-date 2007-02-26 21:24:31 +0100
+catalogue-ctan /macros/latex/contrib/sciposter
+catalogue-license lppl
+
+name sciwordconv
+category Package
+revision 1301
+docfiles size=1165
+ texmf-dist/doc/latex/sciwordconv/README
+srcfiles size=1499
+ texmf-dist/source/latex/sciwordconv/GenericRussian.shl
+runfiles size=4559
+ texmf-dist/tex/latex/sciwordconv/Sw2Rus.sty
+
+name screenplay
+category Package
+revision 2521
+shortdesc A class file to typeset screenplays.
+longdesc The class implements the format recommended by the Academy of
+longdesc Motion Picture Arts and Sciences.
+docfiles size=198400
+ texmf-dist/doc/latex/screenplay/COPYING
+ texmf-dist/doc/latex/screenplay/README details="Package README"
+ texmf-dist/doc/latex/screenplay/example.tex
+ texmf-dist/doc/latex/screenplay/screenplay.pdf details="Package documentation"
+ texmf-dist/doc/latex/screenplay/test.pdf details="Example script"
+ texmf-dist/doc/latex/screenplay/test.tex
+srcfiles size=54575
+ texmf-dist/source/latex/screenplay/screenplay.dtx
+ texmf-dist/source/latex/screenplay/screenplay.ins
+runfiles size=8102
+ texmf-dist/tex/latex/screenplay/hardmarg.sty
+ texmf-dist/tex/latex/screenplay/screenplay.cls
+catalogue-version 1.535
+catalogue-date 2007-02-26 21:24:31 +0100
+catalogue-ctan /macros/latex/contrib/screenplay
+catalogue-license gpl
+
+name script
+category Package
+revision 2392
+shortdesc Variant report and book styles.
+longdesc A “jiffy” conversion to LaTeX2e of some old document
+longdesc styles.
+docfiles size=2244
+ texmf-dist/doc/latex/script/script2e.txt
+runfiles size=64252
+ texmf-dist/tex/latex/script/script.cls
+ texmf-dist/tex/latex/script/script10.sty
+ texmf-dist/tex/latex/script/script11.sty
+ texmf-dist/tex/latex/script/script12.sty
+ texmf-dist/tex/latex/script/script18.sty
+ texmf-dist/tex/latex/script/script_l.cls
+ texmf-dist/tex/latex/script/script_s.cls
+catalogue-version
+catalogue-date 2007-01-14 15:20:52 +0100
+catalogue-ctan /macros/latex/contrib/script
+catalogue-license unknown
+
+name sdrt
+category Package
+revision 4292
+shortdesc Macros for Segmented Discourse Representation Theory.
+longdesc The package provides macros to produce the ‘Box notation’
+longdesc of SDRT (and DRT), to draw trees representing discourse
+longdesc relations, and finally to have an easy access to various
+longdesc mathematical symbols used in that theory, mostly with automatic
+longdesc mathematics mode, so they work the same in formulae and in
+longdesc text.
+docfiles size=242548
+ texmf-dist/doc/latex/sdrt/README details="Readme"
+ texmf-dist/doc/latex/sdrt/sdrt-doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/sdrt/sdrt-doc.tex
+runfiles size=9207
+ texmf-dist/tex/latex/sdrt/sdrt.sty
+catalogue-version 1.0
+catalogue-date 2007-05-18 10:40:08 +0200
+catalogue-ctan /macros/latex/contrib/sdrt
+catalogue-license lppl
+
+name sectionbox
+category Package
+revision 2240
+shortdesc Create fancy boxed ((sub)sub)sections.
+longdesc Sectionbox is a LaTeX package for putting fancy colored boxes
+longdesc around sections, subsections, and subsubsections, especially
+longdesc for use in posters, etc. It was designed with the sciposter
+longdesc class in mind, and certainly works with that class and with
+longdesc derived classes.
+docfiles size=374607
+ texmf-dist/doc/latex/sectionbox/README details="Readme"
+ texmf-dist/doc/latex/sectionbox/example/000074Bpatspec.png
+ texmf-dist/doc/latex/sectionbox/example/000074Bzones.jpg
+ texmf-dist/doc/latex/sectionbox/example/000175Bpatspec.png
+ texmf-dist/doc/latex/sectionbox/example/000175Bzones.jpg
+ texmf-dist/doc/latex/sectionbox/example/002000AApatspec.png
+ texmf-dist/doc/latex/sectionbox/example/002000AAzones.jpg
+ texmf-dist/doc/latex/sectionbox/example/lambda2.jpg
+ texmf-dist/doc/latex/sectionbox/example/lenna10connect.jpg
+ texmf-dist/doc/latex/sectionbox/example/lenna10pct.jpg
+ texmf-dist/doc/latex/sectionbox/example/lenna10smooth.jpg
+ texmf-dist/doc/latex/sectionbox/example/orig.jpg
+ texmf-dist/doc/latex/sectionbox/example/sectionboxexample.bib
+ texmf-dist/doc/latex/sectionbox/example/sectionboxexample.tex
+ texmf-dist/doc/latex/sectionbox/sectionboxmanual.pdf details="Package documentation"
+runfiles size=7890
+ texmf-dist/tex/latex/sectionbox/sectionbox.sty
+catalogue-version 1.01
+catalogue-date 2007-02-26 21:24:31 +0100
+catalogue-ctan /macros/latex/contrib/sectionbox
+catalogue-license lppl
+
+name sectsty
+category Package
+revision 1768
+shortdesc Control sectional headers.
+longdesc A LaTeX2e package to help change the style of any or all of
+longdesc LaTeX's sectional headers in the article, book, or report
+longdesc classes. Examples include the addition of rules above or below
+longdesc a section title.
+docfiles size=232501
+ texmf-dist/doc/latex/sectsty/sectsty.pdf details="Package documentation"
+srcfiles size=91444
+ texmf-dist/source/latex/sectsty/sectsty.dtx
+ texmf-dist/source/latex/sectsty/sectsty.ins
+runfiles size=22423
+ texmf-dist/tex/latex/sectsty/sectsty.sty
+catalogue-version 2.0.2
+catalogue-date 2007-01-14 15:20:52 +0100
+catalogue-ctan /macros/latex/contrib/sectsty
+catalogue-license lppl
+
+name semantic
+category Package
+revision 1783
+shortdesc Help for writing programming language semantics.
+longdesc Eases the typesetting of notation of semantics and compilers.
+longdesc Includes T-diagrams, various derivation symbols and inference
+longdesc trees.
+docfiles size=392885
+ texmf-dist/doc/latex/semantic/semantic.pdf details="Package documentation"
+srcfiles size=118248
+ texmf-dist/source/latex/semantic/semantic.dtx
+ texmf-dist/source/latex/semantic/semantic.ins
+runfiles size=29528
+ texmf-dist/tex/latex/semantic/infernce.sty
+ texmf-dist/tex/latex/semantic/ligature.sty
+ texmf-dist/tex/latex/semantic/reserved.sty
+ texmf-dist/tex/latex/semantic/semantic.sty
+ texmf-dist/tex/latex/semantic/shrthand.sty
+ texmf-dist/tex/latex/semantic/tdiagram.sty
+catalogue-version 2.0
+catalogue-date 2007-01-15 20:26:34 +0100
+catalogue-ctan /macros/latex/contrib/semantic
+catalogue-license lppl
+
+name semaphor
+category Package
+revision 1306
+shortdesc Semaphore alphabet font.
+longdesc These MetaFont representations of semaphore are highly
+longdesc schematic, but very clear.
+docfiles size=178113
+ texmf-dist/doc/latex/semaphor/README details="Readme"
+ texmf-dist/doc/latex/semaphor/example.pdf details="Listing of semaphor letters"
+ texmf-dist/doc/latex/semaphor/example.tex
+ texmf-dist/doc/latex/semaphor/semaf.tex
+runfiles size=59217
+ texmf-dist/fonts/source/public/semaphor/semaf.mf
+ texmf-dist/fonts/source/public/semaphor/smfbf10.mf
+ texmf-dist/fonts/source/public/semaphor/smfebf10.mf
+ texmf-dist/fonts/source/public/semaphor/smfer10.mf
+ texmf-dist/fonts/source/public/semaphor/smfesl10.mf
+ texmf-dist/fonts/source/public/semaphor/smfett10.mf
+ texmf-dist/fonts/source/public/semaphor/smfpbf10.mf
+ texmf-dist/fonts/source/public/semaphor/smfpr10.mf
+ texmf-dist/fonts/source/public/semaphor/smfpsl10.mf
+ texmf-dist/fonts/source/public/semaphor/smfptt10.mf
+ texmf-dist/fonts/source/public/semaphor/smfr10.mf
+ texmf-dist/fonts/source/public/semaphor/smfsl10.mf
+ texmf-dist/fonts/source/public/semaphor/smftt10.mf
+ texmf-dist/fonts/tfm/public/semaphor/smfbf10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfebf10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfer10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfesl10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfett10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfpbf10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfpr10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfpsl10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfptt10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfr10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smfsl10.tfm
+ texmf-dist/fonts/tfm/public/semaphor/smftt10.tfm
+ texmf-dist/tex/latex/semaphor/il2semaf.fd
+ texmf-dist/tex/latex/semaphor/semaf.fd
+catalogue-version
+catalogue-date 2007-10-18 23:24:52 +0200
+catalogue-ctan /fonts/semaphor
+catalogue-license gpl
+
+name seminar
+category Package
+revision 3430
+shortdesc Overhead slides.
+longdesc A class that produces overhead slides (transparencies), with
+longdesc many facilities. The class requires availability of the
+longdesc fancybox package. Seminar is also the basis of other classes,
+longdesc such as prosper. In fact, seminar is not nowadays reckoned a
+longdesc good basis for a presentation — users are advised to use more
+longdesc recent classes such as powerdot or beamer, both of which are
+longdesc tuned to 21st-century presentation styles.
+docfiles size=396653
+ texmf-dist/doc/latex/seminar/2up.doc
+ texmf-dist/doc/latex/seminar/read-me.2e details="Readme about use with LaTeX2e"
+ texmf-dist/doc/latex/seminar/sem-read.me details="Package Readme"
+ texmf-dist/doc/latex/seminar/sem-user.pdf
+ texmf-dist/doc/latex/seminar/sem-user.tex
+ texmf-dist/doc/latex/seminar/semsamp1.tex
+ texmf-dist/doc/latex/seminar/semsamp2.tex
+ texmf-dist/doc/latex/seminar/tvz-code.sty
+ texmf-dist/doc/latex/seminar/tvz-hax.sty
+ texmf-dist/doc/latex/seminar/tvz-user.sty
+runfiles size=162221
+ texmf-dist/tex/latex/seminar/2up.sty
+ texmf-dist/tex/latex/seminar/2up.tex
+ texmf-dist/tex/latex/seminar/npsfont.sty
+ texmf-dist/tex/latex/seminar/sem-a4.sty
+ texmf-dist/tex/latex/seminar/sem-page.sty
+ texmf-dist/tex/latex/seminar/semcolor.sty
+ texmf-dist/tex/latex/seminar/semhelv.sty
+ texmf-dist/tex/latex/seminar/seminar.bg2
+ texmf-dist/tex/latex/seminar/seminar.bug
+ texmf-dist/tex/latex/seminar/seminar.cls
+ texmf-dist/tex/latex/seminar/seminar.sty
+ texmf-dist/tex/latex/seminar/semlayer.sty
+ texmf-dist/tex/latex/seminar/semlcmss.sty
+ texmf-dist/tex/latex/seminar/semrot.sty
+ texmf-dist/tex/latex/seminar/slidesec.sty
+ texmf-dist/tex/latex/seminar/xcomment.sty
+catalogue-version 1.4
+catalogue-date 2007-09-18 12:44:12 +0200
+catalogue-ctan /macros/latex/contrib/seminar
+catalogue-license lppl
+
+name semioneside
+category Package
+revision 1308
+shortdesc Put only special contents on left-hand pages in two sided layout.
+longdesc This package supports the preparation of semi one sided
+longdesc documents. That is, two sided documents, where all text is
+longdesc output on right-hand pages—as in a one-sided documents—and
+longdesc only special contents are output on left-hand pages on user
+longdesc request, e.g., floating objects.
+docfiles size=154162
+ texmf-dist/doc/latex/semioneside/README
+ texmf-dist/doc/latex/semioneside/example.tex
+ texmf-dist/doc/latex/semioneside/figure.mp
+ texmf-dist/doc/latex/semioneside/semioneside.pdf details="Package documentation"
+srcfiles size=20743
+ texmf-dist/source/latex/semioneside/semioneside.dtx
+ texmf-dist/source/latex/semioneside/semioneside.ins
+runfiles size=1821
+ texmf-dist/tex/latex/semioneside/semioneside.sty
+catalogue-version v0.41
+catalogue-date 2007-02-26 21:24:31 +0100
+catalogue-ctan /macros/latex/contrib/semioneside
+catalogue-license lppl
+
+name seqsplit
+category Package
+revision 1938
+shortdesc Split long sequences of characters in a neutral way.
+longdesc When one needs to type long sequences of letters (such as in
+longdesc base-sequences in genes) or of numbers (such as calculations of
+longdesc transcendental numbers), there's no obvious break points to be
+longdesc found. The package provides a command \seqsplit, which makes
+longdesc its argument splittable anywhere, and then leaves the TeX
+longdesc paragraph-maker to do the splitting. While the package may
+longdesc obviously be used to typeset DNA sequences, the user may
+longdesc consider the dnaseq as a rather more powerful alternative.
+docfiles size=128740
+ texmf-dist/doc/latex/seqsplit/README
+ texmf-dist/doc/latex/seqsplit/seqsplit.pdf details="Package documentation"
+srcfiles size=16943
+ texmf-dist/source/latex/seqsplit/Makefile
+ texmf-dist/source/latex/seqsplit/seqsplit.dtx
+ texmf-dist/source/latex/seqsplit/seqsplit.ins
+runfiles size=1346
+ texmf-dist/tex/latex/seqsplit/seqsplit.sty
+catalogue-version 0.1
+catalogue-date 2007-07-23 22:41:48 +0200
+catalogue-ctan /macros/latex/contrib/seqsplit
+catalogue-license lppl
+
+name setspace
+category Package
+revision 1309
+shortdesc Set space between lines.
+longdesc Provides support for setting the spacing between lines in a
+longdesc document. Package options include singlespacing,
+longdesc onehalfspacing, and doublespacing. Alternatively the spacing
+longdesc can be changed as required with the \singlespacing,
+longdesc \onehalfspacing, and \doublespacing commands. Other size
+longdesc spacings also available.
+runfiles size=21972
+ texmf-dist/tex/latex/setspace/setspace.sty
+catalogue-version 6.7
+catalogue-date 2007-01-14 22:06:18 +0100
+catalogue-ctan /macros/latex/contrib/setspace/setspace.sty
+catalogue-license pd
+
+name sf298
+category Package
+revision 1310
+shortdesc Standard form 298.
+longdesc A LaTeX package for generating a completed standard form 298
+longdesc (Rev. 8-98) as prescribed by ANSI Std. Z39.18 for report
+longdesc documentation as part of a document delivered, for instance, on
+longdesc a U.S. government contract.
+docfiles size=353016
+ texmf-dist/doc/latex/sf298/sample298.pdf
+ texmf-dist/doc/latex/sf298/sample298.tex
+ texmf-dist/doc/latex/sf298/sf298.pdf
+srcfiles size=86452
+ texmf-dist/source/latex/sf298/Makefile
+ texmf-dist/source/latex/sf298/sf298.dtx
+ texmf-dist/source/latex/sf298/sf298.ins
+runfiles size=20565
+ texmf-dist/tex/latex/sf298/sf298.sty
+catalogue-version 1.2
+catalogue-date 2007-01-14 22:06:18 +0100
+catalogue-ctan /macros/latex/contrib/sf298
+catalogue-license lppl
+
+name sffms
+category Package
+revision 1311
+shortdesc Typesetting science fiction/fantasy manuscripts.
+longdesc The class is designed for typesetting science fiction and
+longdesc fantasy manuscripts. Sffms now includes several options for
+longdesc specific publishers as well as extensive documentation aimed at
+longdesc new LaTeX users.
+docfiles size=207981
+ texmf-dist/doc/latex/sffms/README details="Readme"
+ texmf-dist/doc/latex/sffms/blind.tex
+ texmf-dist/doc/latex/sffms/sffms_manual.pdf details="Package documentation"
+srcfiles size=48681
+ texmf-dist/source/latex/sffms/sffms.dtx
+ texmf-dist/source/latex/sffms/sffms.ins
+runfiles size=10429
+ texmf-dist/tex/latex/sffms/sffdumb.sty
+ texmf-dist/tex/latex/sffms/sffms.cls
+ texmf-dist/tex/latex/sffms/sffsmart.sty
+catalogue-version 2.0
+catalogue-date 2007-01-14 22:06:18 +0100
+catalogue-ctan /macros/latex/contrib/sffms
+catalogue-license lppl
+
+name sfg
+category Package
+revision 4837
+shortdesc Draw signal flow graphs.
+longdesc Defines some commands to draw signal flow graphs as used by
+longdesc electrical and electronics engineers and graph theorists.
+longdesc Requires fp and pstricks packages (and a relatively fast
+longdesc machine...).
+docfiles size=1629
+ texmf-dist/doc/latex/sfg/Changes
+ texmf-dist/doc/latex/sfg/README
+ texmf-dist/doc/latex/sfg/sfg_test.tex
+runfiles size=23047
+ texmf-dist/tex/latex/sfg/sfg.sty
+catalogue-version
+catalogue-date 2007-09-03 20:59:48 +0200
+catalogue-ctan /macros/latex/contrib/sfg/sfg.sty
+catalogue-license unknown
+
+name sfmath
+category Package
+revision 4860
+shortdesc Sans-serif mathematics.
+longdesc sfmath is a simple package for sans serif maths in documents.
+longdesc After including the package, all maths of the current document
+longdesc is displayed with sans serif fonts.
+runfiles size=16929
+ texmf-dist/tex/latex/sfmath/sfmath.sty
+catalogue-version 0.8
+catalogue-date 2007-09-04 16:24:49 +0200
+catalogue-ctan /macros/latex/contrib/sfmath/sfmath.sty
+catalogue-license lppl
+
+name sgame
+category Package
+revision 2183
+shortdesc LaTeX style for typesetting strategic games.
+longdesc Formats strategic games. For a 2x2 game, for example, the
+longdesc input: \begin{game}{2}{2} &$L$ &$M$\\ $T$ &$2,2$ &$2,0$\\ $B$
+longdesc &$3,0$ &$0,9$ \end{game} produces output with (a) boxes around
+longdesc the payoffs, (b) payoff columns of equal width, and (c) payoffs
+longdesc vertically centered within the boxes. Note that the game
+longdesc environment will not work in the argument of another command.
+docfiles size=98304
+ texmf-dist/doc/latex/sgame/README
+ texmf-dist/doc/latex/sgame/sgame.pdf
+ texmf-dist/doc/latex/sgame/sgame.tex
+runfiles size=29797
+ texmf-dist/tex/latex/sgame/sgame.sty
+ texmf-dist/tex/latex/sgame/sgamevar.sty
+catalogue-version 2.13
+catalogue-date 2007-02-26 21:24:31 +0100
+catalogue-ctan /macros/latex/contrib/sgame
+catalogue-license lppl
+
+name shadbox
+category Package
+revision 1313
+shortdesc Shade the background of any box.
+longdesc Two packages that shade the background of any box by device-
+longdesc independent techniques (based on pixel shading). The two
+longdesc packages implement alternative pixel positioning algorithms.
+runfiles size=4555
+ texmf-dist/tex/latex/shadbox/shadbox.sty
+ texmf-dist/tex/latex/shadbox/shadbox1.sty
+catalogue-version
+catalogue-date 2007-01-14 22:06:18 +0100
+catalogue-ctan /macros/latex/contrib/shadbox
+catalogue-license other
+
+name shadethm
+category Package
+revision 1314
+docfiles size=1067
+ texmf-dist/doc/latex/shadethm/1st_read.me
+runfiles size=22515
+ texmf-dist/tex/latex/shadethm/colored.sth
+ texmf-dist/tex/latex/shadethm/shadein.sth
+ texmf-dist/tex/latex/shadethm/shadethm.sty
+
+name shapepar
+category Package
+revision 2523
+shortdesc A macro to typeset paragraphs in specific shapes.
+longdesc \shapepar is a macro to typeset paragraphs in a specific shape.
+longdesc The size is adjusted automatically so that the entire shape is
+longdesc filled with text. There may not be displayed maths or
+longdesc ‘\vadjust’ material (no \vspace) in the argument of
+longdesc \shapepar. The macros work for both LaTeX and plain TeX. For
+longdesc LaTeX, specify \usepackage{shapepar}; for Plain, \input
+longdesc shapepar.sty. \shapepar works in terms of user-defined shapes,
+longdesc though the package does provide some predefined shapes: so you
+longdesc can form any paragraph into the form of a heart by putting
+longdesc \heartpar{sometext...} inside your document. The tedium of
+longdesc creating these polygon definitions may be alleviated by using
+longdesc the shapepatch extension to transfig which will convert xfig
+longdesc output to \shapepar polygon form.
+docfiles size=235727
+ texmf-dist/doc/generic/shapepar/Canflagshape.def
+ texmf-dist/doc/generic/shapepar/README.shapepar details="Package README"
+ texmf-dist/doc/generic/shapepar/TeXshape.def
+ texmf-dist/doc/generic/shapepar/candleshape.def
+ texmf-dist/doc/generic/shapepar/dropshape.def
+ texmf-dist/doc/generic/shapepar/proshap.py
+ texmf-dist/doc/generic/shapepar/shapepar.ltx
+ texmf-dist/doc/generic/shapepar/shapepar.pdf details="Package documentation"
+ texmf-dist/doc/generic/shapepar/triangleshapes.def
+runfiles size=44054
+ texmf-dist/tex/generic/shapepar/shapepar.sty
+catalogue-version 2.1
+catalogue-date 2006-11-17 21:44:41 +0100
+catalogue-ctan /macros/latex/contrib/shapepar
+catalogue-license nocommercial
+
+name shortlst
+category Package
+revision 1487
+shortdesc Compact lists by running several items per line.
+longdesc Provides four environments for typesetting lists of short items
+longdesc which may be laid out horizontally to save space.
+docfiles size=34800
+ texmf-dist/doc/latex/shortlst/shortlst.dvi
+srcfiles size=31783
+ texmf-dist/source/latex/shortlst/shortlst.dtx
+ texmf-dist/source/latex/shortlst/shortlst.ins
+runfiles size=4955
+ texmf-dist/tex/latex/shortlst/shortlst.sty
+catalogue-version 1.1
+catalogue-date 2006-12-08 22:20:56 +0100
+catalogue-ctan /macros/latex/contrib/shortlst
+catalogue-license unknown
+
+name shorttoc
+category Package
+revision 2392
+shortdesc Table of contents with different depths.
+longdesc A package to create another table of contents with a different
+longdesc depth, useful in large documents where a detailed table of
+longdesc contents should be accompanied by a shorter one, giving only a
+longdesc general overview of the main topics in the document.
+docfiles size=205279
+ texmf-dist/doc/latex/shorttoc/00readme details="Package README"
+ texmf-dist/doc/latex/shorttoc/shorttoc.pdf details="Package documentation"
+srcfiles size=9975
+ texmf-dist/source/latex/shorttoc/shorttoc.dtx
+ texmf-dist/source/latex/shorttoc/shorttoc.ins
+runfiles size=2197
+ texmf-dist/tex/latex/shorttoc/shorttoc.sty
+catalogue-version 1.3
+catalogue-date 2006-11-06 12:20:58 +0100
+catalogue-ctan /macros/latex/contrib/shorttoc
+catalogue-license lppl
+
+name showdim
+category Package
+revision 1317
+shortdesc Variants on printing dimensions.
+longdesc A package for LaTeX providing a number of commands for printing
+longdesc the value of a TeX dimension. For example,
+longdesc \tenthpt{\baselineskip} yields the current value of
+longdesc \baselineskip rounded to the nearest tenth of a point.
+runfiles size=2801
+ texmf-dist/tex/latex/showdim/showdim.sty
+catalogue-version
+catalogue-date 2007-01-14 22:06:18 +0100
+catalogue-ctan /macros/latex/contrib/showdim/showdim.sty
+catalogue-license unknown
+
+name showexpl
+category Package
+revision 4036
+shortdesc Typesetting LaTeX source code.
+longdesc This package provides a way to typeset LaTeX source code and
+longdesc the related result in the same document.
+docfiles size=444520
+ texmf-dist/doc/latex/showexpl/README details="README file"
+ texmf-dist/doc/latex/showexpl/result-picture.pdf
+ texmf-dist/doc/latex/showexpl/showexpl-test.pdf
+ texmf-dist/doc/latex/showexpl/showexpl-test.tex
+ texmf-dist/doc/latex/showexpl/showexpl.cfg
+ texmf-dist/doc/latex/showexpl/showexpl.pdf
+srcfiles size=28562
+ texmf-dist/source/latex/showexpl/showexpl.dtx
+ texmf-dist/source/latex/showexpl/showexpl.ins
+runfiles size=12344
+ texmf-dist/tex/latex/showexpl/showexpl.sty
+catalogue-version v0.3h
+catalogue-date 2007-05-25 16:15:27 +0200
+catalogue-ctan /macros/latex/contrib/showexpl
+catalogue-license lppl
+
+name showlabels
+category Package
+revision 4452
+shortdesc Show label commands in the margin.
+longdesc This package helps you keep track of all the labels you define,
+longdesc by putting the name of new labels into the margin whenever the
+longdesc \label command is used. The package allows you to do the same
+longdesc thing for other commands. The only one for which this is
+longdesc obviously useful is the \cite command, but it's easy to do it
+longdesc for others, such as the \ref or \begin commands.
+docfiles size=117494
+ texmf-dist/doc/latex/showlabels/LICENCE
+ texmf-dist/doc/latex/showlabels/README details="Readme"
+ texmf-dist/doc/latex/showlabels/VERSION
+ texmf-dist/doc/latex/showlabels/showlabels.html details="Package documentation (HTML)"
+ texmf-dist/doc/latex/showlabels/showlabels.pdf details="Package documentation (PDF)"
+srcfiles size=37026
+ texmf-dist/source/latex/showlabels/showlabels.drv
+ texmf-dist/source/latex/showlabels/showlabels.dtx
+ texmf-dist/source/latex/showlabels/showlabels.ins
+runfiles size=8012
+ texmf-dist/tex/latex/showlabels/showlabels.sty
+catalogue-version 1.6.1
+catalogue-date 2007-06-17 21:12:49 +0200
+catalogue-ctan /macros/latex/contrib/showlabels
+catalogue-license gpl
+
+name sidecap
+category Package
+revision 2392
+shortdesc Typeset captions sideways.
+longdesc Defines environments called SCfigure and SCtable (analogous to
+longdesc figure and table) to typeset captions sideways. Options include
+longdesc outercaption, innercaption, leftcaption and rightcaption.
+docfiles size=171306
+ texmf-dist/doc/latex/sidecap/README details="Readme"
+ texmf-dist/doc/latex/sidecap/sc-test-common.tex
+ texmf-dist/doc/latex/sidecap/sc-test1.tex
+ texmf-dist/doc/latex/sidecap/sc-test2.tex
+ texmf-dist/doc/latex/sidecap/sc-test3.tex
+ texmf-dist/doc/latex/sidecap/sc-test4.tex
+ texmf-dist/doc/latex/sidecap/sc-test5.tex
+ texmf-dist/doc/latex/sidecap/sc-test6.tex
+ texmf-dist/doc/latex/sidecap/sidecap.pdf details="Package documentation"
+srcfiles size=26734
+ texmf-dist/source/latex/sidecap/Makefile
+ texmf-dist/source/latex/sidecap/sidecap.dtx
+ texmf-dist/source/latex/sidecap/sidecap.ins
+runfiles size=10526
+ texmf-dist/tex/latex/sidecap/sidecap.sty
+catalogue-version 1.6f
+catalogue-date 2007-01-14 23:54:50 +0100
+catalogue-ctan /macros/latex/contrib/sidecap
+catalogue-license lppl
+
+name sides
+category Package
+revision 1321
+shortdesc A LaTeX class for typesetting stage plays.
+longdesc This is a LaTeX class for typesetting stage plays, based on the
+longdesc plari class written by Antti-Juhani Kaijanaho in 1998. It has
+longdesc been updated and several formatting changes have been made to
+longdesc it—most noticibly there are no longer orphans.
+docfiles size=56045
+ texmf-dist/doc/latex/sides/README details="Readme"
+ texmf-dist/doc/latex/sides/sides-sample.pdf details="A (distressing) sample play"
+ texmf-dist/doc/latex/sides/sides-sample.tex
+runfiles size=6773
+ texmf-dist/tex/latex/sides/sides.cls
+catalogue-version
+catalogue-date 2007-02-26 21:24:31 +0100
+catalogue-ctan /macros/latex/contrib/sides
+catalogue-license gpl
+
+name siggraph
+category Package
+revision 2392
+shortdesc SIGGRAPH conference class.
+longdesc Document class for formatting papers according to the
+longdesc specifications for submission to the annual ACM Siggraph
+longdesc conference.
+docfiles size=2661
+ texmf-dist/doc/latex/siggraph/README details="Readme"
+srcfiles size=44506
+ texmf-dist/source/latex/siggraph/siggraph.dtx
+ texmf-dist/source/latex/siggraph/siggraph.ins
+runfiles size=15782
+ texmf-dist/tex/latex/siggraph/siggraph.cls
+catalogue-version
+catalogue-date 2007-01-14 23:54:50 +0100
+catalogue-ctan /macros/latex/contrib/siggraph
+catalogue-license other
+
+name simplecv
+category Package
+revision 4184
+shortdesc A simple class for writing curricula vitae.
+longdesc A derivative of the cv class available to lyx users (renamed to
+longdesc avoid the existing cv package).
+docfiles size=39706
+ texmf-dist/doc/latex/simplecv/README details="Readme"
+ texmf-dist/doc/latex/simplecv/testcv.pdf details="Sample of use"
+ texmf-dist/doc/latex/simplecv/testcv.tex
+srcfiles size=18163
+ texmf-dist/source/latex/simplecv/simplecv.dtx
+ texmf-dist/source/latex/simplecv/simplecv.ins
+runfiles size=5044
+ texmf-dist/tex/latex/simplecv/simplecv.cls
+catalogue-version 1.6
+catalogue-date 2007-05-13 12:01:55 +0200
+catalogue-ctan /macros/latex/contrib/simplecv
+catalogue-license lppl
+
+name simpsons
+category Package
+revision 101
+shortdesc MetaFont source for Simpsons characters.
+runfiles size=39049
+ texmf-dist/fonts/source/public/simpsons/bart.mf
+ texmf-dist/fonts/source/public/simpsons/burns.mf
+ texmf-dist/fonts/source/public/simpsons/homer.mf
+ texmf-dist/fonts/source/public/simpsons/lisa.mf
+ texmf-dist/fonts/source/public/simpsons/maggie.mf
+ texmf-dist/fonts/source/public/simpsons/marge.mf
+ texmf-dist/fonts/source/public/simpsons/simpsons.mf
+ texmf-dist/fonts/source/public/simpsons/snpp.mf
+catalogue-version
+catalogue-date 2007-01-14 23:54:50 +0100
+catalogue-ctan /usergrps/uktug/baskervi/4_4
+catalogue-license unknown
+
+name skak
+category Package
+revision 5426
+shortdesc Fonts and macros for typesetting chess games.
+longdesc This package provides macros and fonts in MetaFont format which
+longdesc can be used to typeset chess games using PGN, and to show
+longdesc diagrams of the current board in a document. The package builds
+longdesc on work by Piet Tutelaers — the main novelty is the use of
+longdesc PGN for input instead of the more cumbersome coordinate
+longdesc notation (g1f3 becomes the more readable Nf3 in PGN). An Adobe
+longdesc Type 1 implementation of skak's fonts is available as package
+longdesc skaknew; an alternative chess notational scheme is available in
+longdesc package texmate, and a general mechanism for selecting chess
+longdesc fonts is provided in chessfss.
+docfiles size=811580
+ texmf-dist/doc/latex/skak/WC-2004-S-00007.tex
+ texmf-dist/doc/latex/skak/andreas_wilm_1.tex
+ texmf-dist/doc/latex/skak/angletst.tex
+ texmf-dist/doc/latex/skak/demo-symbols.tex
+ texmf-dist/doc/latex/skak/font.tex
+ texmf-dist/doc/latex/skak/font2.tex
+ texmf-dist/doc/latex/skak/games.tex
+ texmf-dist/doc/latex/skak/hightest.tex
+ texmf-dist/doc/latex/skak/informator.ps
+ texmf-dist/doc/latex/skak/informator.tex
+ texmf-dist/doc/latex/skak/ingo-bug1.tex
+ texmf-dist/doc/latex/skak/lambda.tex
+ texmf-dist/doc/latex/skak/promotion_problem_Ulrike.tex
+ texmf-dist/doc/latex/skak/readme.txt
+ texmf-dist/doc/latex/skak/refman.ps
+ texmf-dist/doc/latex/skak/refman.tex
+ texmf-dist/doc/latex/skak/show.tex
+ texmf-dist/doc/latex/skak/skakdoc.ps
+ texmf-dist/doc/latex/skak/skakdoc.tex
+ texmf-dist/doc/latex/skak/syntax.tex
+ texmf-dist/doc/latex/skak/test1.tex
+ texmf-dist/doc/latex/skak/test2.tex
+ texmf-dist/doc/latex/skak/test_capture.tex
+ texmf-dist/doc/latex/skak/tuggame.ps
+ texmf-dist/doc/latex/skak/tuggame.tex
+runfiles size=154314
+ texmf-dist/fonts/map/dvips/skak/special.map
+ texmf-dist/fonts/source/public/skak/skak10.mf
+ texmf-dist/fonts/source/public/skak/skak15.mf
+ texmf-dist/fonts/source/public/skak/skak20.mf
+ texmf-dist/fonts/source/public/skak/skak30.mf
+ texmf-dist/fonts/source/public/skak/skakbase.mf
+ texmf-dist/fonts/source/public/skak/skakbrikker.mf
+ texmf-dist/fonts/source/public/skak/skakf10.mf
+ texmf-dist/fonts/source/public/skak/skakf10b.mf
+ texmf-dist/fonts/source/public/skak/skakinf.mf
+ texmf-dist/fonts/tfm/public/skak/skak10.tfm
+ texmf-dist/fonts/tfm/public/skak/skak15.tfm
+ texmf-dist/fonts/tfm/public/skak/skak20.tfm
+ texmf-dist/fonts/tfm/public/skak/skak30.tfm
+ texmf-dist/fonts/tfm/public/skak/skakf10.tfm
+ texmf-dist/fonts/tfm/public/skak/skakf10b.tfm
+ texmf-dist/tex/latex/skak/chess-workshop-symbols.sty
+ texmf-dist/tex/latex/skak/lambda.sty
+ texmf-dist/tex/latex/skak/pap.sty
+ texmf-dist/tex/latex/skak/skak.sty
+catalogue-version 1.3
+catalogue-date 2007-01-14 23:54:50 +0100
+catalogue-ctan /fonts/chess/skak
+catalogue-license lppl
+
+name skaknew
+category Package
+revision 1626
+execute addMap SkakNew.map
+docfiles size=596054
+ texmf-dist/doc/latex/skaknew/README
+ texmf-dist/doc/latex/skaknew/SkakNew-Diagram.pl
+ texmf-dist/doc/latex/skaknew/SkakNew-DiagramT.pl
+ texmf-dist/doc/latex/skaknew/SkakNew.pdf
+ texmf-dist/doc/latex/skaknew/SkakNew.tex
+ texmf-dist/doc/latex/skaknew/install.vtex
+ texmf-dist/doc/latex/skaknew/readme.new
+ texmf-dist/doc/latex/skaknew/showfont-SkakNew-Diagram.pdf
+ texmf-dist/doc/latex/skaknew/showfont-SkakNew-DiagramT.pdf
+runfiles size=112253
+ texmf-dist/fonts/afm/public/skaknew/SkakNew-Diagram.afm
+ texmf-dist/fonts/afm/public/skaknew/SkakNew-DiagramT.afm
+ texmf-dist/fonts/afm/public/skaknew/SkakNew-Figurine.afm
+ texmf-dist/fonts/afm/public/skaknew/SkakNew-FigurineBold.afm
+ texmf-dist/fonts/map/dvips/skaknew/SkakNew.map
+ texmf-dist/fonts/tfm/public/skaknew/SkakNew-Diagram.tfm
+ texmf-dist/fonts/tfm/public/skaknew/SkakNew-DiagramT.tfm
+ texmf-dist/fonts/tfm/public/skaknew/SkakNew-Figurine.tfm
+ texmf-dist/fonts/tfm/public/skaknew/SkakNew-FigurineBold.tfm
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-Diagram.inf
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-Diagram.pfb
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-Diagram.pfm
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-DiagramT.inf
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-DiagramT.pfb
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-DiagramT.pfm
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-Figurine.inf
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-Figurine.pfb
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-Figurine.pfm
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-FigurineBold.inf
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-FigurineBold.pfb
+ texmf-dist/fonts/type1/public/skaknew/SkakNew-FigurineBold.pfm
+ texmf-dist/tex/latex/skaknew/uskak.fd
+
+name skull
+category Package
+revision 2392
+shortdesc A font to draw a skull.
+longdesc The font (defined in MetaFont) defines a single character, a
+longdesc black solid skull. A package is supplied to make this character
+longdesc available as a symbol in maths mode.
+srcfiles size=3906
+ texmf-dist/source/latex/skull/skull.dtx
+ texmf-dist/source/latex/skull/skull.ins
+runfiles size=3486
+ texmf-dist/fonts/source/public/skull/skull.mf
+ texmf-dist/tex/latex/skull/skull.sty
+catalogue-version 0.1
+catalogue-date 2007-02-28 00:02:05 +0100
+catalogue-ctan /fonts/skull
+catalogue-license gpl
+
+name slantsc
+category Package
+revision 1487
+shortdesc Access different-shaped small-caps fonts.
+longdesc This package enables the use of small capitals in different
+longdesc font shapes, e.g., slanted or bold slanted for all fonts that
+longdesc provide appropriate font shapes. (Note that a separate .fd file
+longdesc is needed to define font shapes such as ‘scsl’ or
+longdesc ‘scit’.)
+docfiles size=29171
+ texmf-dist/doc/latex/slantsc/README details="Readme"
+ texmf-dist/doc/latex/slantsc/getversion.tex
+ texmf-dist/doc/latex/slantsc/slantsc.dvi details="Package documentation"
+ texmf-dist/doc/latex/slantsc/testslantsc.dvi
+ texmf-dist/doc/latex/slantsc/testslantsc.tex
+srcfiles size=19686
+ texmf-dist/source/latex/slantsc/Makefile
+ texmf-dist/source/latex/slantsc/slantsc.dtx
+ texmf-dist/source/latex/slantsc/slantsc.ins
+ texmf-dist/source/latex/slantsc/slantsc.xml
+runfiles size=2847
+ texmf-dist/tex/latex/slantsc/slantsc.sty
+catalogue-version 2.10
+catalogue-date 2007-01-14 23:54:50 +0100
+catalogue-ctan /macros/latex/contrib/slantsc
+catalogue-license lppl
+
+name slashbox
+category Package
+revision 1487
+shortdesc Dual headings in tabular columns.
+longdesc The package defines commands to produce tabular cells with
+longdesc diagonal lines in them, with text above and below the line to
+longdesc label the column and row that the cell is in.
+docfiles size=6409
+ texmf-dist/doc/latex/slashbox/slashbox.dvi
+ texmf-dist/doc/latex/slashbox/slashbox.tex
+runfiles size=2685
+ texmf-dist/tex/latex/slashbox/slashbox.sty
+catalogue-version
+catalogue-date 2006-10-27 13:45:04 +0200
+catalogue-ctan /macros/latex/contrib/slashbox
+catalogue-license unknown
+
+name slidenotes
+category Package
+revision 1328
+shortdesc Typeset slides accompanied by notes.
+longdesc A class package for the easy production of a slide collection
+longdesc with annotations. Builds on the report style (or variants);
+longdesc document structure is based on chapters, with the slides
+longdesc themselves represented by sections.
+srcfiles size=49824
+ texmf-dist/source/latex/slidenotes/slidenotes.dtx
+ texmf-dist/source/latex/slidenotes/slidenotes.ins
+ texmf-dist/source/latex/slidenotes/slidenotes.readme
+runfiles size=16507
+ texmf-dist/tex/latex/slidenotes/obox.sty
+ texmf-dist/tex/latex/slidenotes/slidenotes.cfg
+ texmf-dist/tex/latex/slidenotes/slidenotes.cls
+catalogue-version 3.27
+catalogue-date 2006-10-27 20:58:00 +0200
+catalogue-ctan /macros/latex/contrib/slidenotes
+catalogue-license unknown
+
+name slideshow
+category Package
+revision 5001
+shortdesc Generate slideshow with MetaPost.
+longdesc The package provides a means of creating presentations in
+longdesc MetaPost, without intervention from other utilities (except a
+longdesc distiller). Such an arrangement has its advantages (though
+longdesc there are disadvantages too).
+docfiles size=160975
+ texmf-dist/doc/metapost/slideshow/slideshow.txt
+ texmf-dist/doc/metapost/slideshow/sshowex.pdf
+ texmf-dist/doc/metapost/slideshow/sshowex2.pdf
+ texmf-dist/doc/metapost/slideshow/sshowex3.pdf
+ texmf-dist/doc/metapost/slideshow/sshowintro.pdf details="Presentation about package:"
+runfiles size=25691
+ texmf-dist/metapost/slideshow/pathalong.mp
+ texmf-dist/metapost/slideshow/slideshow.mp
+ texmf-dist/metapost/slideshow/sshowex.mp
+ texmf-dist/metapost/slideshow/sshowex2.mp
+ texmf-dist/metapost/slideshow/sshowex3.mp
+ texmf-dist/metapost/slideshow/sshowintro.mp
+catalogue-version
+catalogue-date 2007-01-14 23:54:50 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/slideshow
+catalogue-license other
+
+name smalltableof
+category Package
+revision 1329
+shortdesc Create listoffigures etc. in a single chapter.
+longdesc The package allows you to create a list of figures and list of
+longdesc tables in a chapter named ‘List’ that contains separate
+longdesc sections for each list of figures, tables, etc.
+docfiles size=1566
+ texmf-dist/doc/latex/smalltableof/README details="Readme"
+runfiles size=1325
+ texmf-dist/tex/latex/smalltableof/smalltableof.sty
+catalogue-version
+catalogue-date 2007-01-14 23:54:50 +0100
+catalogue-ctan /macros/latex/contrib/smalltableof
+catalogue-license lppl
+
+name smartref
+category Package
+revision 1330
+shortdesc Extend LaTeX's \ref capability.
+longdesc The package extends the LaTeX labelling system: whenever a
+longdesc label is set, the values of counters (selected by the user) are
+longdesc recorded, along with the label. The value of these counters can
+longdesc be recalled with a command similar to \pageref. The package
+longdesc also adds commands \s[name]ref (for each counter [name] that
+longdesc the user has selected); these commands display something only
+longdesc if the value of the [name] counter is changed from when the
+longdesc label was set. Many commands are provided to serve as a macro
+longdesc programming environment for using the extended labels.
+docfiles size=6787
+ texmf-dist/doc/latex/smartref/readme.txt details="Readme and command details"
+runfiles size=9279
+ texmf-dist/tex/latex/smartref/byname.sty
+ texmf-dist/tex/latex/smartref/smartref.sty
+catalogue-version 1.9
+catalogue-date 2007-04-13 18:07:08 +0200
+catalogue-ctan /macros/latex/contrib/smartref
+catalogue-license lppl
+
+name smflatex
+category Package
+revision 1487
+shortdesc Classes conforming to Société mathématique de France.
+longdesc The Société mathématique de France provides a set of
+longdesc classes, packages and bibtex styles that are used in its
+longdesc publications. They are based on AMS classes (whose code is
+longdesc sometimes recopied) and mainly ‘upward-compatible’. Their
+longdesc main features are: quite different design; new environments for
+longdesc typesetting some information in two languages (altabstract,
+longdesc alttitle, altkeywords); if necessary, use of babel (option
+longdesc frenchb) and deactivation of some features of frenchb. Includes
+longdesc smfart.cls, smfbook.cls, smfplain.bst, smfalpha.bst, amongst
+longdesc others.
+docfiles size=129922
+ texmf-dist/doc/latex/smflatex/ALIRE details="Readme" language="fr"
+ texmf-dist/doc/latex/smflatex/README details="Readme"
+ texmf-dist/doc/latex/smflatex/e-doc.dvi
+ texmf-dist/doc/latex/smflatex/e-doc.tex
+ texmf-dist/doc/latex/smflatex/f-doc.dvi
+ texmf-dist/doc/latex/smflatex/f-doc.tex
+runfiles size=146100
+ texmf-dist/bibtex/bst/smflatex/smfalpha.bst
+ texmf-dist/bibtex/bst/smflatex/smfplain.bst
+ texmf-dist/tex/latex/smflatex/smfart.cls
+ texmf-dist/tex/latex/smflatex/smfbook.cls
+ texmf-dist/tex/latex/smflatex/smfenum.sty
+ texmf-dist/tex/latex/smflatex/smfthm.sty
+catalogue-version
+catalogue-date 2007-01-15 00:27:07 +0100
+catalogue-ctan /macros/latex/contrib/smflatex
+catalogue-license unknown
+
+name snapshot
+category Package
+revision 2392
+shortdesc List the external dependencies of a LaTeX document.
+longdesc The snapshot package helps the owner of a LaTeX document obtain
+longdesc a list of the external dependencies of the document, in a form
+longdesc that can be embedded at the top of the document. It provides a
+longdesc snapshot of the current processing context of the document,
+longdesc insofar as it can be determined from inside LaTeX. If a
+longdesc document contains such a dependency list, then it becomes
+longdesc possible to arrange that the document be processed always with
+longdesc the same versions of everything, in order to ensure the same
+longdesc output. This could be useful for someone wanting to keep a
+longdesc LaTeX document on hand and consistently reproduce an identical
+longdesc DVI file from it, on the fly; or for someone wanting to shield
+longdesc a document during the final stages of its production cycle from
+longdesc unexpected side effects of routine upgrades to the TeX system.
+docfiles size=118792
+ texmf-dist/doc/latex/snapshot/snapshot.pdf
+srcfiles size=30130
+ texmf-dist/source/latex/snapshot/snapshot.dtx
+ texmf-dist/source/latex/snapshot/snapshot.ins
+runfiles size=11062
+ texmf-dist/tex/latex/snapshot/snapshot.sty
+catalogue-version 1.14
+catalogue-date 2006-12-14 00:03:18 +0100
+catalogue-ctan /macros/latex/contrib/snapshot
+catalogue-license lppl
+
+name songbook
+category Package
+revision 5119
+shortdesc Package for typesetting song lyrics and chord books.
+longdesc The Songbook package provides an all purpose songbook style for
+longdesc LaTeX2e. The package allows for three types of output from a
+longdesc single input file: words and chords books for the musicians to
+longdesc play from, words only songbooks for the congregation to sing
+longdesc from, and overhead transparency masters for congregational use.
+longdesc The package will also print a table of contents, an index
+longdesc sorted by title and first line, and an index sorted by key, or
+longdesc by artist/composer. The package attempts to handle songs in
+longdesc multiple keys, as well as songs in multiple languages.
+docfiles size=1275818
+ texmf-dist/doc/latex/songbook/LesserGPL.txt
+ texmf-dist/doc/latex/songbook/README details="Readme"
+ texmf-dist/doc/latex/songbook/contrib/CarolBook/CarolBook.tex
+ texmf-dist/doc/latex/songbook/contrib/CarolBook/CarolBookOH.pdf
+ texmf-dist/doc/latex/songbook/contrib/CarolBook/CarolBookWB.pdf
+ texmf-dist/doc/latex/songbook/contrib/README details="Outline of distribution supplements"
+ texmf-dist/doc/latex/songbook/contrib/crd2sb/NothingButTheBlood.crd
+ texmf-dist/doc/latex/songbook/contrib/crd2sb/crd2sb
+ texmf-dist/doc/latex/songbook/contrib/crd2sb/crd2sb.txt
+ texmf-dist/doc/latex/songbook/contrib/modulate
+ texmf-dist/doc/latex/songbook/contrib/texchord.sty
+ texmf-dist/doc/latex/songbook/install.txt
+ texmf-dist/doc/latex/songbook/mksbadx
+ texmf-dist/doc/latex/songbook/mksbkdx
+ texmf-dist/doc/latex/songbook/mksbtdx
+ texmf-dist/doc/latex/songbook/sample-sb.tex
+ texmf-dist/doc/latex/songbook/sampleAdx.pdf
+ texmf-dist/doc/latex/songbook/sampleAdx.tex
+ texmf-dist/doc/latex/songbook/sampleCBK.pdf
+ texmf-dist/doc/latex/songbook/sampleCSBK.pdf
+ texmf-dist/doc/latex/songbook/sampleKdx.pdf
+ texmf-dist/doc/latex/songbook/sampleKdx.tex
+ texmf-dist/doc/latex/songbook/sampleOH.pdf
+ texmf-dist/doc/latex/songbook/sampleTdx.pdf
+ texmf-dist/doc/latex/songbook/sampleTdx.tex
+ texmf-dist/doc/latex/songbook/sampleToc.pdf
+ texmf-dist/doc/latex/songbook/sampleToc.tex
+ texmf-dist/doc/latex/songbook/sampleWBK.pdf
+ texmf-dist/doc/latex/songbook/songbook.pdf details="Package documentation"
+srcfiles size=195782
+ texmf-dist/source/latex/songbook/songbook.dtx
+ texmf-dist/source/latex/songbook/songbook.ins
+runfiles size=46895
+ texmf-dist/makeindex/songbook/songbook.ist
+ texmf-dist/tex/latex/songbook/conditionals.sty
+ texmf-dist/tex/latex/songbook/songbook.sty
+catalogue-version 4.3
+catalogue-date 2007-08-17 00:15:35 +0200
+catalogue-ctan /macros/latex/contrib/songbook
+catalogue-license lgpl2.1
+
+name sort-by-letters
+category Package
+revision 1773
+shortdesc Bibliography styles for alphabetic sorting.
+longdesc This bundle contains several bibliography styles for separating
+longdesc a document's references by the first letter of the first
+longdesc author/editor in the bibliography entry. The styles are adapted
+longdesc from standard ones or from natbib ones.
+docfiles size=958
+ texmf-dist/doc/latex/sort-by-letters/README
+runfiles size=179325
+ texmf-dist/bibtex/bst/sort-by-letters/abbrv-letters.bst
+ texmf-dist/bibtex/bst/sort-by-letters/alpha-letters.bst
+ texmf-dist/bibtex/bst/sort-by-letters/apalike-letters.bst
+ texmf-dist/bibtex/bst/sort-by-letters/frplainnat-letters.bst
+ texmf-dist/bibtex/bst/sort-by-letters/plain-letters.bst
+ texmf-dist/bibtex/bst/sort-by-letters/plainnat-letters.bst
+ texmf-dist/bibtex/bst/sort-by-letters/siam-letters.bst
+catalogue-version
+catalogue-date 2007-03-12 11:51:09 +0100
+catalogue-ctan /biblio/bibtex/contrib/sort-by-letters
+catalogue-license lppl
+
+name soul
+category Package
+revision 1334
+shortdesc Hyphenation for letterspacing, underlining, and more.
+longdesc Provides hyphenatable spacing out (letterspacing), underlining,
+longdesc striking out, etc., using the TeX hyphenation algorithm to find
+longdesc the proper hyphens automatically. The package also provides a
+longdesc mechanism that can be used to implement similar tasks, that
+longdesc have to treat text syllable by syllable. This is shown in two
+longdesc examples.
+docfiles size=390545
+ texmf-dist/doc/latex/soul/soul.pdf details="Package documentation"
+ texmf-dist/doc/latex/soul/soul.txt
+srcfiles size=136577
+ texmf-dist/source/latex/soul/Makefile
+ texmf-dist/source/latex/soul/soul.dtx
+ texmf-dist/source/latex/soul/soul.ins
+runfiles size=23636
+ texmf-dist/tex/latex/soul/soul.sty
+catalogue-version 2.4
+catalogue-date 2006-11-06 13:28:58 +0100
+catalogue-ctan /macros/latex/contrib/soul
+catalogue-license lppl
+
+name soyombo
+category Package
+revision 1487
+shortdesc Fonts and a macro for Soyombo under LaTeX.
+longdesc The package provides the Soyombo script and the Soyombo symbol
+longdesc for LaTeX users. The script and the symbol were both developed
+longdesc in 1686 by the Mongolian monk and scholar Zanabazar. Soyombo
+longdesc script is modelled after Lantsa-Devanagari, and it combines the
+longdesc phonemic repertoire of Mongolian, Sanskrit, and Tibetan. While
+longdesc the script is now little used, the symbol appears very widely
+longdesc (including the national flag).
+docfiles size=41959
+ texmf-dist/doc/latex/soyombo/soyo4tex.dvi
+ texmf-dist/doc/latex/soyombo/soyo4tex.tex
+runfiles size=50432
+ texmf-dist/fonts/source/public/soyombo/soyombo.mf
+ texmf-dist/fonts/source/public/soyombo/soyombot.mf
+ texmf-dist/fonts/tfm/public/soyombo/soyombo.tfm
+ texmf-dist/fonts/tfm/public/soyombo/soyombot.tfm
+ texmf-dist/tex/latex/soyombo/soyombo.sty
+catalogue-version
+catalogue-date 2007-03-12 11:51:09 +0100
+catalogue-ctan /language/mongolian/soyombo
+catalogue-license unknown
+
+name sparklines
+category Package
+revision 5441
+shortdesc Drawing sparklines: intense, simple, wordlike graphics.
+longdesc Sparklines are intense, simple, wordlike graphics (so named by
+longdesc Edward Tufte). In lieu of a more detailed introduction,
+longdesc Professor Tufte's site has an early release of a chapter on
+longdesc sparklines. A PHP implementation may be found at SourceForge. A
+longdesc sparkline can be added using the sparkline environment. Also,
+longdesc you can add sparkling rectangles for the median and special
+longdesc sparkling dots in red or blue. The package requires pdflatex;
+longdesc sparklines cannot appear in a dvi file. The sparklines package
+longdesc uses pgf, and does not work with pictex.
+docfiles size=62886
+ texmf-dist/doc/latex/sparklines/README
+ texmf-dist/doc/latex/sparklines/sparklines.pdf
+ texmf-dist/doc/latex/sparklines/sparklines.tex
+runfiles size=3761
+ texmf-dist/tex/latex/sparklines/sparklines.sty
+catalogue-version 1.3
+catalogue-date 2007-04-10 14:43:43 +0200
+catalogue-ctan /graphics/sparklines
+catalogue-license lppl
+
+name spie
+category Package
+revision 5439
+shortdesc Support for formatting SPIE Proceedings manuscripts.
+longdesc A class and a BibTeX style are provided.
+docfiles size=171016
+ texmf-dist/doc/latex/spie/README details="Readme"
+ texmf-dist/doc/latex/spie/article.pdf details="Template and guidelines for authors"
+ texmf-dist/doc/latex/spie/article.tex
+ texmf-dist/doc/latex/spie/mcr3b.eps
+runfiles size=35258
+ texmf-dist/bibtex/bib/spie/report.bib
+ texmf-dist/bibtex/bst/spie/spiebib.bst
+ texmf-dist/tex/latex/spie/spie.cls
+catalogue-version 3.25
+catalogue-date 2007-04-25 15:28:03 +0200
+catalogue-ctan /macros/latex/contrib/spie
+catalogue-license lppl
+
+name splines
+category Package
+revision 2207
+shortdesc MetaPost macros for drawing cubic spline interpolants.
+longdesc This is a small package of macros for creating cubic spline
+longdesc interpolants in MetaPost or MetaFont. Given a list of points
+longdesc the macros can produce a closed or a relaxed spline joining
+longdesc them. Given a list of function values y_j at x_j, the result
+longdesc would define the graph of a cubic spline interpolating function
+longdesc y=f(x), which is either periodic or relaxed.
+docfiles size=105600
+ texmf-dist/doc/metapost/splines/README details="Package README"
+ texmf-dist/doc/metapost/splines/splines.pdf details="Package documentation"
+srcfiles size=16159
+ texmf-dist/source/metapost/splines/splines.dtx
+ texmf-dist/source/metapost/splines/splines.ins
+runfiles size=7021
+ texmf-dist/metapost/splines/splines.mp
+ texmf-dist/metapost/splines/testsplines.mp
+catalogue-version 0.2
+catalogue-date 2007-03-12 11:51:09 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/splines
+catalogue-license lppl1.3
+
+name splitbib
+category Package
+revision 2392
+shortdesc Split and reorder your bibliography.
+longdesc This package enables you to split a bibliography into several
+longdesc categories and subcategories. It does not depend on BibTeX: any
+longdesc bibliography may be split and reordered.
+docfiles size=165149
+ texmf-dist/doc/latex/splitbib/README
+ texmf-dist/doc/latex/splitbib/splitbib.pdf
+srcfiles size=52072
+ texmf-dist/source/latex/splitbib/splitbib.dtx
+ texmf-dist/source/latex/splitbib/splitbib.ins
+runfiles size=28101
+ texmf-dist/tex/latex/splitbib/splitbib.sty
+catalogue-version 1.17
+catalogue-date 2007-01-15 00:27:07 +0100
+catalogue-ctan /macros/latex/contrib/splitbib
+catalogue-license lppl
+
+name splitindex
+category Package
+revision 4397
+shortdesc Unlimited number of indexes.
+longdesc SplitIndex consists of a LaTeX package, splitidx, and a small
+longdesc program, splitindex. The package may be used to produce one
+longdesc index or several indexes. Without splitindex (for example,
+longdesc using the index package), the number of indexes is limited by
+longdesc the number of TeX's output streams. But using the program you
+longdesc may use even more than 16 indexes: splitidx outputs only a
+longdesc single file \jobname.idx and the program splits that file into
+longdesc several raw index files and calls your favorite index processor
+longdesc for each of the files.
+docfiles size=338654
+ texmf-dist/doc/latex/splitindex/README details="Readme"
+ texmf-dist/doc/latex/splitindex/install.sh
+ texmf-dist/doc/latex/splitindex/install.txt
+ texmf-dist/doc/latex/splitindex/manifest.txt
+ texmf-dist/doc/latex/splitindex/splitidx.pdf details="Package documentation"
+ texmf-dist/doc/latex/splitindex/splitindex-Linux-i386
+ texmf-dist/doc/latex/splitindex/splitindex-OpenBSD-i386
+ texmf-dist/doc/latex/splitindex/splitindex.1
+ texmf-dist/doc/latex/splitindex/splitindex.class
+ texmf-dist/doc/latex/splitindex/splitindex.exe
+ texmf-dist/doc/latex/splitindex/splitindex.java
+ texmf-dist/doc/latex/splitindex/splitindex.pl
+srcfiles size=75374
+ texmf-dist/source/latex/splitindex/splitidx.dtx
+ texmf-dist/source/latex/splitindex/splitidx.ins
+ texmf-dist/source/latex/splitindex/splitindex.c
+runfiles size=13703
+ texmf-dist/tex/latex/splitindex/splitidx.sty
+ texmf-dist/tex/latex/splitindex/splitindex.tex
+catalogue-version
+catalogue-date 2007-03-12 11:51:09 +0100
+catalogue-ctan /macros/latex/contrib/splitindex
+catalogue-license dfsg
+
+name spotcolor
+category Package
+revision 2522
+shortdesc Spot colours for pdfLaTeX.
+longdesc This package provides procedures for using spot colors in LaTeX
+longdesc documents and the generated pdf files. Predefined templates for
+longdesc PANTONE and HKS color spaces are included but new ones can
+longdesc easily be defined.
+docfiles size=497777
+ texmf-dist/doc/latex/spotcolor/README details="Readme"
+ texmf-dist/doc/latex/spotcolor/readme.pdf details="Package documentation"
+ texmf-dist/doc/latex/spotcolor/readme.tcp
+ texmf-dist/doc/latex/spotcolor/readme.tex
+ texmf-dist/doc/latex/spotcolor/spotcolor.sty
+ texmf-dist/doc/latex/spotcolor/spotcolorhks.tex
+ texmf-dist/doc/latex/spotcolor/spotcolorpantone.tex
+catalogue-version 1.2
+catalogue-date 2007-03-12 11:51:09 +0100
+catalogue-ctan /macros/latex/contrib/spotcolor
+catalogue-license lppl
+
+name sprite
+category Package
+revision 2392
+shortdesc Macros to typeset simple bitmaps with LaTeX.
+longdesc The ‘sprite’ format the package sets is very simple, and
+longdesc may be viewed in a fixed-width font rather readily. The package
+longdesc provides the means of typesetting these sprites at arbitrary
+longdesc sizes.
+docfiles size=4092
+ texmf-dist/doc/latex/sprite/spriteuse.tex
+runfiles size=1973
+ texmf-dist/tex/latex/sprite/sprite.sty
+catalogue-version
+catalogue-date 2007-01-15 00:27:07 +0100
+catalogue-ctan /macros/latex/contrib/sprite
+catalogue-license unknown
+
+name srcltx
+category Package
+revision 2624
+shortdesc Jump between DVI and TeX files.
+longdesc Provides a \special insertion into generated .dvi files
+longdesc allowing one to jump from the .dvi file to the .tex source and
+longdesc back again (given a .dvi viewer that supports this, such as Yap
+longdesc or xdvi version 22.38 or later). This was originally written by
+longdesc Aleksander Simonic, the author of the WinEdt shell.
+docfiles size=130659
+ texmf-dist/doc/latex/srcltx/README details="Package Readme"
+ texmf-dist/doc/latex/srcltx/srcltx.pdf details="Package documentation"
+srcfiles size=27015
+ texmf-dist/source/latex/srcltx/srcltx.dtx
+ texmf-dist/source/latex/srcltx/srcltx.ins
+runfiles size=8320
+ texmf-dist/tex/latex/srcltx/srcltx.sty
+ texmf-dist/tex/latex/srcltx/srctex.sty
+catalogue-version 1.6
+catalogue-date 2006-12-07 15:13:33 +0100
+catalogue-ctan /macros/latex/contrib/srcltx
+catalogue-license pd
+
+name sseq
+category Package
+revision 1342
+shortdesc Spectral sequence diagrams.
+longdesc The package provides commands to draw spectral sequence
+longdesc diagrams, providing facilities for clipping and arranging
+longdesc multiple symbols so that they do not overlap. The package is
+longdesc usually based on XYpic, but may run using specialised font
+longdesc structures with a large enough TeX and given enough time. Its
+longdesc geometric commands are based on a turtle graphics model, and
+longdesc control structures such as loops and conditionals are
+longdesc available.
+docfiles size=85369
+ texmf-dist/doc/latex/sseq/sseq.pdf
+srcfiles size=40944
+ texmf-dist/source/latex/sseq/sseq.dtx
+ texmf-dist/source/latex/sseq/sseq.ins
+runfiles size=20582
+ texmf-dist/tex/latex/sseq/sseq.sty
+catalogue-version 1.03
+catalogue-date 2006-11-06 02:07:00 +0100
+catalogue-ctan /macros/latex/contrib/sseq
+catalogue-license lppl
+
+name ssqquote
+category Package
+revision 2392
+shortdesc Use the cmssq fonts.
+longdesc LaTeX package and font definition file to access the `cmssq'
+longdesc fonts, i.e. Computer Modern Sans Serif Quotation Style. The
+longdesc LaTeX package also defines a chapterquotes environment as an
+longdesc example application.
+docfiles size=3765
+ texmf-dist/doc/latex/ssqquote/ssqquote.readme
+srcfiles size=22734
+ texmf-dist/source/latex/ssqquote/ssqquote.drv
+ texmf-dist/source/latex/ssqquote/ssqquote.dtx
+ texmf-dist/source/latex/ssqquote/ssqquote.ins
+runfiles size=7262
+ texmf-dist/tex/latex/ssqquote/OT1cmssq.fd
+ texmf-dist/tex/latex/ssqquote/T1cmssq.fd
+ texmf-dist/tex/latex/ssqquote/ssqquote.sty
+catalogue-version 1.3
+catalogue-date 2006-10-14 21:50:39 +0200
+catalogue-ctan /macros/latex/contrib/ssqquote
+catalogue-license dfsg
+
+name stack
+category Package
+revision 1344
+shortdesc Tools to define and use stacks.
+longdesc The package provides a small set of commands to implement
+longdesc stacks independently of TeX's own stack. As an example of how
+longdesc the stacks might be used, the documentation offers a small
+longdesc "relinput" package that implements the backbone of the import
+longdesc package.
+srcfiles size=10996
+ texmf-dist/source/latex/stack/stack.dtx
+ texmf-dist/source/latex/stack/stack.ins
+runfiles size=4972
+ texmf-dist/tex/latex/stack/relinput.sty
+ texmf-dist/tex/latex/stack/stack.sty
+catalogue-version 1.00
+catalogue-date 2007-02-28 00:02:05 +0100
+catalogue-ctan /macros/latex/contrib/stack
+catalogue-license lppl
+
+name stage
+category Package
+revision 1345
+shortdesc A LaTeX class for stage plays
+longdesc Stage.cls is a LaTeX class for creating plays of any length in
+longdesc a standard manuscript format for production and submission.
+docfiles size=100506
+ texmf-dist/doc/latex/stage/README details="Package README"
+ texmf-dist/doc/latex/stage/stage-documentation.pdf details="Package documentation"
+runfiles size=11389
+ texmf-dist/tex/latex/stage/stage.cls
+catalogue-version
+catalogue-date 2006-11-06 12:20:58 +0100
+catalogue-ctan /macros/latex/contrib/stage
+catalogue-license lppl1.3
+
+name startex
+category Package
+revision 624
+shortdesc An XML-inspired format for student use.
+longdesc A TeX format designed to help students write short reports and
+longdesc essays. It provides the user with a suitable set of commands
+longdesc for such a task. It is also more robust than plain TeX and
+longdesc LaTeX.
+docfiles size=737272
+ texmf-dist/doc/startex/base/guide.pdf details="Beginner's guide"
+ texmf-dist/doc/startex/base/ideas.pdf details="TUG'96 paper"
+ texmf-dist/doc/startex/base/startex.pdf details="Documented source code:"
+srcfiles size=105032
+ texmf-dist/source/startex/base/INSTALL
+ texmf-dist/source/startex/base/README
+ texmf-dist/source/startex/base/startex.bib
+ texmf-dist/source/startex/base/startex.dtx
+ texmf-dist/source/startex/base/startex.ins
+runfiles size=49733
+ texmf-dist/makeindex/startex/stxglo.ist
+ texmf-dist/makeindex/startex/stxind.ist
+ texmf-dist/tex/startex/base/a4-article.stx
+ texmf-dist/tex/startex/base/article.stx
+ texmf-dist/tex/startex/base/ifi-article.stx
+ texmf-dist/tex/startex/base/ifi-artikkel.stx
+ texmf-dist/tex/startex/base/startex.lan
+ texmf-dist/tex/startex/base/startex.tex
+catalogue-version 1.04
+catalogue-date 2007-01-15 00:27:07 +0100
+catalogue-ctan /macros/startex
+catalogue-license unknown
+
+name statistik
+category Package
+revision 1487
+shortdesc Store statistics of a document.
+longdesc The package counts the numbers of pages per chapter, and stores
+longdesc the results in a separate file; the format of the file is
+longdesc selectable.
+docfiles size=15279
+ texmf-dist/doc/latex/statistik/sta_cvs.dvi
+ texmf-dist/doc/latex/statistik/sta_cvs.tex
+ texmf-dist/doc/latex/statistik/sta_mytable-info.tex
+ texmf-dist/doc/latex/statistik/sta_mytable.dvi
+ texmf-dist/doc/latex/statistik/sta_mytable.tex
+ texmf-dist/doc/latex/statistik/sta_tab-info.tex
+ texmf-dist/doc/latex/statistik/sta_tab.dvi
+ texmf-dist/doc/latex/statistik/sta_tab.tex
+ texmf-dist/doc/latex/statistik/sta_textable-info.tex
+ texmf-dist/doc/latex/statistik/sta_textable.dvi
+ texmf-dist/doc/latex/statistik/sta_textable.tex
+ texmf-dist/doc/latex/statistik/sta_xml.dvi
+ texmf-dist/doc/latex/statistik/sta_xml.tex
+srcfiles size=18381
+ texmf-dist/source/latex/statistik/sta_cvs-info.csv
+ texmf-dist/source/latex/statistik/sta_xml-info.xml
+ texmf-dist/source/latex/statistik/statistik.dtx
+ texmf-dist/source/latex/statistik/statistik.ins
+runfiles size=5643
+ texmf-dist/tex/latex/statistik/statistik.sty
+catalogue-version 0.03
+catalogue-date 2007-01-15 00:27:07 +0100
+catalogue-ctan /macros/latex/contrib/statistik
+catalogue-license gpl
+
+name stdclsdv
+category Package
+revision 2392
+shortdesc Provide sectioning information for package writers.
+longdesc The stdclsdv package is designed for package writers who need
+longdesc to know what sectioning divsions are provided by the document's
+longdesc class. It also provides a version of \CheckCommand that sets a
+longdesc flag rather than printing a warning.
+docfiles size=241938
+ texmf-dist/doc/latex/stdclsdv/README details="Readme"
+ texmf-dist/doc/latex/stdclsdv/stdclsdv.pdf details="Package documentation"
+srcfiles size=15451
+ texmf-dist/source/latex/stdclsdv/stdclsdv.dtx
+ texmf-dist/source/latex/stdclsdv/stdclsdv.ins
+runfiles size=2578
+ texmf-dist/tex/latex/stdclsdv/stdclsdv.sty
+catalogue-version 1.1
+catalogue-date 2007-01-15 00:27:07 +0100
+catalogue-ctan /macros/latex/contrib/stdclsdv
+catalogue-license lppl
+
+name stdpage
+category Package
+revision 2392
+shortdesc Standard pages with n lines of at most m characters each.
+longdesc For translations, proofreading, journal contributions etc.
+longdesc standard pages are used. Those standard pages consist of a
+longdesc fixed number of lines and characters per line. This package
+longdesc produces pages with n lines of at most m characters each. For
+longdesc instance the German "Normseite": 60 lines of 30 characters
+longdesc each.
+docfiles size=117908
+ texmf-dist/doc/latex/stdpage/README details="Package README"
+ texmf-dist/doc/latex/stdpage/stdpage-test.tex
+ texmf-dist/doc/latex/stdpage/stdpage.pdf details="Package documentation"
+srcfiles size=19982
+ texmf-dist/source/latex/stdpage/stdpage.dtx
+ texmf-dist/source/latex/stdpage/stdpage.ins
+runfiles size=5355
+ texmf-dist/tex/latex/stdpage/stdpage.sty
+catalogue-version 0.6
+catalogue-date 2006-11-06 12:37:44 +0100
+catalogue-ctan /macros/latex/contrib/stdpage
+catalogue-license lppl1.2
+
+name stellenbosch
+category Package
+revision 4168
+shortdesc Stellenbosch thesis bundle.
+longdesc The usthesis class/style files are provided to typeset reports,
+longdesc theses and dissertations that conform to the requirements of
+longdesc the Engineering Faculty of the University of Stellenbosch. The
+longdesc class file usthesis.cls is based on the standard LaTeX book
+longdesc class, while usthesis.sty is a style file to be loaded on top
+longdesc of the very powerful memoir class. Both options give identical
+longdesc output, but the benefit of the using memoir is that it has many
+longdesc additional command and environments for formatting and
+longdesc processing of a document. Usthesis is primarily concerned with
+longdesc the formatting of the front matter such as the title page,
+longdesc abstract, etc. and a decent page layout on A4 paper. It also
+longdesc works together with the babel package to provide language
+longdesc options to typeset documents in Afrikaans or in English.
+longdesc Additional packages are provided for bibliographic matter, note
+longdesc title pages, lists of symbols, as well as various graphic files
+longdesc for logos.
+docfiles size=1626396
+ texmf-dist/doc/latex/stellenbosch/CHANGELOG
+ texmf-dist/doc/latex/stellenbosch/README details="Bundle README" language="en"
+ texmf-dist/doc/latex/stellenbosch/USbib-2.0.pdf details="USbib package documentation" language="en"
+ texmf-dist/doc/latex/stellenbosch/USlogos-doc-3.0.pdf
+ texmf-dist/doc/latex/stellenbosch/USnomencl-1.0a.pdf details="usnomencl package documentation" language="en"
+ texmf-dist/doc/latex/stellenbosch/USsummary-1.0a.pdf details="ussummary package documentation" language="en"
+ texmf-dist/doc/latex/stellenbosch/UStitle-1.0.pdf details="UStitle package documentation" language="en"
+ texmf-dist/doc/latex/stellenbosch/Usthesis-3.0.pdf details="Class/package documentation" language="en"
+ texmf-dist/doc/latex/stellenbosch/templates/masters-sample.zip
+ texmf-dist/doc/latex/stellenbosch/templates/report-sample.zip
+srcfiles size=132022
+ texmf-dist/source/latex/stellenbosch/USbib-2.0-scr.zip
+ texmf-dist/source/latex/stellenbosch/USlogos-3.0-src.zip
+ texmf-dist/source/latex/stellenbosch/USnomencl-1.0a-src.zip
+ texmf-dist/source/latex/stellenbosch/USsummary-1.0a-src.zip
+ texmf-dist/source/latex/stellenbosch/USthesis-3.0-src.zip
+ texmf-dist/source/latex/stellenbosch/UStitle-1.0-src.zip
+runfiles size=1452456
+ texmf-dist/bibtex/bst/stellenbosch/usmeg-a.bst
+ texmf-dist/bibtex/bst/stellenbosch/usmeg-n.bst
+ texmf-dist/bibtex/bst/stellenbosch/ussagus.bst
+ texmf-dist/tex/latex/stellenbosch/logos/USEngLogo-BW-top.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USEngLogo-BW-top.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USEngLogo-BW.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USEngLogo-BW.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USEngLogo-top.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USEngLogo-top.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USEngLogo.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USEngLogo.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/UScrest-BW.eps
+ texmf-dist/tex/latex/stellenbosch/logos/UScrest-BW.jpg
+ texmf-dist/tex/latex/stellenbosch/logos/UScrest-stack.eps
+ texmf-dist/tex/latex/stellenbosch/logos/UScrest-stack.jpg
+ texmf-dist/tex/latex/stellenbosch/logos/UScrest-top.eps
+ texmf-dist/tex/latex/stellenbosch/logos/UScrest-top.jpg
+ texmf-dist/tex/latex/stellenbosch/logos/UScrest.eps
+ texmf-dist/tex/latex/stellenbosch/logos/UScrest.jpg
+ texmf-dist/tex/latex/stellenbosch/logos/USleaf-BW.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USleaf-BW.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USleaf-gold.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USleaf-gold.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USleaf-grey.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USleaf-grey.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USleaf-maroon.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USleaf-maroon.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-BW-left.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-BW-left.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-BW-stack.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-BW-stack.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-BW-top.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-BW-top.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-BW.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-BW.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-left.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-left.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-stack.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-stack.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-top.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-top.pdf
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo-top.ps
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo.eps
+ texmf-dist/tex/latex/stellenbosch/logos/USlogo.pdf
+ texmf-dist/tex/latex/stellenbosch/usbib.afr
+ texmf-dist/tex/latex/stellenbosch/usbib.eng
+ texmf-dist/tex/latex/stellenbosch/usbib.sty
+ texmf-dist/tex/latex/stellenbosch/usnomencl.sty
+ texmf-dist/tex/latex/stellenbosch/ussummary.sty
+ texmf-dist/tex/latex/stellenbosch/usthesis.cls
+ texmf-dist/tex/latex/stellenbosch/usthesis.sty
+ texmf-dist/tex/latex/stellenbosch/ustitle.sty
+catalogue-version 3.0
+catalogue-date 2007-04-20 13:40:12 +0200
+catalogue-ctan /macros/latex/contrib/stellenbosch
+catalogue-license lppl
+
+name stmaryrd
+category Package
+revision 1487
+shortdesc St Mary Road symbols for theoretical computer science.
+longdesc The fonts were originally distributed as MetaFont sources only,
+longdesc but Adobe Type 1 versions are also now available. Macro support
+longdesc is provided for use under LaTeX; the package supports the
+longdesc "only" option (provided by the somedefs package) to restrict
+longdesc what is loaded, for those who don't need the whole font.
+execute addMixedMap stmaryrd.map
+docfiles size=8683
+ texmf-dist/doc/fonts/stmaryrd/README details="Original README:"
+ texmf-dist/doc/fonts/stmaryrd/stmaryrd.dvi
+srcfiles size=25976
+ texmf-dist/source/fonts/stmaryrd/00Description
+ texmf-dist/source/fonts/stmaryrd/INSTALL
+ texmf-dist/source/fonts/stmaryrd/stmaryrd.dtx
+ texmf-dist/source/fonts/stmaryrd/stmaryrd.ins
+runfiles size=328056
+ texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary10.afm
+ texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary5.afm
+ texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary6.afm
+ texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary7.afm
+ texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary8.afm
+ texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary9.afm
+ texmf-dist/fonts/map/dvips/stmaryrd/stmaryrd.map
+ texmf-dist/fonts/source/public/stmaryrd/stmary10.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmary5.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmary6.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmary7.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmary8.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmary9.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmaryaj.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmaryba.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmarych.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmaryjg.mf
+ texmf-dist/fonts/source/public/stmaryrd/stmaryrd.mf
+ texmf-dist/fonts/tfm/public/stmaryrd/stmary10.tfm
+ texmf-dist/fonts/tfm/public/stmaryrd/stmary5.tfm
+ texmf-dist/fonts/tfm/public/stmaryrd/stmary6.tfm
+ texmf-dist/fonts/tfm/public/stmaryrd/stmary7.tfm
+ texmf-dist/fonts/tfm/public/stmaryrd/stmary8.tfm
+ texmf-dist/fonts/tfm/public/stmaryrd/stmary9.tfm
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary10.pfb
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary10.pfm
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary5.pfb
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary5.pfm
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary6.pfb
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary6.pfm
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary7.pfb
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary7.pfm
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary8.pfb
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary8.pfm
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary9.pfb
+ texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary9.pfm
+ texmf-dist/tex/latex/stmaryrd/Ustmry.fd
+ texmf-dist/tex/latex/stmaryrd/stmaryrd.sty
+catalogue-version
+catalogue-date 2007-03-18 19:38:28 +0100
+catalogue-ctan /fonts/stmaryrd
+catalogue-license lppl
+
+name struktex
+category Package
+revision 1995
+shortdesc Draw Nassi-Schneidermann charts
+longdesc The package provides the most important elements of a sructured
+longdesc box chart, including processing blocks, loops, mapping
+longdesc conventions for alternatives, etc. Diagrams are drawn using the
+longdesc picture environment (using pict2e for preference).
+docfiles size=665042
+ texmf-dist/doc/latex/struktex/LIESMICH details="LIESMICH file" language="de"
+ texmf-dist/doc/latex/struktex/README details="README file" language="en"
+ texmf-dist/doc/latex/struktex/getversion.tex
+ texmf-dist/doc/latex/struktex/struktex-test-0.nss
+ texmf-dist/doc/latex/struktex/struktex-test-1.tex
+ texmf-dist/doc/latex/struktex/struktex-test-2.tex
+ texmf-dist/doc/latex/struktex/struktex-test-3.tex
+ texmf-dist/doc/latex/struktex/struktex-test-4.tex
+ texmf-dist/doc/latex/struktex/struktex.de.pdf details="Package documentation" language="de"
+ texmf-dist/doc/latex/struktex/struktex.el
+ texmf-dist/doc/latex/struktex/struktex.en.pdf details="Package documentation" language="en"
+ texmf-dist/doc/latex/struktex/struktex.makemake
+ texmf-dist/doc/latex/struktex/struktex.mk
+srcfiles size=258899
+ texmf-dist/source/latex/struktex/struktex.dtx
+ texmf-dist/source/latex/struktex/struktex.ins
+runfiles size=40177
+ texmf-dist/tex/latex/struktex/strukdoc.sty
+ texmf-dist/tex/latex/struktex/struktex.sty
+ texmf-dist/tex/latex/struktex/struktxf.sty
+ texmf-dist/tex/latex/struktex/struktxp.sty
+catalogue-version 8.3b
+catalogue-date 2007-03-12 11:51:09 +0100
+catalogue-ctan /macros/latex/contrib/struktex
+catalogue-license lppl
+
+name sttools
+category Package
+revision 1351
+shortdesc Various macros.
+longdesc A collection of tools and macros, including: – a document
+longdesc "Inside LaTeX2e kernel" (which discusses some of the functions
+longdesc of the packages), – miscellaneous float control, – page
+longdesc styles for floats, – multipage tabulars, – even columns at
+longdesc end of twocolumn region, – switching between one- and two-
+longdesc column anywhere, – getting more mileage from \marginpar, –
+longdesc simulating the effect of "midfloats", – create a bounding
+longdesc box, – a package to manipulate numerical lists and arrays.
+docfiles size=285375
+ texmf-dist/doc/latex/sttools/index.html
+ texmf-dist/doc/latex/sttools/presfull.pdf
+runfiles size=64513
+ texmf-dist/tex/latex/sttools/boundbox.sty
+ texmf-dist/tex/latex/sttools/cuted.sty
+ texmf-dist/tex/latex/sttools/floatpag.sty
+ texmf-dist/tex/latex/sttools/flushend.sty
+ texmf-dist/tex/latex/sttools/marginal.sty
+ texmf-dist/tex/latex/sttools/midfloat.sty
+ texmf-dist/tex/latex/sttools/stabular.sty
+ texmf-dist/tex/latex/sttools/stfloats.sty
+ texmf-dist/tex/latex/sttools/texsort.sty
+catalogue-version
+catalogue-date 2007-01-15 00:27:07 +0100
+catalogue-ctan /macros/latex/contrib/sttools
+catalogue-license lppl
+
+name subdepth
+category Package
+revision 4876
+shortdesc Unify maths subscript height.
+longdesc This package is based on code (posted long ago to comp.text.tex
+longdesc by Donald Arseneau) to equalise the height of subscripts in
+longdesc maths. The default behaviour is to place subscripts slightly
+longdesc lower when there is a superscript as well, but this can look
+longdesc odd in some situations.
+docfiles size=108365
+ texmf-dist/doc/latex/subdepth/README details="Readme"
+ texmf-dist/doc/latex/subdepth/subdepth.pdf details="Package documentation"
+srcfiles size=9852
+ texmf-dist/source/latex/subdepth/subdepth.dtx
+ texmf-dist/source/latex/subdepth/subdepth.ins
+runfiles size=2752
+ texmf-dist/tex/latex/subdepth/subdepth.sty
+catalogue-version 0.1
+catalogue-date 2007-09-10 17:29:25 +0200
+catalogue-ctan /macros/latex/contrib/subdepth
+catalogue-license lppl
+
+name subeqn
+category Package
+revision 1352
+shortdesc Package for subequation numbering.
+longdesc Sometimes it is necessary to be able to refer to subexpressions
+longdesc of an equation. In order to do that these subexpressions should
+longdesc be numbered. In standard LaTeX there is no provision for this.
+longdesc To solve this problem Stephen Gildea once wrote subeqn.sty for
+longdesc LaTeX 2.09; Donald Arsenau rewrote the macros and Johannes
+longdesc Braams made them available for LaTeX2e. Note that this package
+longdesc is not compatible with the package subeqnarray (written by
+longdesc Johannes Braams), but it can be used together with the LaTeX
+longdesc class options leqno and fleqn.
+docfiles size=94716
+ texmf-dist/doc/latex/subeqn/manifest.txt
+ texmf-dist/doc/latex/subeqn/subeqn.pdf details="Package documentation"
+ texmf-dist/doc/latex/subeqn/subeqn.tex
+srcfiles size=11665
+ texmf-dist/source/latex/subeqn/subeqn.dtx
+ texmf-dist/source/latex/subeqn/subeqn.ins
+runfiles size=2155
+ texmf-dist/tex/latex/subeqn/subeqn.sty
+catalogue-version 2.0b
+catalogue-date 2007-01-15 00:27:07 +0100
+catalogue-ctan /macros/latex/contrib/subeqn
+catalogue-license lppl
+
+name subeqnarray
+category Package
+revision 1353
+shortdesc Equation array with sub numbering.
+longdesc This package defines the subeqnarray and subeqnarray*
+longdesc environments, which behave like the equivalent eqnarray and
+longdesc eqnarray* environments, except that the individual lines are
+longdesc numbered like 1a, 1b, 1c, etc. To refer to these numbers an
+longdesc extra label command \slabel is provided.
+docfiles size=129596
+ texmf-dist/doc/latex/subeqnarray/manifest.txt
+ texmf-dist/doc/latex/subeqnarray/subeqnarray.pdf
+ texmf-dist/doc/latex/subeqnarray/subeqnarray.tex
+srcfiles size=15407
+ texmf-dist/source/latex/subeqnarray/subeqnarray.dtx
+ texmf-dist/source/latex/subeqnarray/subeqnarray.ins
+runfiles size=4394
+ texmf-dist/tex/latex/subeqnarray/subeqnarray.sty
+catalogue-version 2.1c
+catalogue-date 2007-01-02 10:01:06 +0100
+catalogue-ctan /macros/latex/contrib/subeqnarray
+catalogue-license lppl
+
+name subfig
+category Package
+revision 2149
+shortdesc Figures broken into subfigures
+longdesc The package provides support for the manipulation and reference
+longdesc of small or ‘sub’ figures and tables within a single figure
+longdesc or table environment. It is convenient to use this package when
+longdesc your subfigures are to be separately captioned, referenced, or
+longdesc are to be included in the List-of-Figures. A new \subfigure
+longdesc command is introduced which can be used inside a figure
+longdesc environment for each subfigure. An optional first argument is
+longdesc used as the caption for that subfigure. This package supersedes
+longdesc the subfigure package (which will continue to be supported, but
+longdesc no longer maintained). The name has changed because the subfig
+longdesc package is not completely backward compatible with the older
+longdesc subfigure package due to an extensive rewrite to use the new
+longdesc caption package to produce its subcaptions. The major advantage
+longdesc to the new package is that the user interface is keyword/value
+longdesc driven and easier to use. To ease the transition from the
+longdesc subfigure package it includes a configuration file (subfig.cfg)
+longdesc which nearly emulates the subfigure package.
+docfiles size=722334
+ texmf-dist/doc/latex/subfig/README details="Readme"
+ texmf-dist/doc/latex/subfig/ltxdoc.cfg
+ texmf-dist/doc/latex/subfig/subfig.pdf details="Package documentation"
+ texmf-dist/doc/latex/subfig/test1.tex
+ texmf-dist/doc/latex/subfig/test2.tex
+ texmf-dist/doc/latex/subfig/test3.tex
+ texmf-dist/doc/latex/subfig/test4.tex
+ texmf-dist/doc/latex/subfig/test5.tex
+ texmf-dist/doc/latex/subfig/test6.tex
+ texmf-dist/doc/latex/subfig/test7.tex
+srcfiles size=196629
+ texmf-dist/source/latex/subfig/Makefile
+ texmf-dist/source/latex/subfig/subfig.dtx
+ texmf-dist/source/latex/subfig/subfig.ins
+runfiles size=28359
+ texmf-dist/tex/latex/subfig/altsf.cfg
+ texmf-dist/tex/latex/subfig/subfig.sty
+catalogue-version 1.3
+catalogue-date 2007-01-15 14:17:51 +0100
+catalogue-ctan /macros/latex/contrib/subfig
+catalogue-license lppl
+
+name subfigure
+category Package
+revision 2957
+shortdesc Deprecated: Figures divided into subfigures.
+longdesc Provides support for the manipulation and reference of small or
+longdesc ‘sub’ figures and tables within a single figure or table
+longdesc environment. It is convenient to use this package when your
+longdesc subfigures are to be separately captioned, referenced, or are
+longdesc to be included in the List-of-Figures. A new \subfigure command
+longdesc is introduced which can be used inside a figure environment for
+longdesc each subfigure. An optional first argument is used as the
+longdesc caption for that subfigure. This package is now obsolescent:
+longdesc new users should use subfig instead.
+docfiles size=417372
+ texmf-dist/doc/latex/subfigure/README details="Readme"
+ texmf-dist/doc/latex/subfigure/ltxdoc.cfg
+ texmf-dist/doc/latex/subfigure/subfigure.pdf details="Package documentation"
+ texmf-dist/doc/latex/subfigure/test.tex
+ texmf-dist/doc/latex/subfigure/test2.tex
+ texmf-dist/doc/latex/subfigure/test3.tex
+ texmf-dist/doc/latex/subfigure/test4.tex
+ texmf-dist/doc/latex/subfigure/test5.tex
+srcfiles size=163902
+ texmf-dist/source/latex/subfigure/Makefile
+ texmf-dist/source/latex/subfigure/subfigure.dtx
+ texmf-dist/source/latex/subfigure/subfigure.ins
+runfiles size=17250
+ texmf-dist/tex/latex/subfigure/subfigure.cfg
+ texmf-dist/tex/latex/subfigure/subfigure.sty
+catalogue-version 2.1.5
+catalogue-date 2007-01-15 14:17:51 +0100
+catalogue-ctan /obsolete/macros/latex/contrib/subfigure
+catalogue-license lppl
+
+name subfloat
+category Package
+revision 1356
+shortdesc Sub-numbering for figures and tables.
+longdesc This package enables sub-numbering of floats (figures and
+longdesc tables) similar to the subequations-environment of the amsmath
+longdesc package. The subfloat package is not to be confused with the
+longdesc subfig package which generates sub-figures within one normal
+longdesc figure.
+docfiles size=3331
+ texmf-dist/doc/latex/subfloat/ChangeLog
+ texmf-dist/doc/latex/subfloat/README details="Package Readme"
+ texmf-dist/doc/latex/subfloat/install.sh
+ texmf-dist/doc/latex/subfloat/subfloat.xml
+srcfiles size=31319
+ texmf-dist/source/latex/subfloat/Makefile
+ texmf-dist/source/latex/subfloat/subfloat.dtx
+ texmf-dist/source/latex/subfloat/subfloat.ins
+runfiles size=5855
+ texmf-dist/tex/latex/subfloat/subfloat.sty
+catalogue-version 2.14
+catalogue-date 2006-12-18 23:50:36 +0100
+catalogue-ctan /macros/latex/contrib/subfloat
+catalogue-license lppl
+
+name substr
+category Package
+revision 2392
+shortdesc Deal with substrings in strings.
+longdesc The substr package provides commands to deal with substrings of
+longdesc strings. Macros are provided to: – determine if one string is
+longdesc a substring of another, – return the parts of a string before
+longdesc or after a substring and – count the number of occurrences of
+longdesc a substring.
+docfiles size=20718
+ texmf-dist/doc/latex/substr/ChangeLog
+ texmf-dist/doc/latex/substr/README details="Readme"
+ texmf-dist/doc/latex/substr/testsubstr.pdf
+ texmf-dist/doc/latex/substr/testsubstr.tex
+runfiles size=5458
+ texmf-dist/tex/latex/substr/substr.sty
+catalogue-version 1.1
+catalogue-date 2006-12-23 09:58:35 +0100
+catalogue-ctan /macros/latex/contrib/substr
+catalogue-license lppl
+
+name sudoku
+category Package
+revision 1841
+shortdesc Create sudoku grids.
+longdesc The sudoku package provides an environment for typesetting
+longdesc sudoku grids. A sudoku puzzle is a 9x9 grid where some of the
+longdesc squares in the grid contain numbers. The rules are simple:
+longdesc every column can only contain the digits 1 to 9, every row can
+longdesc only contain the digits 1 to 9 and every 3x3 box can only
+longdesc contain the digits 1 to 9. More information, including help and
+longdesc example puzzles, can be found at sudoku.org.uk. This site also
+longdesc has blank sudoku grids (or worksheets), but you will not need
+longdesc to print them from there if you have this package installed.
+docfiles size=68639
+ texmf-dist/doc/latex/sudoku/CHANGES
+ texmf-dist/doc/latex/sudoku/README details="Readme"
+ texmf-dist/doc/latex/sudoku/sudoku.pdf details="Package documentation"
+srcfiles size=13953
+ texmf-dist/source/latex/sudoku/sudoku.dtx
+ texmf-dist/source/latex/sudoku/sudoku.ins
+runfiles size=3359
+ texmf-dist/tex/latex/sudoku/sudoku.sty
+catalogue-version 1.0
+catalogue-date 2007-03-12 11:51:09 +0100
+catalogue-ctan /macros/latex/contrib/sudoku
+catalogue-license lppl
+
+name sudokubundle
+category Package
+revision 1992
+shortdesc A set of sudoku-related packages.
+longdesc The bundle provides three packages: – printsudoku, which
+longdesc provides a command \sudoku whose argument is the name of a file
+longdesc containing a puzzle specification; – solvesudoku, which
+longdesc attempts to find a solution to the puzzle in the file named in
+longdesc the argument; and – createsudoku, which uses the random
+longdesc package to generate a puzzle according to a bunch of parameters
+longdesc that the user sets via macros. The bundle comes with a set of
+longdesc ready-prepared puzzle files.
+docfiles size=391364
+ texmf-dist/doc/latex/sudokubundle/README details="Readme"
+ texmf-dist/doc/latex/sudokubundle/somesudoku.tex
+ texmf-dist/doc/latex/sudokubundle/sudokubundle.pdf details="Package documentation"
+srcfiles size=144320
+ texmf-dist/source/latex/sudokubundle/sudokubundle.dtx
+ texmf-dist/source/latex/sudokubundle/sudokubundle.ins
+runfiles size=55124
+ texmf-dist/tex/latex/sudokubundle/createsudoku.sty
+ texmf-dist/tex/latex/sudokubundle/printsudoku.sty
+ texmf-dist/tex/latex/sudokubundle/solvesudoku.sty
+catalogue-version 1.0a
+catalogue-date 2007-03-12 11:51:09 +0100
+catalogue-ctan /macros/latex/contrib/sudokubundle
+catalogue-license lppl
+
+name sugconf
+category Package
+revision 1934
+shortdesc SAS(R) user group conference proceedings document class.
+longdesc The class may be used to typeset articles to be published in
+longdesc the proceedings of SAS(R) User group conferences and workshops.
+longdesc The layout produced by the class is based on the description
+longdesc contained in SUGI paper guidelines, published by SAS Institute:
+longdesc (2006).
+docfiles size=119378
+ texmf-dist/doc/latex/sugconf/README
+ texmf-dist/doc/latex/sugconf/SUGI-paper-example.txt
+ texmf-dist/doc/latex/sugconf/article-example.bat
+ texmf-dist/doc/latex/sugconf/article-example.pdf
+ texmf-dist/doc/latex/sugconf/article-example.tex
+ texmf-dist/doc/latex/sugconf/sugconf-example.bat
+ texmf-dist/doc/latex/sugconf/sugconf-example.pdf
+ texmf-dist/doc/latex/sugconf/sugconf-example.tex
+runfiles size=6736
+ texmf-dist/tex/latex/sugconf/sugconf.cls
+catalogue-version
+catalogue-date 2007-03-12 11:51:09 +0100
+catalogue-ctan /macros/latex/contrib/conferences/sugconf
+catalogue-license lppl
+
+name supertabular
+category Package
+revision 1359
+shortdesc A multi-page tables package.
+longdesc Generally longtable is a little easier to use and more
+longdesc flexible, but supertabular has its place, since it will work in
+longdesc a few situations where longtable won't.
+docfiles size=172774
+ texmf-dist/doc/latex/supertabular/CATALOG
+ texmf-dist/doc/latex/supertabular/ChangeLog
+ texmf-dist/doc/latex/supertabular/MANIFEST
+ texmf-dist/doc/latex/supertabular/README details="Package documentation"
+ texmf-dist/doc/latex/supertabular/supertabular.pdf details="Package documentation"
+srcfiles size=58594
+ texmf-dist/source/latex/supertabular/supertabular.dtx
+ texmf-dist/source/latex/supertabular/supertabular.ins
+runfiles size=14283
+ texmf-dist/tex/latex/supertabular/supertabular.sty
+catalogue-version 4.1a
+catalogue-date 2006-12-23 01:22:15 +0100
+catalogue-ctan /macros/latex/contrib/supertabular
+catalogue-license lppl
+
+name svgcolor
+category Package
+revision 2955
+shortdesc Define SVG named colours.
+longdesc The package defines the W3C Scalable Vector Graphics (SVG)
+longdesc colour names for use with both the color and PSTricks packages.
+docfiles size=2385
+ texmf-dist/doc/latex/svgcolor/README details="Readme"
+runfiles size=15508
+ texmf-dist/tex/latex/svgcolor/svgcolor.sty
+catalogue-version 1.0
+catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-ctan /macros/latex/contrib/svgcolor
+catalogue-license lppl
+
+name svn
+category Package
+revision 5463
+shortdesc Typeset Subversion keywords.
+longdesc The svn package lets you typeset (in LaTeX) the value of
+longdesc Subversion keywords. It is approximately an equivalent to the
+longdesc rcs package, but for Subversion rather than CVS. Details of
+longdesc Subversion (a replacement for CVS) is available from the
+longdesc project’s home site.
+docfiles size=456898
+ texmf-dist/doc/latex/svn/README details="Package README"
+ texmf-dist/doc/latex/svn/svn.pdf details="Package documentation"
+srcfiles size=23530
+ texmf-dist/source/latex/svn/Makefile
+ texmf-dist/source/latex/svn/svn.dtx
+ texmf-dist/source/latex/svn/svn.ins
+runfiles size=2476
+ texmf-dist/tex/latex/svn/svn.sty
+catalogue-version 43
+catalogue-date 2007-09-26 21:48:37 +0200
+catalogue-ctan /macros/latex/contrib/svn
+catalogue-license lppl1.3
+
+name svn-multi
+category Package
+revision 4604
+shortdesc Subversion keywords in multi-file LaTeX documents
+longdesc This package lets you typeset keywords of the version control
+longdesc system Subversion inside your LaTeX files anywhere you like.
+longdesc Unlike the otherwise similar package svn the use of multiple
+longdesc files for one LaTeX document is well supported.
+docfiles size=328089
+ texmf-dist/doc/latex/svn-multi/README details="Readme"
+ texmf-dist/doc/latex/svn-multi/example.pdf details="Example output"
+ texmf-dist/doc/latex/svn-multi/example_chap1.tex
+ texmf-dist/doc/latex/svn-multi/example_main.tex
+ texmf-dist/doc/latex/svn-multi/svn-multi.pdf details="Package documentation"
+srcfiles size=43928
+ texmf-dist/source/latex/svn-multi/Makefile
+ texmf-dist/source/latex/svn-multi/svn-multi.dtx
+ texmf-dist/source/latex/svn-multi/svn-multi.ins
+runfiles size=8647
+ texmf-dist/tex/latex/svn-multi/svn-multi.sty
+ texmf-dist/tex/latex/svn-multi/svnkw.sty
+catalogue-version v1.3a
+catalogue-date 2007-07-11 13:22:40 +0200
+catalogue-ctan /macros/latex/contrib/svn-multi
+catalogue-license lppl
+
+name svninfo
+category Package
+revision 4175
+docfiles size=158056
+ texmf-dist/doc/latex/svninfo/README
+ texmf-dist/doc/latex/svninfo/svninfo.init
+ texmf-dist/doc/latex/svninfo/svninfo.pdf
+srcfiles size=52153
+ texmf-dist/source/latex/svninfo/Makefile
+ texmf-dist/source/latex/svninfo/svninfo.dtx
+ texmf-dist/source/latex/svninfo/svninfo.ins
+runfiles size=16092
+ texmf-dist/tex/latex/svninfo/svninfo.cfg
+ texmf-dist/tex/latex/svninfo/svninfo.sty
+
+name swebib
+category Package
+revision 2392
+shortdesc Swedish bibliography styles.
+longdesc The bundle contains Swedish versions of the standard
+longdesc bibliography styles, and of the style plainnat. The styles
+longdesc should be funtionally equivalent to the corresponding original
+longdesc styles, apart from the Swedish translations. The styles do not
+longdesc implement Swedish collation.
+docfiles size=270
+ texmf-dist/doc/latex/swebib/README details="Readme"
+runfiles size=102663
+ texmf-dist/bibtex/bst/swebib/sweabbrv.bst
+ texmf-dist/bibtex/bst/swebib/swealpha.bst
+ texmf-dist/bibtex/bst/swebib/sweplain.bst
+ texmf-dist/bibtex/bst/swebib/sweplnat.bst
+ texmf-dist/bibtex/bst/swebib/sweunsrt.bst
+catalogue-version
+catalogue-date 2007-01-15 14:17:51 +0100
+catalogue-ctan /biblio/bibtex/contrib/swebib
+catalogue-license lppl1.2
+
+name swimgraf
+category Package
+revision 1362
+docfiles size=138306
+ texmf-dist/doc/latex/swimgraf/100br1.pdf
+ texmf-dist/doc/latex/swimgraf/100br2.pdf
+ texmf-dist/doc/latex/swimgraf/README.TXT
+ texmf-dist/doc/latex/swimgraf/swimgraf.pdf
+ texmf-dist/doc/latex/swimgraf/text1.pdf
+ texmf-dist/doc/latex/swimgraf/text2.pdf
+srcfiles size=11491
+ texmf-dist/source/latex/swimgraf/100BR1.TEX
+ texmf-dist/source/latex/swimgraf/100BR2.TEX
+ texmf-dist/source/latex/swimgraf/SAMPLE1.DAT
+ texmf-dist/source/latex/swimgraf/SAMPLE2.DAT
+ texmf-dist/source/latex/swimgraf/TEXT1.TEX
+ texmf-dist/source/latex/swimgraf/TEXT2.TEX
+ texmf-dist/source/latex/swimgraf/fcanada.dat
+ texmf-dist/source/latex/swimgraf/fcanada11.dat
+ texmf-dist/source/latex/swimgraf/fcanada12.dat
+ texmf-dist/source/latex/swimgraf/fcanada13.dat
+ texmf-dist/source/latex/swimgraf/fcanada14.dat
+ texmf-dist/source/latex/swimgraf/fcanada15.dat
+ texmf-dist/source/latex/swimgraf/fcanada16.dat
+ texmf-dist/source/latex/swimgraf/fcanada17.dat
+ texmf-dist/source/latex/swimgraf/fontario10.dat
+ texmf-dist/source/latex/swimgraf/fontario11.dat
+ texmf-dist/source/latex/swimgraf/fontario12.dat
+ texmf-dist/source/latex/swimgraf/fontario13.dat
+ texmf-dist/source/latex/swimgraf/fontario14.dat
+ texmf-dist/source/latex/swimgraf/fontario15.dat
+ texmf-dist/source/latex/swimgraf/fontario16.dat
+ texmf-dist/source/latex/swimgraf/fontario17.dat
+ texmf-dist/source/latex/swimgraf/fontario8.dat
+ texmf-dist/source/latex/swimgraf/fontario9.dat
+ texmf-dist/source/latex/swimgraf/fworld.dat
+ texmf-dist/source/latex/swimgraf/mcanada.dat
+ texmf-dist/source/latex/swimgraf/mworld.dat
+runfiles size=47049
+ texmf-dist/tex/latex/swimgraf/swimgraf.cfg
+ texmf-dist/tex/latex/swimgraf/swimgraf.sty
+
+name symbol
+category Package
+revision 1364
+runfiles size=70529
+ texmf-dist/dvips/symbol/config.usy
+ texmf-dist/fonts/afm/adobe/symbol/psyb.afm
+ texmf-dist/fonts/afm/adobe/symbol/psyr.afm
+ texmf-dist/fonts/afm/urw/symbol/usyr.afm
+ texmf-dist/fonts/map/dvips/symbol/usy.map
+ texmf-dist/fonts/tfm/adobe/symbol/psyr.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/symbol/rpsyr.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/symbol/rpsyro.tfm
+ texmf-dist/fonts/tfm/monotype/symbol/msyr.tfm
+ texmf-dist/fonts/tfm/urw35vf/symbol/usyr.tfm
+ texmf-dist/fonts/type1/urw/symbol/usyr.pfb
+ texmf-dist/fonts/type1/urw/symbol/usyr.pfm
+ texmf-dist/tex/latex/symbol/uusy.fd
+
+name synproof
+category Package
+revision 4562
+shortdesc Easy drawing of syntactic proofs.
+longdesc The package provides a set of macros based on PSTricks that
+longdesc will enable you to draw syntactic proofs easily (inspired by
+longdesc the Gamut books). Very few commands are needed, however fine
+longdesc tuning of the various parameters (dimensions) can still be
+longdesc achieved through “key=value” pairs.
+docfiles size=81413
+ texmf-dist/doc/latex/synproof/README details="Readme"
+ texmf-dist/doc/latex/synproof/synproof-doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/synproof/synproof-doc.tex
+runfiles size=6211
+ texmf-dist/tex/latex/synproof/synproof.sty
+catalogue-version 1.0
+catalogue-date 2007-06-21 12:33:42 +0200
+catalogue-ctan /macros/latex/contrib/synproof
+catalogue-license lppl
+
+name syntax
+category Package
+revision 2392
+shortdesc Creation of syntax diagrams.
+longdesc Create syntax diagrams using special environments and commands
+longdesc to represent the diagram structure. Includes documentation in
+longdesc german.
+docfiles size=132121
+ texmf-dist/doc/latex/syntax/README details="Package README" language="de"
+ texmf-dist/doc/latex/syntax/syntaxintro.pdf details="Introduction to the package" language="de"
+ texmf-dist/doc/latex/syntax/syntaxintro.tex
+ texmf-dist/doc/latex/syntax/syntaxtest.pdf
+ texmf-dist/doc/latex/syntax/syntaxtest.tex
+runfiles size=11129
+ texmf-dist/tex/latex/syntax/syntax.tex
+catalogue-version
+catalogue-date 2007-03-03 01:07:33 +0100
+catalogue-ctan /macros/latex/contrib/syntax
+catalogue-license gpl
+
+name syntrace
+category Package
+revision 4031
+shortdesc Labels for tracing in a syntax tree.
+longdesc This package adds support for for traces in trees created using
+longdesc either the synttree or the qtree package. The package provides
+longdesc two commands (\traceLabel and \traceReference) to set and use a
+longdesc trace.
+docfiles size=62337
+ texmf-dist/doc/latex/syntrace/README
+ texmf-dist/doc/latex/syntrace/syntrace.pdf
+srcfiles size=10127
+ texmf-dist/source/latex/syntrace/syntrace.dtx
+ texmf-dist/source/latex/syntrace/syntrace.ins
+runfiles size=3298
+ texmf-dist/tex/latex/syntrace/syntrace.sty
+catalogue-version 1.1
+catalogue-date 2007-03-13 15:26:21 +0100
+catalogue-ctan /macros/latex/contrib/syntrace
+catalogue-license lppl
+
+name synttree
+category Package
+revision 1891
+shortdesc Typeset syntactic trees.
+longdesc A package to typeset syntactic trees such as those used in
+longdesc Chomsky's Generative grammar, based on a description of the
+longdesc structure of the tree.
+docfiles size=162969
+ texmf-dist/doc/latex/synttree/README
+ texmf-dist/doc/latex/synttree/synttree.pdf
+srcfiles size=34018
+ texmf-dist/source/latex/synttree/synttree.dtx
+ texmf-dist/source/latex/synttree/synttree.ins
+runfiles size=13026
+ texmf-dist/tex/latex/synttree/synttree.sty
+catalogue-version 1.4.1
+catalogue-date 2007-01-15 14:17:51 +0100
+catalogue-ctan /macros/latex/contrib/synttree
+catalogue-license lppl
+
+name t-angles
+category Package
+revision 1962
+shortdesc Draw tangles, trees, Hopf algebra operations and other pictures.
+longdesc A LaTeX2e package for drawing tangles, trees, Hopf algebra
+longdesc operations and other pictures. It is based on emTeX or TPIC
+longdesc \special's. Therefore, it can be used with the most popular
+longdesc drivers, including emTeX drivers, dviwin, xdvi and dvips, and
+longdesc (using some code from ConTeXt) it may also be used with
+longdesc PDFLaTeX.
+docfiles size=149330
+ texmf-dist/doc/latex/t-angles/README details="Readme"
+ texmf-dist/doc/latex/t-angles/t-manual.pdf details="Package documentation"
+ texmf-dist/doc/latex/t-angles/t-manual.tex
+runfiles size=22053
+ texmf-dist/tex/latex/t-angles/t-angles.sty
+catalogue-version
+catalogue-date 2007-03-12 14:32:12 +0100
+catalogue-ctan /macros/latex/contrib/t-angles
+catalogue-license gpl
+
+name t2
+category Package
+revision 1368
+shortdesc Support for using T2 encoding.
+longdesc The T2 bundle provides a variety of separate support functions,
+longdesc for using Cyrillic characters in LaTeX: – the mathtext
+longdesc package, for using Cyrillic letters ‘transparently’ in
+longdesc formulae – the citehack package, for using Cyrillic (or
+longdesc indeed any non-ascii) characters in citation keys; – support
+longdesc for Cyrillic in BibTeX; –- support for Cyrillic in Makeindex;
+longdesc and – various items of font support.
+execute BuildFormat cyramstex
+execute BuildFormat cyrtex
+execute BuildFormat cyrtexinfo
+docfiles size=157704
+ texmf-dist/doc/generic/t2/Makefile
+ texmf-dist/doc/generic/t2/OT2uni.map
+ texmf-dist/doc/generic/t2/README
+ texmf-dist/doc/generic/t2/T2Auni.map
+ texmf-dist/doc/generic/t2/T2Buni.map
+ texmf-dist/doc/generic/t2/T2Cuni.map
+ texmf-dist/doc/generic/t2/X2uni.map
+ texmf-dist/doc/generic/t2/amscyr.txt
+ texmf-dist/doc/generic/t2/broken1.txt
+ texmf-dist/doc/generic/t2/broken2.txt
+ texmf-dist/doc/generic/t2/cyrcset7.txt
+ texmf-dist/doc/generic/t2/cyrcset8.txt
+ texmf-dist/doc/generic/t2/cyrcsets.ind
+ texmf-dist/doc/generic/t2/etc/amsppt.diff
+ texmf-dist/doc/generic/t2/etc/mathtext.dtx
+ texmf-dist/doc/generic/t2/etc/mathtext.ins
+ texmf-dist/doc/generic/t2/etc/rubibtex/README
+ texmf-dist/doc/generic/t2/etc/rubibtex/rubibtex
+ texmf-dist/doc/generic/t2/etc/rubibtex/rubibtex.bat
+ texmf-dist/doc/generic/t2/etc/rubibtex/rubibtex.sed
+ texmf-dist/doc/generic/t2/etc/ruinpenc
+ texmf-dist/doc/generic/t2/etc/rumkidx/README
+ texmf-dist/doc/generic/t2/etc/rumkidx/rumakeindex
+ texmf-dist/doc/generic/t2/etc/rumkidx/rumkidx1.sed
+ texmf-dist/doc/generic/t2/etc/rumkidx/rumkidx2.sed
+ texmf-dist/doc/generic/t2/etc/rumkidx/rumkidx3.sed
+ texmf-dist/doc/generic/t2/etc/rumkidx/rumkidxd.bat
+ texmf-dist/doc/generic/t2/etc/rumkidx/rumkidxw.bat
+ texmf-dist/doc/generic/t2/etc/t2filter.c
+ texmf-dist/doc/generic/t2/etc/utf-8/test-utf8.tex
+ texmf-dist/doc/generic/t2/etc/utf-8/utf-8.def
+ texmf-dist/doc/generic/t2/etc/utf-8/utfcyr.def
+ texmf-dist/doc/generic/t2/etc/utf-8/utflat.def
+ texmf-dist/doc/generic/t2/examples/example1.tex
+ texmf-dist/doc/generic/t2/examples/example2.tex
+ texmf-dist/doc/generic/t2/examples/example3.tex
+ texmf-dist/doc/generic/t2/examples/example4.tex
+ texmf-dist/doc/generic/t2/examples/example5.tex
+ texmf-dist/doc/generic/t2/make-enc.pl
+ texmf-dist/doc/generic/t2/mkencs.sh
+ texmf-dist/doc/generic/t2/mtcyr.txt
+ texmf-dist/doc/generic/t2/t2cyr.txt
+ texmf-dist/doc/generic/t2/t2lat.txt
+ texmf-dist/doc/generic/t2/urwcyr.txt
+runfiles size=18137
+ texmf-dist/tex/latex/t2/citehack.sty
+ texmf-dist/tex/latex/t2/mathtext.sty
+ texmf-dist/tex/latex/t2/misccorr.sty
+catalogue-version
+catalogue-date 2007-01-15 22:10:29 +0100
+catalogue-ctan /macros/latex/contrib/t2
+catalogue-license lppl
+
+name tableaux
+category Package
+revision 2517
+shortdesc Construct tables.
+docfiles size=264212
+ texmf-dist/doc/latex/tableaux/exemples.ps
+ texmf-dist/doc/latex/tableaux/exemples.tex
+ texmf-dist/doc/latex/tableaux/tableau.ps
+ texmf-dist/doc/latex/tableaux/tableau.tex
+runfiles size=8218
+ texmf-dist/tex/latex/tableaux/minimum.sty
+ texmf-dist/tex/latex/tableaux/tableau.sty
+catalogue-version
+catalogue-date 2007-03-03 01:07:33 +0100
+catalogue-ctan /macros/latex/contrib/tableaux
+catalogue-license unknown
+
+name tabto-ltx
+category Package
+revision 1640
+docfiles size=1692
+ texmf-dist/doc/latex/tabto-ltx/tabto.txt
+runfiles size=5467
+ texmf-dist/tex/latex/tabto-ltx/tabto.sty
+
+name tabulary
+category Package
+revision 5438
+shortdesc Tabular with variable width columns balanced.
+longdesc The package defines a tabular*-like tabulary environment,
+longdesc taking a "total width" argument as well as the column
+longdesc specifications. It then defines column types L, C, R and J for
+longdesc variable width columns (\raggedright, \centering, \raggedleft,
+longdesc and normally justified). In contrast to tabularx's X columns,
+longdesc the width of each column is weighted according to the natural
+longdesc width of the widest cell in the column.
+docfiles size=148860
+ texmf-dist/doc/latex/tabulary/README
+ texmf-dist/doc/latex/tabulary/tabulary.pdf details="Package documentation"
+srcfiles size=29548
+ texmf-dist/source/latex/tabulary/tabulary.dtx
+ texmf-dist/source/latex/tabulary/tabulary.ins
+runfiles size=13700
+ texmf-dist/tex/latex/tabulary/tabulary.sty
+catalogue-version 0.9
+catalogue-date 2007-10-02 22:26:52 +0200
+catalogue-ctan /macros/latex/contrib/tabulary
+catalogue-license lppl
+
+name tabvar
+category Package
+revision 4263
+shortdesc Typesetting tables showing variations of functions.
+longdesc This LaTeX package is meant to ease the typesetting of tables
+longdesc showing variations of functions as they are used in France. The
+longdesc documentation is in French.
+execute addMap tabvar.map
+docfiles size=530596
+ texmf-dist/doc/latex/tabvar/README details="Readme"
+ texmf-dist/doc/latex/tabvar/demo.pdf
+ texmf-dist/doc/latex/tabvar/demo.tex
+ texmf-dist/doc/latex/tabvar/install-tabvar.sh
+ texmf-dist/doc/latex/tabvar/tabvar.pdf
+srcfiles size=27405
+ texmf-dist/source/latex/tabvar/tabvar.dtx
+ texmf-dist/source/latex/tabvar/tabvar.ins
+runfiles size=16131
+ texmf-dist/fonts/afm/public/tabvar/tabvar.afm
+ texmf-dist/fonts/map/dvips/tabvar/tabvar.map
+ texmf-dist/fonts/tfm/public/tabvar/tabvar.tfm
+ texmf-dist/fonts/type1/public/tabvar/tabvar.pfb
+ texmf-dist/metapost/tabvar/tabvar.mp
+ texmf-dist/tex/latex/tabvar/tabvar.1
+ texmf-dist/tex/latex/tabvar/tabvar.2
+ texmf-dist/tex/latex/tabvar/tabvar.3
+ texmf-dist/tex/latex/tabvar/tabvar.cfg
+ texmf-dist/tex/latex/tabvar/tabvar.sty
+catalogue-version 1.1
+catalogue-date 2007-05-11 10:26:12 +0200
+catalogue-ctan /macros/latex/contrib/tabvar
+catalogue-license lppl
+
+name talk
+category Package
+revision 5464
+shortdesc A LaTeX class for presentations.
+longdesc The talk document class allows you to create slides for screen
+longdesc presentations or printing on transparencies. It also allows you
+longdesc to print personal notes for your talk. You can create overlays
+longdesc and display structure information (current section /
+longdesc subsection, table of contents) on your slides. The main feature
+longdesc that distinguishes talk from other presentation classes like
+longdesc beamer or prosper is that it allows the user to define an
+longdesc arbitrary number of slide styles and switch between these
+longdesc styles from slide to slide. This way the slide layout can be
+longdesc adapted to the slide content. For example, the title or
+longdesc contents page of a talk can be given a slightly different
+longdesc layout than the other slides. The talk class makes no
+longdesc restrictions on the slide design whatsoever. The entire look
+longdesc and feel of the presentation can be defined by the user. The
+longdesc style definitions should be put in a separate sty file.
+longdesc Currently the package comes with only one set of pre-defined
+longdesc slide styles (greybars.sty). Contributions from people who are
+longdesc artistically more gifted than the author are more than welcome!
+docfiles size=176475
+ texmf-dist/doc/latex/talk/README details="Readme"
+ texmf-dist/doc/latex/talk/example.tex
+ texmf-dist/doc/latex/talk/talkdoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/talk/talkdoc.tex
+srcfiles size=465
+ texmf-dist/source/latex/talk/Makefile
+runfiles size=15746
+ texmf-dist/tex/latex/talk/sidebars.sty
+ texmf-dist/tex/latex/talk/talk.cls
+catalogue-version 1.1
+catalogue-date 2007-08-14 14:14:54 +0200
+catalogue-ctan /macros/latex/contrib/talk
+catalogue-license lppl
+
+name tamethebeast
+category Documentation
+revision 23
+docfiles size=1476844
+ texmf-doc/doc/english/tamethebeast/CHANGES
+ texmf-doc/doc/english/tamethebeast/Makefile
+ texmf-doc/doc/english/tamethebeast/README
+ texmf-doc/doc/english/tamethebeast/idxstyle.ist
+ texmf-doc/doc/english/tamethebeast/local.bib
+ texmf-doc/doc/english/tamethebeast/ttb_en.pdf
+ texmf-doc/doc/english/tamethebeast/ttb_en.ps.gz
+ texmf-doc/doc/english/tamethebeast/ttb_en.sec1.tex
+ texmf-doc/doc/english/tamethebeast/ttb_en.sec2.tex
+ texmf-doc/doc/english/tamethebeast/ttb_en.sec3.tex
+ texmf-doc/doc/english/tamethebeast/ttb_en.sec4.tex
+ texmf-doc/doc/english/tamethebeast/ttb_en.sec5.tex
+ texmf-doc/doc/english/tamethebeast/ttb_en.tex
+ texmf-doc/doc/english/tamethebeast/ttb_style.sty
+
+name tap
+category Package
+revision 613
+shortdesc TeX macros for typesetting complex tables.
+longdesc The package offers a simple notation for pretty complex tables
+longdesc (to Michael J. Ferguson’s credit). With PostScript, the
+longdesc package allows shaded/coloured tables, diagonal rules, etc. The
+longdesc package is supposed to work with both Plain and LaTeX. An AWK
+longdesc converter from ASCII semigraphic tables to TAP notation is
+longdesc included.
+docfiles size=76557
+ texmf-dist/doc/generic/tap/0README.TAP
+ texmf-dist/doc/generic/tap/0tabdoc.inf
+ texmf-dist/doc/generic/tap/circ.eps
+ texmf-dist/doc/generic/tap/circmag.eps
+ texmf-dist/doc/generic/tap/tapanch.100
+ texmf-dist/doc/generic/tap/tapanch.mp
+ texmf-dist/doc/generic/tap/tapdoc.tex
+ texmf-dist/doc/generic/tap/tapxamp1.tex
+ texmf-dist/doc/generic/tap/tapxamp2.tex
+srcfiles size=15919
+ texmf-dist/source/generic/tap/tabcv/sampdos/0sampdos.inf
+ texmf-dist/source/generic/tap/tabcv/sampdos/post1.tex
+ texmf-dist/source/generic/tap/tabcv/sampdos/post2.tex
+ texmf-dist/source/generic/tap/tabcv/sampdos/prea1.tex
+ texmf-dist/source/generic/tap/tabcv/sampdos/prea2.tex
+ texmf-dist/source/generic/tap/tabcv/sampdos/prea3.tex
+ texmf-dist/source/generic/tap/tabcv/sampdos/tapcv0.raw
+ texmf-dist/source/generic/tap/tabcv/sampdos/tapcv1.raw
+ texmf-dist/source/generic/tap/tabcv/sampdos/tapcv2.raw
+ texmf-dist/source/generic/tap/tabcv/sampdos/tapcv3.raw
+ texmf-dist/source/generic/tap/tabcv/sampdos/tapcv4.raw
+ texmf-dist/source/generic/tap/tabcv/sampdos/tapcv5.raw
+ texmf-dist/source/generic/tap/tabcv/sampdos/tapcv6.raw
+ texmf-dist/source/generic/tap/tabcv/sampdos/tcv.bat
+ texmf-dist/source/generic/tap/tabcv/sampdos/tcv_.bat
+ texmf-dist/source/generic/tap/tabcv/tapcv.awk
+runfiles size=36480
+ texmf-dist/tex/generic/tap/tap.tex
+catalogue-version 0.77
+catalogue-date 2007-01-15 22:10:29 +0100
+catalogue-ctan /macros/generic/tables/tap077.zip
+catalogue-license pd
+
+name tapir
+category Package
+revision 101
+shortdesc A simple geometrical font.
+longdesc Tapír is a simple geometrical font mostly created of line and
+longdesc circular segments with constant thickness. The font is
+longdesc available as MetaFont source and in Adobe Type 1 format. The
+longdesc character set contains all characters in the range 0–127 (as
+longdesc in cmr10), accented characters used in the Czech, Slovak and
+longdesc Polish languages.
+docfiles size=61484
+ texmf-dist/doc/latex/tapir/readme details="Readme"
+ texmf-dist/doc/latex/tapir/readme.pdf details="Package documentation"
+runfiles size=194151
+ texmf-dist/fonts/source/public/tapir/tap-enc.mf
+ texmf-dist/fonts/source/public/tapir/tap.mf
+ texmf-dist/fonts/type1/public/tapir/tap.pfb
+catalogue-version 0.2
+catalogue-date 2007-03-12 14:32:12 +0100
+catalogue-ctan /fonts/tapir
+catalogue-license gpl
+
+name taupin
+category Package
+revision 1373
+runfiles size=7103
+ texmf-dist/tex/latex/taupin/smallcap.sty
+ texmf-dist/tex/latex/taupin/t1cmsc.fd
+ texmf-dist/tex/latex/taupin/varsects.sty
+
+name tcldoc
+category Package
+revision 1374
+docfiles size=1661
+ texmf-dist/doc/latex/tcldoc/README.txt
+srcfiles size=661753
+ texmf-dist/source/latex/tcldoc/dtxload.dtx
+ texmf-dist/source/latex/tcldoc/dtxload.ins
+ texmf-dist/source/latex/tcldoc/dtxload.tcl
+ texmf-dist/source/latex/tcldoc/examples/README.txt
+ texmf-dist/source/latex/tcldoc/examples/parsetcl.dtx
+ texmf-dist/source/latex/tcldoc/examples/parsetcl.ins
+ texmf-dist/source/latex/tcldoc/examples/pdf.dtx
+ texmf-dist/source/latex/tcldoc/examples/pdf.ins
+ texmf-dist/source/latex/tcldoc/pstokens.dtx
+ texmf-dist/source/latex/tcldoc/tcldoc.dtx
+ texmf-dist/source/latex/tcldoc/tcldoc.ins
+ texmf-dist/source/latex/tcldoc/tclldoc.dtx
+ texmf-dist/source/latex/tcldoc/tclldoc.ins
+ texmf-dist/source/latex/tcldoc/tools/README.txt
+ texmf-dist/source/latex/tcldoc/tools/eemenu.dtx
+ texmf-dist/source/latex/tcldoc/tools/eemenu.ins
+ texmf-dist/source/latex/tcldoc/tools/sourcedtx.dtx
+ texmf-dist/source/latex/tcldoc/tools/sourcedtx.ins
+runfiles size=30536
+ texmf-dist/tex/latex/tcldoc/tcldoc.cls
+ texmf-dist/tex/latex/tcldoc/tcldoc.sty
+ texmf-dist/tex/latex/tcldoc/tclldoc.cls
+ texmf-dist/tex/latex/tcldoc/tclldoc.sty
+
+name tds
+category Documentation
+revision 1487
+shortdesc The TeX Directory Structure standard.
+longdesc Defines a structure for placement of TeX-related files on an
+longdesc hierarchical file system, in a way that is well-defined, and is
+longdesc readily implementable.
+docfiles size=506084
+ texmf-doc/doc/english/tds/ChangeLog
+ texmf-doc/doc/english/tds/Makefile
+ texmf-doc/doc/english/tds/README details="Readme"
+ texmf-doc/doc/english/tds/index.html
+ texmf-doc/doc/english/tds/tds.dvi
+ texmf-doc/doc/english/tds/tds.html details="The standard, converted to HTML"
+ texmf-doc/doc/english/tds/tds.pdf details="The standard specification"
+ texmf-doc/doc/english/tds/tds.sed
+ texmf-doc/doc/english/tds/tds.tex
+ texmf-doc/doc/english/tds/tds2texi.el
+ texmf-doc/doc/english/tds/tdsguide.cls
+catalogue-version 1.1
+catalogue-date 2007-01-16 00:15:12 +0100
+catalogue-ctan /tds
+catalogue-license unknown
+
+name technics
+category Package
+revision 1487
+shortdesc A package to format technical documents.
+docfiles size=18156
+ texmf-dist/doc/latex/technics/technics.dvi
+ texmf-dist/doc/latex/technics/technics.tex
+srcfiles size=39736
+ texmf-dist/source/latex/technics/png2eps.sh
+ texmf-dist/source/latex/technics/rf-logo.zip
+ texmf-dist/source/latex/technics/view-dvi.sh
+ texmf-dist/source/latex/technics/vmlinux.eps
+ texmf-dist/source/latex/technics/vmlinux.png
+runfiles size=3629
+ texmf-dist/tex/latex/technics/technics.sty
+catalogue-version
+catalogue-date 2007-01-16 00:15:12 +0100
+catalogue-ctan /macros/latex/contrib/technics
+catalogue-license lppl
+
+name template
+category Package
+revision 616
+docfiles size=1194
+ texmf-dist/doc/latex3/template/template-test.tex
+ texmf-dist/doc/latex3/template/tprestrict-test.tex
+srcfiles size=71444
+ texmf-dist/source/latex3/template/template.dtx
+ texmf-dist/source/latex3/template/template.ins
+runfiles size=12721
+ texmf-dist/tex/latex3/template/template.sty
+
+name templates-fenn
+category Documentation
+revision 5028
+shortdesc Templates for TeX usage.
+longdesc A set of templates for using LaTeX packages that the author
+longdesc uses, comprising: – scrlttr2.tex: a letter, written with
+longdesc scrlttr2.cls from the KOMA-Script bundle; – dinbrief.tex: a
+longdesc letter according to the German (DIN) standards, written with
+longdesc dinbrief.cls; – kbrief.tex: a brief memo (‘Kurzbrief’) to
+longdesc accompany enclosures, as used in German offices, again based on
+longdesc dinbrief; – vermerk.tex: a general form for taking down notes
+longdesc on events in the office; and – diabetes.tex: a diary for the
+longdesc basis-bolus insulin therapy of diabetes mellitus, using
+longdesc scrartcl.cls from the KOMA-Script bundle.
+docfiles size=16470
+ texmf-doc/doc/german/templates-fenn/diabetes.tex
+ texmf-doc/doc/german/templates-fenn/dinbrief.tex
+ texmf-doc/doc/german/templates-fenn/kbrief.tex
+ texmf-doc/doc/german/templates-fenn/scrlttr2.tex
+ texmf-doc/doc/german/templates-fenn/templates-fenn-de.txt details="Package documentation (German)" language="de"
+ texmf-doc/doc/german/templates-fenn/templates-fenn-en.txt details="Package documentation (English)" language="en"
+ texmf-doc/doc/german/templates-fenn/vermerk.tex
+catalogue-version
+catalogue-date 2007-06-11 18:00:32 +0200
+catalogue-ctan /info/templates/fenn
+catalogue-license lppl
+
+name templates-sommer
+category Documentation
+revision 5027
+shortdesc Templates for TeX usage.
+longdesc A set of templates for using LaTeX packages that the author
+longdesc uses, comprising: – Hausarbeit.tex: for students of the
+longdesc Lehrstuhl Volkskunde an der Friedrich‐Schiller‐Universität
+longdesc Jena; – Psycho-Dipl.tex: for diploma theses in psychology.
+docfiles size=40632
+ texmf-doc/doc/german/templates-sommer/Hausarbeit.bib
+ texmf-doc/doc/german/templates-sommer/Hausarbeit.tex
+ texmf-doc/doc/german/templates-sommer/Logo.jpg
+ texmf-doc/doc/german/templates-sommer/Psycho-Dipl.bib
+ texmf-doc/doc/german/templates-sommer/Psycho-Dipl.tex
+ texmf-doc/doc/german/templates-sommer/README.de details="README" language="de"
+catalogue-version
+catalogue-date 2007-06-11 18:00:32 +0200
+catalogue-ctan /info/templates/sommer
+catalogue-license lppl
+
+name tengwarscript
+category Package
+revision 4054
+docfiles size=750703
+ texmf-dist/doc/latex/tengwarscript/COPYING
+ texmf-dist/doc/latex/tengwarscript/README
+ texmf-dist/doc/latex/tengwarscript/quetta.eps
+ texmf-dist/doc/latex/tengwarscript/quetta.pdf
+ texmf-dist/doc/latex/tengwarscript/tengfonts.pdf
+ texmf-dist/doc/latex/tengwarscript/tengfonts.tex
+ texmf-dist/doc/latex/tengwarscript/tengtest.pdf
+ texmf-dist/doc/latex/tengwarscript/tengtest.tex
+ texmf-dist/doc/latex/tengwarscript/tengwarscript.pdf
+srcfiles size=297349
+ texmf-dist/source/latex/tengwarscript/tengwarscript.dtx
+ texmf-dist/source/latex/tengwarscript/tengwarscript.ins
+runfiles size=311286
+ texmf-dist/fonts/enc/dvips/tengwarscript/tengwaralt.enc
+ texmf-dist/fonts/enc/dvips/tengwarscript/tengwarcap.enc
+ texmf-dist/fonts/enc/dvips/tengwarscript/tengwarscript.enc
+ texmf-dist/fonts/map/dvips/tengwarscript/tengwarscript.map
+ texmf-dist/fonts/tfm/public/tengwarscript/Elfica32.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/Parmaite.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/Parmaite_alt.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/Parmaite_full.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarFormal12.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarFormalA12.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarFormal_full.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarGothika050.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarNoldor.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarNoldorAlt.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarNoldorCapitals1.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarNoldorCapitals2.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarNoldor_full.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarQuenya.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarQuenyaAlt.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarQuenyaCapitals1.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarQuenyaCapitals2.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarQuenya_full.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarSindarin.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarSindarinAlt.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarSindarinCapitals1.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarSindarinCapitals2.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarSindarin_full.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/TengwarTelerin.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/UnicodeParmaite.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tngan.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tngan_full.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tngana.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tnganab.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tnganabi.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tnganai.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tnganb.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tnganb_full.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tnganbi.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tnganbi_full.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tngani.tfm
+ texmf-dist/fonts/tfm/public/tengwarscript/tngani_full.tfm
+ texmf-dist/fonts/vf/public/tengwarscript/Parmaite_full.vf
+ texmf-dist/fonts/vf/public/tengwarscript/TengwarFormal_full.vf
+ texmf-dist/fonts/vf/public/tengwarscript/TengwarNoldor_full.vf
+ texmf-dist/fonts/vf/public/tengwarscript/TengwarQuenya_full.vf
+ texmf-dist/fonts/vf/public/tengwarscript/TengwarSindarin_full.vf
+ texmf-dist/fonts/vf/public/tengwarscript/tngan_full.vf
+ texmf-dist/fonts/vf/public/tengwarscript/tnganb_full.vf
+ texmf-dist/fonts/vf/public/tengwarscript/tnganbi_full.vf
+ texmf-dist/fonts/vf/public/tengwarscript/tngani_full.vf
+ texmf-dist/tex/latex/tengwarscript/annatar.cfg
+ texmf-dist/tex/latex/tengwarscript/annatarbold.cfg
+ texmf-dist/tex/latex/tengwarscript/annatarbolditalic.cfg
+ texmf-dist/tex/latex/tengwarscript/annataritalic.cfg
+ texmf-dist/tex/latex/tengwarscript/elfica.cfg
+ texmf-dist/tex/latex/tengwarscript/formal.cfg
+ texmf-dist/tex/latex/tengwarscript/gothika.cfg
+ texmf-dist/tex/latex/tengwarscript/noldor.cfg
+ texmf-dist/tex/latex/tengwarscript/noldorcapI.cfg
+ texmf-dist/tex/latex/tengwarscript/noldorcapII.cfg
+ texmf-dist/tex/latex/tengwarscript/parmaite.cfg
+ texmf-dist/tex/latex/tengwarscript/quenya.cfg
+ texmf-dist/tex/latex/tengwarscript/quenyacapI.cfg
+ texmf-dist/tex/latex/tengwarscript/quenyacapII.cfg
+ texmf-dist/tex/latex/tengwarscript/sindarin.cfg
+ texmf-dist/tex/latex/tengwarscript/sindarincapI.cfg
+ texmf-dist/tex/latex/tengwarscript/sindarincapII.cfg
+ texmf-dist/tex/latex/tengwarscript/teleri.cfg
+ texmf-dist/tex/latex/tengwarscript/tengwarscript.sty
+ texmf-dist/tex/latex/tengwarscript/unicodeparmaite.cfg
+
+name tensor
+category Package
+revision 1376
+shortdesc Typeset tensors.
+longdesc A package which allows the user to set tensor-style super- and
+longdesc subscripts with offsets between successive indices. It supports
+longdesc the typesetting of tensors with mixed upper and lower indices
+longdesc with spacing, also typset preposed indices. This is a complete
+longdesc revision and extension of the original ‘tensor’ package by
+longdesc Mike Piff.
+docfiles size=111599
+ texmf-dist/doc/latex/tensor/README details="Package README"
+ texmf-dist/doc/latex/tensor/tensor.pdf details="Package documentation"
+srcfiles size=22493
+ texmf-dist/source/latex/tensor/tensor.dtx
+ texmf-dist/source/latex/tensor/tensor.ins
+runfiles size=4258
+ texmf-dist/tex/latex/tensor/tensor.sty
+catalogue-version 2.1
+catalogue-date 2006-11-03 07:18:50 +0100
+catalogue-ctan /macros/latex/contrib/tensor
+catalogue-license lppl
+
+name teubner
+category Package
+revision 5465
+shortdesc Philological typesetting of classical Greek.
+longdesc An extension to babel greek option for typesetting classical
+longdesc Greek with a philological approach. The package works with the
+longdesc author's greek fonts using the ‘Lispiakos’ font shape
+longdesc derived from that of the fonts used in printers' shops in
+longdesc Lispia. The package name honours the publisher B.G. Teubner
+longdesc Verlaggesellschaft whose Greek text publications are of high
+longdesc quality.
+docfiles size=346025
+ texmf-dist/doc/latex/teubner/teubner-doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/teubner/teubner-doc.tex
+ texmf-dist/doc/latex/teubner/teubner.txt details="Readme"
+srcfiles size=127632
+ texmf-dist/source/latex/teubner/teubner.dtx
+ texmf-dist/source/latex/teubner/teubner.ins
+runfiles size=47806
+ texmf-dist/tex/latex/teubner/teubner.sty
+catalogue-version 2.2c
+catalogue-date 2007-03-12 00:40:13 +0100
+catalogue-ctan /macros/latex/contrib/teubner
+catalogue-license lppl
+
+name tex-gyre
+category Package
+revision 5283
+shortdesc TeX Fonts extending freely available URW fonts.
+longdesc The TeX-GYRE bundle consists of six font families: The TeX Gyre
+longdesc Adventor family of fonts is based on the URW Gothic L family
+longdesc (designed by Herb Lubalin and Tom Carnase). The TeX Gyre Bonum
+longdesc family of fonts is based on the URW Bookman L family (designed
+longdesc by Alexander Phemister). TeX Gyre Chorus is a font derived from
+longdesc handwritten letterforms of the Italian Renaissance. It was
+longdesc designed by Hermann Zapf (ITC Zapf Chancery, 1979; currently,
+longdesc other variants of this typeface are available). TeX Gyre Chorus
+longdesc is based on the URW Chancery L Medium Italic font, but heavily
+longdesc extended. The Vietnamese and Cyrillic characters were added by
+longdesc Han The Thanh and Valek Filippov, respectively. The TeX Gyre
+longdesc Heros family of fonts is based on the URW Nimbus Sans L
+longdesc (prepared by Max Miedinger, with Eduard Hoffmann). The TeX Gyre
+longdesc Pagella family of fonts is based on the URW Palladio L family
+longdesc (designed by Hermann Zapf). The TeX Gyre Schola family of fonts
+longdesc is based on the URW Century Schoolbook L family (designed by
+longdesc Morris Fuller Benton). The TeX Gyre Termes is based on the URW
+longdesc Nimbus Roman No9 L family (designed by Stanley Morison together
+longdesc with Starling Burgess and Victor Lardent). The constituent
+longdesc standard faces of each family have been greatly extended, and
+longdesc contain nearly 1200 glyphs each (though Chorus omits Greek
+longdesc support, has no small-caps family and has approximately 900
+longdesc glyphs). Each family is available in Adobe Type 1 and Open Type
+longdesc formats, and LaTeX support (for use with a variety of
+longdesc encodings) is provided. Vietnamese and Cyrillic characters were
+longdesc added by Han The Thanh and Valek Filippov, respectively.
+execute addMap qag.map
+execute addMap qbk.map
+execute addMap qcr.map
+execute addMap qcs.map
+execute addMap qhv.map
+execute addMap qpl.map
+execute addMap qtm.map
+execute addMap qzc.map
+docfiles size=8369325
+ texmf-dist/doc/fonts/tex-gyre/GUST-FONT-LICENSE.txt
+ texmf-dist/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Adventor.txt
+ texmf-dist/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Bonum.txt
+ texmf-dist/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Chorus.txt
+ texmf-dist/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Cursor.txt
+ texmf-dist/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Heros.txt
+ texmf-dist/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Pagella.txt
+ texmf-dist/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Schola.txt
+ texmf-dist/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Termes.txt
+ texmf-dist/doc/fonts/tex-gyre/README-TeX-Gyre-Adventor.txt details="README for TeX-GYRE Adventor"
+ texmf-dist/doc/fonts/tex-gyre/README-TeX-Gyre-Bonum.txt details="README for TeX-GYRE Bonum"
+ texmf-dist/doc/fonts/tex-gyre/README-TeX-Gyre-Chorus.txt details="README for TeX-GYRE Chorus"
+ texmf-dist/doc/fonts/tex-gyre/README-TeX-Gyre-Cursor.txt
+ texmf-dist/doc/fonts/tex-gyre/README-TeX-Gyre-Heros.txt details="README for TeX-GYRE Heros"
+ texmf-dist/doc/fonts/tex-gyre/README-TeX-Gyre-Pagella.txt details="README for TeX-GYRE Pagella"
+ texmf-dist/doc/fonts/tex-gyre/README-TeX-Gyre-Schola.txt details="README for TeX-GYRE Schola"
+ texmf-dist/doc/fonts/tex-gyre/README-TeX-Gyre-Termes.txt details="README for TeX-GYRE Termes"
+ texmf-dist/doc/fonts/tex-gyre/qag-hist.txt
+ texmf-dist/doc/fonts/tex-gyre/qag-info.pdf details="The technical documentation of TeX Gyre Adventor"
+ texmf-dist/doc/fonts/tex-gyre/qag-test.pdf
+ texmf-dist/doc/fonts/tex-gyre/qag-test.tex
+ texmf-dist/doc/fonts/tex-gyre/qbk-hist.txt
+ texmf-dist/doc/fonts/tex-gyre/qbk-info.pdf details="The technical documentation of TeX Gyre Bonum"
+ texmf-dist/doc/fonts/tex-gyre/qbk-test.pdf
+ texmf-dist/doc/fonts/tex-gyre/qbk-test.tex
+ texmf-dist/doc/fonts/tex-gyre/qcr-hist.txt
+ texmf-dist/doc/fonts/tex-gyre/qcr-info.pdf
+ texmf-dist/doc/fonts/tex-gyre/qcr-test.pdf
+ texmf-dist/doc/fonts/tex-gyre/qcr-test.tex
+ texmf-dist/doc/fonts/tex-gyre/qcs-hist.txt
+ texmf-dist/doc/fonts/tex-gyre/qcs-info.pdf details="The technical documentation of TeX Gyre Schola"
+ texmf-dist/doc/fonts/tex-gyre/qcs-test.pdf
+ texmf-dist/doc/fonts/tex-gyre/qcs-test.tex
+ texmf-dist/doc/fonts/tex-gyre/qhv-hist.txt
+ texmf-dist/doc/fonts/tex-gyre/qhv-info.pdf details="The technical documentation of TeX Gyre Heros"
+ texmf-dist/doc/fonts/tex-gyre/qhv-test.pdf
+ texmf-dist/doc/fonts/tex-gyre/qhv-test.tex
+ texmf-dist/doc/fonts/tex-gyre/qpl-hist.txt
+ texmf-dist/doc/fonts/tex-gyre/qpl-info.pdf details="The technical documentation of TeX Gyre Pagella"
+ texmf-dist/doc/fonts/tex-gyre/qpl-test.pdf
+ texmf-dist/doc/fonts/tex-gyre/qpl-test.tex
+ texmf-dist/doc/fonts/tex-gyre/qtm-hist.txt
+ texmf-dist/doc/fonts/tex-gyre/qtm-info.pdf details="The technical documentation of TeX Gyre Termes"
+ texmf-dist/doc/fonts/tex-gyre/qtm-test.pdf
+ texmf-dist/doc/fonts/tex-gyre/qtm-test.tex
+ texmf-dist/doc/fonts/tex-gyre/qzc-hist.txt
+ texmf-dist/doc/fonts/tex-gyre/qzc-info.pdf details="The technical documentation of TeX Gyre Chorus"
+ texmf-dist/doc/fonts/tex-gyre/qzc-test.pdf
+ texmf-dist/doc/fonts/tex-gyre/qzc-test.tex
+runfiles size=26027964
+ texmf-dist/fonts/afm/public/tex-gyre/qagb.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qagbi.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qagr.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qagri.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qbkb.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qbkbi.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qbkr.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qbkri.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qcrb.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qcrbi.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qcrr.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qcrri.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qcsb.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qcsbi.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qcsr.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qcsri.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qhvb.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qhvbi.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qhvcb.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qhvcbi.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qhvcr.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qhvcri.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qhvr.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qhvri.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qplb.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qplbi.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qplr.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qplri.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qtmb.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qtmbi.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qtmr.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qtmri.afm
+ texmf-dist/fonts/afm/public/tex-gyre/qzcmi.afm
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-cs-sc.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-cs.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-ec-sc.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-ec.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-el-sc.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-el.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-l7x-sc.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-l7x.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-qx-sc.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-qx.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-rm-sc.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-rm.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-t2a.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-t2b.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-t2c.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-t5-sc.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-t5.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-texnansi-sc.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-texnansi.enc
+ texmf-dist/fonts/enc/dvips/tex-gyre/q-ts1.enc
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-cs.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-ec.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-el.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-l7x.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-qx.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-rm.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-t2a.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-t2b.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-t2c.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-t5.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-texnansi.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag-ts1.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qag.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-cs.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-ec.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-el.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-l7x.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-qx.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-rm.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-t2a.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-t2b.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-t2c.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-t5.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-texnansi.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk-ts1.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qbk.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-cs.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-ec.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-el.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-l7x.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-qx.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-rm.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-t2a.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-t2b.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-t2c.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-t5.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-texnansi.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr-ts1.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcr.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-cs.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-ec.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-el.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-l7x.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-qx.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-rm.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-t2a.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-t2b.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-t2c.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-t5.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-texnansi.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs-ts1.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qcs.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-cs.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-ec.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-el.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-l7x.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-qx.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-rm.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-t2a.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-t2b.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-t2c.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-t5.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-texnansi.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv-ts1.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qhv.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-cs.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-ec.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-el.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-l7x.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-qx.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-rm.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-t2a.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-t2b.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-t2c.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-t5.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-texnansi.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl-ts1.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qpl.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-cs.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-ec.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-el.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-l7x.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-qx.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-rm.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-t2a.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-t2b.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-t2c.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-t5.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-texnansi.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm-ts1.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qtm.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-cs.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-ec.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-el.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-l7x.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-qx.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-rm.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-t2a.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-t2b.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-t2c.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-t5.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-texnansi.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc-ts1.map
+ texmf-dist/fonts/map/dvips/tex-gyre/qzc.map
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreadventor-bold.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreadventor-bolditalic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreadventor-italic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreadventor-regular.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrebonum-bold.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrebonum-bolditalic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrebonum-italic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrebonum-regular.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrechorus-mediumitalic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrecursor-bold.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrecursor-bolditalic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrecursor-italic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrecursor-regular.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreheros-bold.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreheros-bolditalic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreheros-italic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreheros-regular.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreheroscn-bold.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreheroscn-bolditalic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreheroscn-italic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreheroscn-regular.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrepagella-bold.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrepagella-bolditalic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrepagella-italic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyrepagella-regular.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreschola-bold.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreschola-bolditalic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreschola-italic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyreschola-regular.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyretermes-bold.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyretermes-bolditalic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyretermes-italic.otf
+ texmf-dist/fonts/opentype/public/tex-gyre/texgyretermes-regular.otf
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qagb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qagbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qagr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qagri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qbkb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qbkbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qbkr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qbkri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcrb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcrbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcrr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcrri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcsb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcsbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcsr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcsri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvcb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvcbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvcr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvcri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qplb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qplbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qplr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qplri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qtmb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qtmbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qtmr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qtmri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/cs-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qagb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qagbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qagr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qagri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qbkb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qbkbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qbkr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qbkri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcrb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcrbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcrr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcrri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcsb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcsbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcsr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcsri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvcb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvcbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvcr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvcri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qplb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qplbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qplr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qplri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qtmb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qtmbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qtmr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qtmri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ec-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qagb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qagbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qagr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qagri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qbkb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qbkbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qbkr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qbkri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcrb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcrbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcrr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcrri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcsb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcsbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcsr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcsri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvcb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvcbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvcr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvcri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qplb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qplbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qplr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qplri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qtmb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qtmbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qtmr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qtmri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/el-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qagb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qagbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qagr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qagri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qbkb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qbkbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qbkr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qbkri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcrb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcrbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcrr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcrri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcsb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcsbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcsr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcsri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvcb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvcbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvcr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvcri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qplb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qplbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qplr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qplri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qtmb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qtmbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qtmr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qtmri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/l7x-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qagb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qagbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qagr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qagri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qbkb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qbkbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qbkr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qbkri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcrb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcrbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcrr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcrri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcsb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcsbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcsr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcsri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvcb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvcbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvcr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvcri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qplb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qplbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qplr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qplri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qtmb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qtmbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qtmr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qtmri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/qx-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qagb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qagbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qagr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qagri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qbkb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qbkbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qbkr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qbkri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcrb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcrbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcrr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcrri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcsb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcsbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcsr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcsri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvcb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvcbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvcr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvcri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qplb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qplbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qplr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qplri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qtmb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qtmbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qtmr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qtmri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/rm-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2a-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2b-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t2c-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qagb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qagbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qagr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qagri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qbkb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qbkbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qbkr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qbkri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcrb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcrbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcrr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcrri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcsb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcsbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcsr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcsri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvcb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvcbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvcr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvcri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qplb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qplbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qplr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qplri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qtmb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qtmbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qtmr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qtmri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/t5-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qagb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qagbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qagr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qagri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qbkb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qbkbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qbkr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qbkri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcrb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcrbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcrr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcrri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcsb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcsbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcsr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcsri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvcb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvcbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvcr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvcri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qplb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qplbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qplr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qplri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qtmb-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qtmbi-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qtmr-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qtmri-sc.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/texnansi-qzcmi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qagb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qagbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qagr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qagri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qbkb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qbkbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qbkr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qbkri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qcrb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qcrbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qcrr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qcrri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qcsb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qcsbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qcsr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qcsri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qhvb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qhvbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qhvcb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qhvcbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qhvcr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qhvcri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qhvr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qhvri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qplb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qplbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qplr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qplri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmb.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmbi.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm
+ texmf-dist/fonts/tfm/public/tex-gyre/ts1-qzcmi.tfm
+ texmf-dist/fonts/type1/public/tex-gyre/qagb.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qagb.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qagbi.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qagbi.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qagr.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qagr.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qagri.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qagri.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qbkb.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qbkb.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qbkbi.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qbkbi.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qbkr.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qbkr.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qbkri.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qbkri.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qcrb.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qcrb.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qcrbi.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qcrbi.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qcrr.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qcrr.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qcrri.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qcrri.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qcsb.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qcsb.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qcsbi.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qcsbi.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qcsr.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qcsr.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qcsri.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qcsri.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qhvb.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qhvb.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qhvbi.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qhvbi.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qhvcb.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qhvcb.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qhvcbi.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qhvcbi.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qhvcr.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qhvcr.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qhvcri.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qhvcri.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qhvr.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qhvr.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qhvri.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qhvri.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qplb.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qplb.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qplbi.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qplbi.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qplr.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qplr.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qplri.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qplri.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qtmb.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qtmb.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qtmbi.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qtmbi.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qtmr.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qtmr.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qtmri.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qtmri.pfm
+ texmf-dist/fonts/type1/public/tex-gyre/qzcmi.pfb
+ texmf-dist/fonts/type1/public/tex-gyre/qzcmi.pfm
+ texmf-dist/tex/latex/tex-gyre/il2qag.fd
+ texmf-dist/tex/latex/tex-gyre/il2qbk.fd
+ texmf-dist/tex/latex/tex-gyre/il2qcr.fd
+ texmf-dist/tex/latex/tex-gyre/il2qcs.fd
+ texmf-dist/tex/latex/tex-gyre/il2qhv.fd
+ texmf-dist/tex/latex/tex-gyre/il2qpl.fd
+ texmf-dist/tex/latex/tex-gyre/il2qtm.fd
+ texmf-dist/tex/latex/tex-gyre/il2qzc.fd
+ texmf-dist/tex/latex/tex-gyre/l7xqag.fd
+ texmf-dist/tex/latex/tex-gyre/l7xqbk.fd
+ texmf-dist/tex/latex/tex-gyre/l7xqcr.fd
+ texmf-dist/tex/latex/tex-gyre/l7xqcs.fd
+ texmf-dist/tex/latex/tex-gyre/l7xqhv.fd
+ texmf-dist/tex/latex/tex-gyre/l7xqpl.fd
+ texmf-dist/tex/latex/tex-gyre/l7xqtm.fd
+ texmf-dist/tex/latex/tex-gyre/l7xqzc.fd
+ texmf-dist/tex/latex/tex-gyre/ly1qag.fd
+ texmf-dist/tex/latex/tex-gyre/ly1qbk.fd
+ texmf-dist/tex/latex/tex-gyre/ly1qcr.fd
+ texmf-dist/tex/latex/tex-gyre/ly1qcs.fd
+ texmf-dist/tex/latex/tex-gyre/ly1qhv.fd
+ texmf-dist/tex/latex/tex-gyre/ly1qpl.fd
+ texmf-dist/tex/latex/tex-gyre/ly1qtm.fd
+ texmf-dist/tex/latex/tex-gyre/ly1qzc.fd
+ texmf-dist/tex/latex/tex-gyre/ot1qag.fd
+ texmf-dist/tex/latex/tex-gyre/ot1qbk.fd
+ texmf-dist/tex/latex/tex-gyre/ot1qcr.fd
+ texmf-dist/tex/latex/tex-gyre/ot1qcs.fd
+ texmf-dist/tex/latex/tex-gyre/ot1qhv.fd
+ texmf-dist/tex/latex/tex-gyre/ot1qpl.fd
+ texmf-dist/tex/latex/tex-gyre/ot1qtm.fd
+ texmf-dist/tex/latex/tex-gyre/ot1qzc.fd
+ texmf-dist/tex/latex/tex-gyre/ot4qag.fd
+ texmf-dist/tex/latex/tex-gyre/ot4qbk.fd
+ texmf-dist/tex/latex/tex-gyre/ot4qcr.fd
+ texmf-dist/tex/latex/tex-gyre/ot4qcs.fd
+ texmf-dist/tex/latex/tex-gyre/ot4qhv.fd
+ texmf-dist/tex/latex/tex-gyre/ot4qpl.fd
+ texmf-dist/tex/latex/tex-gyre/ot4qtm.fd
+ texmf-dist/tex/latex/tex-gyre/ot4qzc.fd
+ texmf-dist/tex/latex/tex-gyre/qbookman.sty
+ texmf-dist/tex/latex/tex-gyre/qcourier.sty
+ texmf-dist/tex/latex/tex-gyre/qpalatin.sty
+ texmf-dist/tex/latex/tex-gyre/qswiss.sty
+ texmf-dist/tex/latex/tex-gyre/qtimes.sty
+ texmf-dist/tex/latex/tex-gyre/qxqag.fd
+ texmf-dist/tex/latex/tex-gyre/qxqbk.fd
+ texmf-dist/tex/latex/tex-gyre/qxqcr.fd
+ texmf-dist/tex/latex/tex-gyre/qxqcs.fd
+ texmf-dist/tex/latex/tex-gyre/qxqhv.fd
+ texmf-dist/tex/latex/tex-gyre/qxqpl.fd
+ texmf-dist/tex/latex/tex-gyre/qxqtm.fd
+ texmf-dist/tex/latex/tex-gyre/qxqzc.fd
+ texmf-dist/tex/latex/tex-gyre/qzapfcha.sty
+ texmf-dist/tex/latex/tex-gyre/t1qag.fd
+ texmf-dist/tex/latex/tex-gyre/t1qbk.fd
+ texmf-dist/tex/latex/tex-gyre/t1qcr.fd
+ texmf-dist/tex/latex/tex-gyre/t1qcs.fd
+ texmf-dist/tex/latex/tex-gyre/t1qhv.fd
+ texmf-dist/tex/latex/tex-gyre/t1qpl.fd
+ texmf-dist/tex/latex/tex-gyre/t1qtm.fd
+ texmf-dist/tex/latex/tex-gyre/t1qzc.fd
+ texmf-dist/tex/latex/tex-gyre/t2aqag.fd
+ texmf-dist/tex/latex/tex-gyre/t2aqbk.fd
+ texmf-dist/tex/latex/tex-gyre/t2aqcr.fd
+ texmf-dist/tex/latex/tex-gyre/t2aqcs.fd
+ texmf-dist/tex/latex/tex-gyre/t2aqhv.fd
+ texmf-dist/tex/latex/tex-gyre/t2aqpl.fd
+ texmf-dist/tex/latex/tex-gyre/t2aqtm.fd
+ texmf-dist/tex/latex/tex-gyre/t2aqzc.fd
+ texmf-dist/tex/latex/tex-gyre/t2bqag.fd
+ texmf-dist/tex/latex/tex-gyre/t2bqbk.fd
+ texmf-dist/tex/latex/tex-gyre/t2bqcr.fd
+ texmf-dist/tex/latex/tex-gyre/t2bqcs.fd
+ texmf-dist/tex/latex/tex-gyre/t2bqhv.fd
+ texmf-dist/tex/latex/tex-gyre/t2bqpl.fd
+ texmf-dist/tex/latex/tex-gyre/t2bqtm.fd
+ texmf-dist/tex/latex/tex-gyre/t2bqzc.fd
+ texmf-dist/tex/latex/tex-gyre/t2cqag.fd
+ texmf-dist/tex/latex/tex-gyre/t2cqbk.fd
+ texmf-dist/tex/latex/tex-gyre/t2cqcr.fd
+ texmf-dist/tex/latex/tex-gyre/t2cqcs.fd
+ texmf-dist/tex/latex/tex-gyre/t2cqhv.fd
+ texmf-dist/tex/latex/tex-gyre/t2cqpl.fd
+ texmf-dist/tex/latex/tex-gyre/t2cqtm.fd
+ texmf-dist/tex/latex/tex-gyre/t2cqzc.fd
+ texmf-dist/tex/latex/tex-gyre/t5qag.fd
+ texmf-dist/tex/latex/tex-gyre/t5qbk.fd
+ texmf-dist/tex/latex/tex-gyre/t5qcr.fd
+ texmf-dist/tex/latex/tex-gyre/t5qcs.fd
+ texmf-dist/tex/latex/tex-gyre/t5qhv.fd
+ texmf-dist/tex/latex/tex-gyre/t5qpl.fd
+ texmf-dist/tex/latex/tex-gyre/t5qtm.fd
+ texmf-dist/tex/latex/tex-gyre/t5qzc.fd
+ texmf-dist/tex/latex/tex-gyre/tgadventor.sty
+ texmf-dist/tex/latex/tex-gyre/tgbonum.sty
+ texmf-dist/tex/latex/tex-gyre/tgchorus.sty
+ texmf-dist/tex/latex/tex-gyre/tgcursor.sty
+ texmf-dist/tex/latex/tex-gyre/tgheros.sty
+ texmf-dist/tex/latex/tex-gyre/tgpagella.sty
+ texmf-dist/tex/latex/tex-gyre/tgschola.sty
+ texmf-dist/tex/latex/tex-gyre/tgtermes.sty
+ texmf-dist/tex/latex/tex-gyre/ts1qag.fd
+ texmf-dist/tex/latex/tex-gyre/ts1qbk.fd
+ texmf-dist/tex/latex/tex-gyre/ts1qcr.fd
+ texmf-dist/tex/latex/tex-gyre/ts1qcs.fd
+ texmf-dist/tex/latex/tex-gyre/ts1qhv.fd
+ texmf-dist/tex/latex/tex-gyre/ts1qpl.fd
+ texmf-dist/tex/latex/tex-gyre/ts1qtm.fd
+ texmf-dist/tex/latex/tex-gyre/ts1qzc.fd
+catalogue-version
+catalogue-date 2007-10-25 10:44:41 +0200
+catalogue-ctan /fonts/tex-gyre
+catalogue-license gfsl
+
+name tex-ps
+category Package
+revision 613
+shortdesc TeX to PostScript generic macros and add-ons.
+longdesc TeX to PostScript generic macros and add-ons: transformations
+longdesc of EPS files, prepress preparation, color separation, mirror,
+longdesc etc.
+docfiles size=353953
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/README
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/cmyk-doc.pdf
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/fountain.eps
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/gdansk.eps
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/rules.tex
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/sam1-sep.bat
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/sample1.tex
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/sample2.tex
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/sample3.tex
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/sample4.tex
+ texmf-dist/doc/generic/tex-ps/cmyk-hax/screen.eps
+ texmf-dist/doc/generic/tex-ps/poligraf/README
+ texmf-dist/doc/generic/tex-ps/poligraf/kol-cmyk.eps
+ texmf-dist/doc/generic/tex-ps/poligraf/sample.tex
+ texmf-dist/doc/generic/tex-ps/poligraf/samplelx.tex
+runfiles size=83840
+ texmf-dist/dvips/tex-ps/crops.pro
+ texmf-dist/dvips/tex-ps/mirr.hd
+ texmf-dist/dvips/tex-ps/separate.pro
+ texmf-dist/tex/generic/tex-ps/cmyk-hax.tex
+ texmf-dist/tex/generic/tex-ps/epsfx.tex
+ texmf-dist/tex/generic/tex-ps/poligraf.sty
+ texmf-dist/tex/generic/tex-ps/trans.tex
+catalogue-version
+catalogue-date 2007-01-16 09:34:54 +0100
+catalogue-ctan /macros/generic/TeX-PS
+catalogue-license pd
+
+name tex-refs
+category Documentation
+revision 23
+docfiles size=623477
+ texmf-doc/doc/english/tex-refs/README
+ texmf-doc/doc/english/tex-refs/tex-refs.css
+ texmf-doc/doc/english/tex-refs/tex-refs.html
+srcfiles size=713787
+ texmf-doc/source/english/tex-refs/AUTHORS
+ texmf-doc/source/english/tex-refs/Makefile
+ texmf-doc/source/english/tex-refs/README
+ texmf-doc/source/english/tex-refs/RELEASE-NEWS
+ texmf-doc/source/english/tex-refs/THANKS
+ texmf-doc/source/english/tex-refs/TODO
+ texmf-doc/source/english/tex-refs/catalog.xml
+ texmf-doc/source/english/tex-refs/db2latex-mw-itemizedlist.xsl
+ texmf-doc/source/english/tex-refs/db2latex-mw-table.xsl
+ texmf-doc/source/english/tex-refs/db2latex-mw-variablelist.xsl
+ texmf-doc/source/english/tex-refs/tex-refs-chapter-appendices.xml
+ texmf-doc/source/english/tex-refs/tex-refs-chapter-bibtex.xml
+ texmf-doc/source/english/tex-refs/tex-refs-chapter-makeindex.xml
+ texmf-doc/source/english/tex-refs/tex-refs-chapter-metafont.xml
+ texmf-doc/source/english/tex-refs/tex-refs-chapter-metapost.xml
+ texmf-doc/source/english/tex-refs/tex-refs-chapter-pdftex.xml
+ texmf-doc/source/english/tex-refs/tex-refs-chapter-tex.xml
+ texmf-doc/source/english/tex-refs/tex-refs-chapter-xindy.xml
+ texmf-doc/source/english/tex-refs/tex-refs-chunk.xsl
+ texmf-doc/source/english/tex-refs/tex-refs-common.xsl
+ texmf-doc/source/english/tex-refs/tex-refs-htmlhelp.xsl
+ texmf-doc/source/english/tex-refs/tex-refs-local.mapping.xml
+ texmf-doc/source/english/tex-refs/tex-refs-pdf.xsl
+ texmf-doc/source/english/tex-refs/tex-refs-plucker.xsl
+ texmf-doc/source/english/tex-refs/tex-refs-xinclude.xml
+ texmf-doc/source/english/tex-refs/tex-refs.css
+ texmf-doc/source/english/tex-refs/tex-refs.ent
+ texmf-doc/source/english/tex-refs/tex-refs.ist
+ texmf-doc/source/english/tex-refs/tex-refs.xsl
+
+name tex-virtual-academy-pl
+category Documentation
+revision 3527
+docfiles size=2408103
+ texmf-doc/doc/polish/tex-virtual-academy-pl/TeX-pub.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/context/cont-ins.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/context/context.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/context/tytuly.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/cototex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/fonty/back.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/fonty/font-abc.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/fonty/fonthint.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/fonty/index.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/fonty/nfss.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/fonty/qx-info.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/fonty/qx-table1.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/fonty/qx-table2.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/fonty/tpstyle.css
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/artykul.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/context.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/cop.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/grupa.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/gust.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/gustloge.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/indexowanie.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/latex2e.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/lew-7vs.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/lew.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/mail.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/podpis.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/prog.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/tex.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/texologia.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/gify/wa.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/day.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/decode.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/dies.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/fig1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/flags.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/id.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/index.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/jedn.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/lang.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/lower.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/mil.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/mon.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/name.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/order.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/plmindex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/porzadek.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/program.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/setki.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/spec.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/tex-idx.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/toascii.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/typy.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/tys.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/idx/upper.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/index.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/kuchnia/hist.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/kuchnia/tex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/latex2e.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/desc_p1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/desc_p2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/desc_p3.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/desc_p4.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/description.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/description.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/enum_p1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/enum_p2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/enumerate.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/enumerate.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/item_p1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/item_p2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/itemize.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/itemize.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/klopoty.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/list.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/lista_p.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/porzadek.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/listy/standard.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/3parttab.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/3parttable.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/BAhhline.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/accent.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/accents.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/acromake.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/acromake.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/afterpage.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/alltt.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/amsthm.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/amsthm1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/amsthm2.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/arabic.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/array.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/balance.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bar.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bar1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bar2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bbm.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bbm1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bbm2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bbm3.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bbm4.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bbm5.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bbm6.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bbma.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bbmb.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blk1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blk2.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blk3.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blk4.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blk5.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blk6.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blk7.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blk8.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blk9.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/blkarray.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bm.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/bophook.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/boxedminipage.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/boxm.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/calc.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/calc1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/calc2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/capt-of.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/caption.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/caption2.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/case1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/case2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/cases.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ccapt1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ccaption.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/changebar.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/chapterbib.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/cite.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/color.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/color.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/comma.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/cute1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/cuted.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/dblcol.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/dblfnote.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/dcolumn.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/delarray.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/delarray.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq10.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq11.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq12.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq13.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq14.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq15.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq3.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq4.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq5.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq6.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq7.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq8.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/deleq9.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/diam.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/dotseqn.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/dotseqn.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/dow.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/drftcite.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/dropp1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/dropping.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn10.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn11.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn12.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn13.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn14.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn15.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn16.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn17.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn2.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn3.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn4.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn5.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn6.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn7.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn8.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/easyeqn9.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/endfloat.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/enum.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/enumerate.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/enumitem.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/epsfig.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/everyship.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/expdlist.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/exscale.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/extmath.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/extramarks.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancb1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancb2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancb3.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancb4.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancb5.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancb6.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancb7.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancb8.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancybox.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancyhdr.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fancyheading.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/filecontents.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/flafter.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/float.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/floatflt.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/floatpag.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/flt1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/flt2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fltpage.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/flushend.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fn2end.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fnpara.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fnpara.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fnpos.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/footmisc.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/footmisc1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/footmisc2.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/footnpag.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/fp.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ftnright.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/geom1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/geom1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/geom2.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/geometry.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/graphicx.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/graphpaper.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/harp1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/harp2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/harp3.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/harp4.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/harp5.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/harp6.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/harp7.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/harp8.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/harpoon.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/heart.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/here.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/hhline.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/hhline.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/hyperref.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ifthen.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ifthen1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ifthen2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/indentfirst.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/index.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/labeldeb.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/lastpage.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/lcg.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/legend.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/letter.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/letterspace.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/listpart.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/localloc.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/longtable.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/lscape.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/lt1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ltablex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ltabptch.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ltxtable.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/macro.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/macro_t.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/manyfoot.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/manyfoot1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/minitoc.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/moje_typy.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/moreverb.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/mparhack.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multfoot.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multfoot1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multfoot2.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multibox.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multibox.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multicol.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multirow.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multirow1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multirow2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multirow3.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multirow4.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/multirow5.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/mycss.css
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/num.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/numprint.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/nut.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/oldst1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/oldstyle.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/oubraces.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/overbrace.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/overbrace1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/pfnote.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/plain.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/printtim.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/pstcol.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/q1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/qobitree.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ragged2e.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/regcount.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/relsize.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/remreset.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/rotate.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/rotating.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/rotbox.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/selectpage.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/shadepar.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/shadetheorem.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/shadethm.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/shadethm.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/shadow.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/shapepar.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/shedbox.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/shortvrb.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/showkeys.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/sidecap.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/squa.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/stm1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/stm2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/stm3.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/stm4.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/stmaryrd.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/sube1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subeqn-1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subeqn-2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subeqn-3.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subeqn.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subeqna.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subeqnarray.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subfig.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subfigure.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subfloat.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/sublabel.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/sublabel.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/subscript.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/supertabular.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/sverb.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/sverb_n.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/sverb_w.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/tabularx.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/tabularx.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/theorem.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/theorem.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/threeparttable.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/time.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ulem.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ulem.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/ulem1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/umoline.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/undertilde-1.png
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/undertilde.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/url.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/verbatim.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/verbdef.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/verbt.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/verbt1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/verbt2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/version.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/vfrlocal.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/vmargin.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/vrbexin.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/vrflocal.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/wiggly.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/wmcropmark.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/wrapf.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/wrapfig.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/xr.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/xspace.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/xspace1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/xspace2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/macro/xtab.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/pagina/pagina.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/popolsku/platexte.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/spisy/chap.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/spisy/l_chap.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/spisy/l_sec.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/spisy/spis.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/spisy/spis.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/chapter.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/count.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/liczniki.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/num.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p3.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p3.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p4.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p4.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p5.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p5.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p6.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p6.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p7.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/p7.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/part.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/poziom.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/s.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/sect.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/tc.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/tc.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/tca.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/tl.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/tl.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/tr.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/tr.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/tx.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/tx.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/txx.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/latex2e/tytuly/txx.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/manifest.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/cont-pl.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/djgpp.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/emtex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/fptex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/implementacje.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/index.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/inst-mik.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/mex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/miktex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/platex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/spw.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/tetex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/web2c.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/podstawy/2-0wst1.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/podstawy/2-1coto.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/podstawy/2-1kazio.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/podstawy/2-1przyg.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/podstawy/2-1zece.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/podstawy/bib.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/podstawy/spis.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/podstawy/tex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/podstawy/title.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/auctex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/bibtex/bibtex-1.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/bibtex/bibtex-2.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/bibtex/bibtex-3.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/bibtex/bibtex-4.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/bibtex/bibtex-5.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/bibtex/bibtex-6.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/bibtex/bibtex-7.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/bibtex/bibtex-8.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/bibtex/bibtex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/dvidvi.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/dvistro1.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/dvistro2.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/hyph.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/prog/prog.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/tex/fermat.gif
+ texmf-doc/doc/polish/tex-virtual-academy-pl/tex/odsylacze.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/tex/tex.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/tex/tex_key.html
+ texmf-doc/doc/polish/tex-virtual-academy-pl/tex/tryby.html
+
+name tex4ht
+category Package
+revision 4248
+shortdesc Convert (La)TeX to HTML/XML.
+longdesc A converter from TeX and LaTeX to SGML-based formats such as
+longdesc (X)HTML, MathML, OpenDocument, and DocBook, providing a
+longdesc configurable (La)TeX-based authoring system for hypertext.
+longdesc Tex4ht does not parse (La)TeX source (so that it avoids the
+longdesc difficulties encountered by many other converters, arising from
+longdesc the irregularity of (La)TeX syntax). Instead, Tex4ht uses
+longdesc (La)TeX itself (with an extra macro package) to produce a non-
+longdesc standard DVI file that it can then process. This technique
+longdesc gives TeX4ht the robustness characteristic of restricted-syntax
+longdesc systems such as hyperlatex and gellmu.
+runfiles size=4614037
+ texmf-dist/tex4ht/base/unix/tex4ht.env
+ texmf-dist/tex4ht/base/unix/xv4ht.cat
+ texmf-dist/tex4ht/base/win32/tex4ht.env
+ texmf-dist/tex4ht/base/win32/xv4ht.cat
+ texmf-dist/tex4ht/bin/GroupMn.class
+ texmf-dist/tex4ht/bin/HtJsml.class
+ texmf-dist/tex4ht/bin/HtSpk.class
+ texmf-dist/tex4ht/bin/JsmlFilter.class
+ texmf-dist/tex4ht/bin/JsmlMathBreak.class
+ texmf-dist/tex4ht/bin/OoFilter.class
+ texmf-dist/tex4ht/bin/OoUtilities.class
+ texmf-dist/tex4ht/bin/OomFilter.class
+ texmf-dist/tex4ht/bin/Phil.class
+ texmf-dist/tex4ht/bin/XtpipesEntityResolver.class
+ texmf-dist/tex4ht/bin/XtpipesPrintWriter.class
+ texmf-dist/tex4ht/bin/XtpipesReader.class
+ texmf-dist/tex4ht/bin/XtpipesSaxEntityResolver.class
+ texmf-dist/tex4ht/bin/XtpipesSaxLexicalHandler.class
+ texmf-dist/tex4ht/bin/XtpipesUni.class
+ texmf-dist/tex4ht/bin/xtpipes$1.class
+ texmf-dist/tex4ht/bin/xtpipes$2.class
+ texmf-dist/tex4ht/bin/xtpipes$3.class
+ texmf-dist/tex4ht/bin/xtpipes$4.class
+ texmf-dist/tex4ht/bin/xtpipes$5.class
+ texmf-dist/tex4ht/bin/xtpipes$6.class
+ texmf-dist/tex4ht/bin/xtpipes$7.class
+ texmf-dist/tex4ht/bin/xtpipes$XtPipesSearch$1.class
+ texmf-dist/tex4ht/bin/xtpipes$XtPipesSearch$2.class
+ texmf-dist/tex4ht/bin/xtpipes$XtPipesSearch$3.class
+ texmf-dist/tex4ht/bin/xtpipes$XtPipesSearch.class
+ texmf-dist/tex4ht/bin/xtpipes.class
+ texmf-dist/tex4ht/bin/xtpipes/Xtpipes$1.class
+ texmf-dist/tex4ht/bin/xtpipes/Xtpipes$2.class
+ texmf-dist/tex4ht/bin/xtpipes/Xtpipes$3.class
+ texmf-dist/tex4ht/bin/xtpipes/Xtpipes$4.class
+ texmf-dist/tex4ht/bin/xtpipes/Xtpipes$5.class
+ texmf-dist/tex4ht/bin/xtpipes/Xtpipes$XtPipesSearch$1.class
+ texmf-dist/tex4ht/bin/xtpipes/Xtpipes$XtPipesSearch$2.class
+ texmf-dist/tex4ht/bin/xtpipes/Xtpipes$XtPipesSearch.class
+ texmf-dist/tex4ht/bin/xtpipes/Xtpipes.class
+ texmf-dist/tex4ht/bin/xtpipes/XtpipesEntityResolver.class
+ texmf-dist/tex4ht/bin/xtpipes/XtpipesPrintWriter.class
+ texmf-dist/tex4ht/bin/xtpipes/XtpipesUni.class
+ texmf-dist/tex4ht/bin/xtpipes/lib/ScriptsManager.class
+ texmf-dist/tex4ht/bin/xtpipes/lib/ScriptsManagerLH.class
+ texmf-dist/tex4ht/bin/xtpipes/lib/xtpipes-default.4xt
+ texmf-dist/tex4ht/bin/xtpipes/lib/xtpipes.dtd
+ texmf-dist/tex4ht/bin/xv4ht.jar
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagd.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagdo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagk.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagko.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkd.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkdi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkli.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8u.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8u.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8u.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrrc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrrc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrbo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8cn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8rn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8z.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc7tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc8tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo7tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8cn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8rn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbon.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbrn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8cn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8rn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc7tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc8tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro7tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8cn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8rn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvron.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrrn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplb8z.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplbi8z.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplr8z.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplri8z.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbon.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbrn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvron.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvrrn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmbm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmby.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmrm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmrv.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmry.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7m.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7y.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9d.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9e.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9o.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc8z.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9d.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9e.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9o.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbu.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbu8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8rn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9d.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9e.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9o.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc8z.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9d.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9e.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9o.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9d.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9e.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9o.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrr8re.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrre.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrrn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplru.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplru8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplbu.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplrre.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplrrn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplru.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplb7d.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplb8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbcj7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbcj8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbi7d.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbi8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplr8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrc7d.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcjo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplri7d.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplri8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrj.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrj7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrjo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8a.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/pslatex/pcrr8rn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/pslatex/pcrr8tn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/psyro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/rpsyr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/rpsyro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8rn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8z.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8z.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrr8re.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrrn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmbo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmro.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmrre.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putrc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putrc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfchan/rpzcmi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8c.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/rpzdr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/ae/ae.htf
+ texmf-dist/tex4ht/ht-fonts/alias/ae/aetcsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/ams/euler/eurb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/ams/euler/eurm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aealbattar.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmateen.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmohanadb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmothnna.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aealyermook.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aearab.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aecortoba.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aedimnah.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aefurat.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aegranada.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aegraph.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aehani.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aekayrawan.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aekhalid.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aemashq.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aemetal.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aenada.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aenagham.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aenice.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aeostorah.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aeouhod.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aepetra.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aerehan.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aesalem.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aeshado.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aesharjah.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aesindibad.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aetarablus.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/aetholoth.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/homa.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/nazlib.htf
+ texmf-dist/tex4ht/ht-fonts/alias/arabi/titr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchb7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbi7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbo7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchr7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchrc7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchri7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchro7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchro8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchb8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchb8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbi8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbi8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbo8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbo8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchr8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchrc8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchri8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchri8t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchro8r.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pccsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcmi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/chartervn/bchri8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/chess/chess10f.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmbsy.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmbxti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmcs.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmcsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmcss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmcti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmcyr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmdunh.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmff.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmfi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmitt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmsltt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmssq.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmtex.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmu.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/cmvtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnbxti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cm/wncyi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/concrete/ccmi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/concrete/ccr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/concrete/ccsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/concrete/ccti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cs/csti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cs/cstt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/currency/feybl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/currency/feybo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/currency/feybr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/currency/feyml.htf
+ texmf-dist/tex4ht/ht-fonts/alias/currency/feymo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcitt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcsltt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcssbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcssi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmctt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcu.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmbxti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmcsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmdunh.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmff.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmsltt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssdc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmvtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmvtti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/wbxipa.htf
+ texmf-dist/tex4ht/ht-fonts/alias/cyrillic/wslipa.htf
+ texmf-dist/tex4ht/ht-fonts/alias/ec/dc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/ec/dccc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/ec/ec.htf
+ texmf-dist/tex4ht/ht-fonts/alias/ec/eccc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/ec/ecxc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeub.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubis.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubit.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubs.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeuri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeuris.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurit.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurs.htf
+ texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou01.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou02.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou03.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou04.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou05.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou06.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou07.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou08.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou09.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou10.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou11.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou12.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou13.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou14.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou15.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou16.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou17.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou18.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou19.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou20.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou21.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou22.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou23.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou24.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou25.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou26.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou27.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou28.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou29.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou30.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou31.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou32.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou33.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou34.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou35.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou36.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou37.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou38.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou39.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou40.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou41.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou42.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou43.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou44.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou45.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou46.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou47.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou48.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou49.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou50.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou51.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou52.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou53.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou54.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou55.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou56.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou57.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou58.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou59.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou60.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou61.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou62.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou63.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou64.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou65.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou66.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou67.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou68.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou69.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou70.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou71.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou72.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou73.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou74.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou75.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou76.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou77.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou78.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou79.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou80.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou81.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou82.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou83.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou84.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou85.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou86.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou87.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou88.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou89.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou90.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou91.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou92.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou93.htf
+ texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou94.htf
+ texmf-dist/tex4ht/ht-fonts/alias/greek/ibygrk/fibo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/hebrew/cjheblsm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/hebrew/deads.htf
+ texmf-dist/tex4ht/ht-fonts/alias/hebrew/hcaption.htf
+ texmf-dist/tex4ht/ht-fonts/alias/hebrew/oldjaf.htf
+ texmf-dist/tex4ht/ht-fonts/alias/hebrew/rcjheblsm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/hebrew/rcjhebltx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/hebrew/telav.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonabcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonabicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonachcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonachicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonahcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonahicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonalcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonalicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonamcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonamicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonarcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonabcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonabicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonachcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonachicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonahcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonahicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonalcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonalicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonamcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonamicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonarcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonabcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonabicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonachcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonachicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonahcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonahicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonalcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonalicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonamcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonamicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonarcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonabcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonabicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonachcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonachicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonahcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonahicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonalcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonalicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonamcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonamicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonarcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonabcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonabicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonachcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonachicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonahcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonahicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonalcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonalicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonamcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonamicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonarcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcci.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcit.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcrb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcso.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcst.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tctt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcui.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcvi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcvt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwona/cs-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierchcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierchicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierhcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierhicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierlcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierlicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriermcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriermicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierchcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierchicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierhcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierhicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierlcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierlicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriermcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriermicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/ex-iwona/ex-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/exp-iwona/exp-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/greek-iwona/greek-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/mi-iwona/mi-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwona/qx-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierchcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierchicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierhcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierhicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierlcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierlicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriermcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriermicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/rm-iwona/rm-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/sy-iwona/sy-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t2a-iwona/t2a-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t2b-iwona/t2b-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t2c-iwona/t2c-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwona/t5-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierchcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierchicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierhcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierhicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierlcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierlicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriermcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriermicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierchcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierchicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierhcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierhicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierlcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierlicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriermcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriermicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/kurier/wncy-iwona/wncy-kurier.htf
+ texmf-dist/tex4ht/ht-fonts/alias/latex/lcmss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/labx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lass.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lati.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/latt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbcc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbrm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lccc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcrm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lctt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldcc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldrm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-ec/ec-lm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-qx/lm-qx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-qx/qx-lm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmin/cminch.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmrm/cmr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmsc/cmcscsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csin/csinch.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbxsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbxti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/cssl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssbx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssdc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssq.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssqi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csu.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/csitt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/cssltt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/cstcsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/csvtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-plrm/plss.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-t5psn/vntcsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/cork-lmtcs.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-lmtcs.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-lmvt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/texnansi-lm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/texnansi-lmtcs.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/t5-lm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/t5-lmtcs.htf
+ texmf-dist/tex4ht/ht-fonts/alias/lm/ts1-.htf
+ texmf-dist/tex4ht/ht-fonts/alias/marvosym/fmvri8x.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathpple/eurbo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathpple/eurmo.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7m.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7y.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7m.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7y.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathtime/blex.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathtime/blmi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathtime/blsy.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtex.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtmi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtsy.htf
+ texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtsyn.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pazo/fplmbb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7m.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7y.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7m.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7y.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plbxsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plbxti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plcsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/pldunh.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plex.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plff.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plfi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plitt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plmi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plsl.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plsltt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plsy.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plti.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/pltt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plu.htf
+ texmf-dist/tex4ht/ht-fonts/alias/pl/plvtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/polish/antt/antpb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/polish/antt/antpbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/polish/antt/antpri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/polish/antt/anttb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/polish/antt/anttri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmbi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmr.htf
+ texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmri.htf
+ texmf-dist/tex4ht/ht-fonts/alias/sw/arial.htf
+ texmf-dist/tex4ht/ht-fonts/alias/sw/cour.htf
+ texmf-dist/tex4ht/ht-fonts/alias/sw/times.htf
+ texmf-dist/tex4ht/ht-fonts/alias/times.htf
+ texmf-dist/tex4ht/ht-fonts/alias/times/ptmr7t.htf
+ texmf-dist/tex4ht/ht-fonts/alias/tipa/tipx.htf
+ texmf-dist/tex4ht/ht-fonts/alias/tipa/xipa.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbsssc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbttsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xsssc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xttsc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbex.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/txex.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/txmi.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/txmia.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsy.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsya.htf
+ texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsyb.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/arevvn/fav.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbo8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchro8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txbtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txtt.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/classicovn/uop.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/cmbrightvn/vncm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/comicsansvn/comic.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/concretevn/vncc.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/garamondvn/ugm.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/grotesqvn/ugq.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnbi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnri8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprbi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprri8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1b8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1bc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1bi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1r8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1rc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1ri8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrbi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrri8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsbi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsri8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-ant.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcbcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcbicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttclcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttclicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttlcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttlicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttmcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttmicap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttrcap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttricap.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/fplrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagd8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagdc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagdo8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagk8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagkc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagko8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkd8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdo8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkl8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubklc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkli8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubklo8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrbo8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrro8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvbo8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvro8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbo8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncri8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncro8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbo8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplri8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplro8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmb8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbo8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmr8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmrc8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmri8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmro8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uzcmi8v.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/utopiavn/put.htf
+ texmf-dist/tex4ht/ht-fonts/alias/vntex/vnr/vn.htf
+ texmf-dist/tex4ht/ht-fonts/ascii/manfnt/manfnt.htf
+ texmf-dist/tex4ht/ht-fonts/cp1256/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmbx.4es
+ texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmmi.4es
+ texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmti.4es
+ texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmtt.4es
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1201.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1202.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1203.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1204.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1205.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1206.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1207.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1208.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1209.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1210.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1211.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1212.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1213.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1214.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1215.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1216.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1217.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1218.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1219.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1220.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1221.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1222.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1223.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1224.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1225.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1226.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1227.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1228.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1229.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1230.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1231.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1232.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1233.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1234.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1235.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1236.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1237.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1238.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1239.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1240.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1241.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1242.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1243.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1244.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1245.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1246.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1247.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1248.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1249.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1250.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1251.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1252.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1253.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1254.htf
+ texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1255.htf
+ texmf-dist/tex4ht/ht-fonts/gb2312/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/gbk/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/html-speech/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/charset/uni/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/chess.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/chessf.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/cm/cminch.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/devanagari/dvng.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/euro/zpeur.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go1bla.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go1whi.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go2bla.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go2whi.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/ipa/wsuipa.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blex-bs.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blmi-bs.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blsy-bs.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtex-bs.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtmi-bs.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtsy-bs.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtsyn-bs.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bicigh.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bthh.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bthv.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/ps2mf/times-ps.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/qfonts/qcrr.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/sw/curr.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/sw/times-sw.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/tibetan/ctib.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xyatip.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xybsql.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xybtip.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xydash.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xyebut.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xymisc.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/2/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/iso8859/2/qfonts/qcrr.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cm/sauter/wnr.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cm/sauter/wnti.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmcbx.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmcbxti.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmccsc.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kminch.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmitt.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmr.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmtcsc.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/wncsc.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/5/lh/lh-t2a/larm.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/6/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/iso8859/7/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/iso8859/8/hebrew/hclassic.htf
+ texmf-dist/tex4ht/ht-fonts/iso8859/8/hebrew/jerus.htf
+ texmf-dist/tex4ht/ht-fonts/jsml/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/koi/8r/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/koi/8r/lh/lh-t2a/larm.htf
+ texmf-dist/tex4ht/ht-fonts/mozilla/charset/mnemonic/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/mozilla/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/ooffice/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/share/adobe/helvetic/phvr8z.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/symbol/cyrillic/xcmr.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/cyrillic/xcmti.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/hebrew/hclassic.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blex-bs.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blmi-bs.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blsy-bs.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtex-bs.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtmi-bs.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtsy-bs.htf
+ texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtsyn-bs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrr7t.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrrc7t.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrro8r.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrro8u.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pplrc8r.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/helvetic/ptmb8z.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/helvetic/ptmrc8z.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zpsycmrv.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zptmcmr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zptmcmrm.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zpzccmry.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplb9c.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplrc9t.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplri9t.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/symbol/psyr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmr8c.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrc7t.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmri7t.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmro.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrre.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/rptmrrn.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/adobe/zapfding/pzdr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/ae/aecsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/ams/cyrillic/wncyr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/euex.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eufb.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eufm.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eusb.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eusm.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/ams/symbols/msam.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/ams/symbols/msbm.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/arabi/aehor.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/arabi/nazli.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/bitstrea/charter/bchr8t.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cbgreek/grmc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cbgreek/grmn.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/unicode/chess/chess.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/chess/chessf.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1201.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1202.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1203.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1204.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1205.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1206.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1207.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1208.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1209.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1210.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1211.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1212.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1213.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1214.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1215.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1216.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1217.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1218.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1219.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1220.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1221.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1222.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1223.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1224.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1225.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1226.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1227.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1228.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1229.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1230.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1231.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1232.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1233.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1234.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1235.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1236.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1237.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1238.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1239.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1240.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1241.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1242.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1243.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1244.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1245.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1246.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1247.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1248.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1249.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1250.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1251.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1252.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1253.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1254.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1255.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong01.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong02.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong03.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong04.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong05.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong06.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong07.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong08.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong09.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong10.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong11.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong12.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong13.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong14.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong15.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong16.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong17.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong18.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong19.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong20.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong21.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong22.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong23.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong24.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong25.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong26.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong27.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong28.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong29.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong30.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong31.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong32.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong33.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong34.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong35.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong36.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong37.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong38.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong39.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong40.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong41.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong42.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong43.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong44.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong45.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong46.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong47.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong48.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong49.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong50.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong51.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong52.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong53.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong54.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong55.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong56.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong57.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong58.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong59.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong60.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong61.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong62.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong63.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong64.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong65.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong66.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong67.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong68.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong69.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong70.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong71.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong72.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong73.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong74.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong75.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong76.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong77.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong78.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong79.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong80.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong81.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong82.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong83.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong84.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong85.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong86.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong87.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong88.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong89.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong90.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong91.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong92.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong93.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong94.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong25.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong27.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong28.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong32.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong35.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong90.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong92.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong93.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong94.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cm/cmex.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cm/cmmi.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cm/cmsy.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cm/cmtcsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cm/cmti.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/concrete/cccsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cs/cscsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cs/csr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/currency/feymr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmcbx.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmcbxti.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmccsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/dstroke/dsrom.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/dstroke/esint.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/greek/ibygrk/fibr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/hebrew/cjhebltx.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/hebrew/crml.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/hebrew/fr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/hebrew/hclassic.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/hebrew/jerus.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/hebrew/redis.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shold.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shscr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shstk.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/cs-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/cs-iwonacap.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/ec-iwonacap.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/ex-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/exp-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/greek-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/mi-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/qx-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/qx-iwonacap.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/rm-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/sy-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2a-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2b-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2c-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/t5-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/t5-iwonacap.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/texnansi-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/texnansi-iwonacap.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/iwona/wncy-iwona.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/jknappen/tc/tcrm.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/latex/lasy.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/latex/lcircle.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/latex/line.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lh/lh-t2a/lacc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lh/lh-t2a/larm.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-ec.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-qxtt.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmin.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmit.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmitt.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmrm.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmtt.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-csin.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-csrm.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cssc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cstt.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plin.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plit.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plitt.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plrm.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-pltt.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-t5psn.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-t5.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-texnansi.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-ts1.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/cork-.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/cork-lmcs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/qx-lmcs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/qx-lmtt.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/texnansi-lmcs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/lm/t5-lmcsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/marvosym/fmvr8x.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/math/rsfs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blex-bs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blmi-bs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blsy-bs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtex-bs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtmi-bs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtsy-bs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtsyn-bs.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/mflogo/logo.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/misc/cmman.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/misc/ifsym.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/misc/wasy.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/pl/plbsy.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/pl/plinch.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/pl/pltcsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/pl/pltex.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/polish/antt/antpr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/polish/antt/anttr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/public/bbding.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/qfonts/qbkr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/qfonts/qcrr.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/qfonts/qzcmi.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/stmaryrd/stmary.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/tibetan/ctib.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/tipa/tipa.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/tipa/xipx.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/txfonts/t1x.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/txfonts/t1xsc.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txb.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbexa.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbmia.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbsy.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbsyc.htf
+ texmf-dist/tex4ht/ht-fonts/viqr/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/viscii/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/win/1251/charset/unicode.4hf
+ texmf-dist/tex4ht/ht-fonts/win/1251/cm/sauter/wnti.htf
+ texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmcbx.htf
+ texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmcbxti.htf
+ texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmccsc.htf
+ texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/wncsc.htf
+ texmf-dist/tex4ht/ht-fonts/win/1251/lh/lh-t2a/larm.htf
+ texmf-dist/tex4ht/xttl/docbook.4xt
+ texmf-dist/tex4ht/xttl/htspk.4xt
+ texmf-dist/tex4ht/xttl/jsml.4xt
+ texmf-dist/tex4ht/xttl/oo-math.4xt
+ texmf-dist/tex4ht/xttl/oo-text.4xt
+catalogue-version
+catalogue-date 2007-07-10 10:54:39 +0200
+catalogue-ctan /support/TeX4ht
+catalogue-license lppl
+
+name texbytopic
+category Documentation
+revision 5126
+docfiles size=2274754
+ texmf-doc/doc/english/texbytopic/README
+ texmf-doc/doc/english/texbytopic/TeXbyTopic.pdf
+ texmf-doc/doc/english/texbytopic/TeXbyTopic.tex
+ texmf-doc/doc/english/texbytopic/figflow.tex
+ texmf-doc/doc/english/texbytopic/glossary.tex
+ texmf-doc/doc/english/texbytopic/tables.tex
+ texmf-doc/doc/english/texbytopic/tex.bib
+
+name texdraw
+category Package
+revision 613
+shortdesc Graphical macros, using embedded PostScript.
+longdesc TeXdraw is a set of macro definitions for TeX, which allow the
+longdesc user to produce PostScript drawings from within TeX and LaTeX.
+longdesc TeXdraw has been designed to be extensible. Drawing
+longdesc ‘segments’ are relocatable, self-contained units. Using a
+longdesc combination of the TeX’s grouping mechanism and the
+longdesc gsave/grestore mechanism in PostScript, drawing segments allow
+longdesc for local changes to the scaling and line parameters. Using
+longdesc TeX’s macro definition capability, new drawing commands can
+longdesc be constructed from drawing segments.
+docfiles size=575351
+ texmf-dist/doc/texdraw/getopt.c
+ texmf-dist/doc/texdraw/getopt.h
+ texmf-dist/doc/texdraw/texdraw.cps
+ texmf-dist/doc/texdraw/texdraw.fns
+ texmf-dist/doc/texdraw/texdraw.pdf
+ texmf-dist/doc/texdraw/texdraw.texi
+ texmf-dist/doc/texdraw/texdraw_1.html
+ texmf-dist/doc/texdraw/texdraw_10.html
+ texmf-dist/doc/texdraw/texdraw_11.html
+ texmf-dist/doc/texdraw/texdraw_2.html
+ texmf-dist/doc/texdraw/texdraw_3.html
+ texmf-dist/doc/texdraw/texdraw_4.html
+ texmf-dist/doc/texdraw/texdraw_5.html
+ texmf-dist/doc/texdraw/texdraw_6.html
+ texmf-dist/doc/texdraw/texdraw_7.html
+ texmf-dist/doc/texdraw/texdraw_8.html
+ texmf-dist/doc/texdraw/texdraw_9.html
+ texmf-dist/doc/texdraw/texdraw_foot.html
+ texmf-dist/doc/texdraw/texdraw_toc.html
+ texmf-dist/doc/texdraw/texi2dvi
+ texmf-dist/doc/texdraw/texindex.c
+ texmf-dist/doc/texdraw/txdexamp.latex
+ texmf-dist/doc/texdraw/txdexamp.tex
+runfiles size=27493
+ texmf-dist/tex/generic/texdraw/blockdiagram.tex
+ texmf-dist/tex/generic/texdraw/texdraw.sty
+ texmf-dist/tex/generic/texdraw/texdraw.tex
+ texmf-dist/tex/generic/texdraw/txdps.tex
+ texmf-dist/tex/generic/texdraw/txdtools.tex
+catalogue-version
+catalogue-date 2007-01-16 09:34:54 +0100
+catalogue-ctan /graphics/texdraw
+catalogue-license dfsg
+
+name texilikecover
+category Package
+revision 4295
+runfiles size=948
+ texmf-dist/tex/latex/texilikecover/texilikecover.sty
+
+name texinfo
+category Package
+revision 4866
+shortdesc Texinfo documentation system.
+longdesc Info is the preferred format for documentation in the GNU
+longdesc project; the format may be used to produce online or printed
+longdesc output from a single source. The Texinfo macros may be used to
+longdesc produce printable output using TeX; other programs in the
+longdesc distribution offer online interactive use (with hypertext
+longdesc linkages in some cases). Note that a developers’ snapshot of
+longdesc the latest working version of the Texinfo macros may be found
+longdesc in the Texinfo ‘latest’ package.
+runfiles size=309955
+ texmf-dist/tex/texinfo/texinfo.ini
+ texmf-dist/tex/texinfo/texinfo.tex
+ texmf-dist/tex/texinfo/txi-cs.tex
+ texmf-dist/tex/texinfo/txi-de.tex
+ texmf-dist/tex/texinfo/txi-en.tex
+ texmf-dist/tex/texinfo/txi-es.tex
+ texmf-dist/tex/texinfo/txi-fr.tex
+ texmf-dist/tex/texinfo/txi-it.tex
+ texmf-dist/tex/texinfo/txi-nl.tex
+ texmf-dist/tex/texinfo/txi-no.tex
+ texmf-dist/tex/texinfo/txi-pl.tex
+ texmf-dist/tex/texinfo/txi-pt.tex
+ texmf-dist/tex/texinfo/txi-tr.tex
+catalogue-version 4.11
+catalogue-date 2007-09-11 00:50:31 +0200
+catalogue-ctan /macros/texinfo/texinfo
+catalogue-license gpl
+
+name texlive-common
+category Documentation
+revision 11
+srcfiles size=4694
+ texmf-doc/source/general/texlive-common/examples/ex5.tex
+ texmf-doc/source/general/texlive-common/examples/ex6.tex
+ texmf-doc/source/general/texlive-common/examples/ex6a.tex
+ texmf-doc/source/general/texlive-common/examples/ex6b.tex
+ texmf-doc/source/general/texlive-common/examples/ex6c.tex
+
+name texlive-cz
+category Documentation
+revision 3797
+docfiles size=1150690
+ texmf-doc/doc/czechslovak/texlive-cz/cmsy9-43.png
+ texmf-doc/doc/czechslovak/texlive-cz/cmsy9-53.png
+ texmf-doc/doc/czechslovak/texlive-cz/live.css
+ texmf-doc/doc/czechslovak/texlive-cz/live.html
+ texmf-doc/doc/czechslovak/texlive-cz/live.pdf
+ texmf-doc/doc/czechslovak/texlive-cz/tex-live.css
+srcfiles size=172632
+ texmf-doc/source/czechslovak/texlive-cz/Makefile
+ texmf-doc/source/czechslovak/texlive-cz/cs-tex-live.sty
+ texmf-doc/source/czechslovak/texlive-cz/csquote.sty
+ texmf-doc/source/czechslovak/texlive-cz/live.tex
+ texmf-doc/source/czechslovak/texlive-cz/live4ht.cfg
+
+name texlive-en
+category Documentation
+revision 5377
+docfiles size=1084116
+ texmf-doc/doc/english/texlive-en/live.css
+ texmf-doc/doc/english/texlive-en/live.html
+ texmf-doc/doc/english/texlive-en/live.pdf
+ texmf-doc/doc/english/texlive-en/tex-live.css
+srcfiles size=885235
+ texmf-doc/source/english/texlive-en/Makefile
+ texmf-doc/source/english/texlive-en/README
+ texmf-doc/source/english/texlive-en/archive/bv-live.tex
+ texmf-doc/source/english/texlive-en/archive/bvoutln.sty
+ texmf-doc/source/english/texlive-en/archive/changemail
+ texmf-doc/source/english/texlive-en/archive/l.pl
+ texmf-doc/source/english/texlive-en/archive/live-2003.tex
+ texmf-doc/source/english/texlive-en/archive/live-2004.tex
+ texmf-doc/source/english/texlive-en/archive/live-2005.tex
+ texmf-doc/source/english/texlive-en/archive/live-tl7.tex
+ texmf-doc/source/english/texlive-en/archive/live4ht.cfg-2004
+ texmf-doc/source/english/texlive-en/archive/mod.pl
+ texmf-doc/source/english/texlive-en/archive/nocites.tex
+ texmf-doc/source/english/texlive-en/archive/picture.tex
+ texmf-doc/source/english/texlive-en/archive/split.pl
+ texmf-doc/source/english/texlive-en/archive/status.pl
+ texmf-doc/source/english/texlive-en/archive/tex-live.bib
+ texmf-doc/source/english/texlive-en/archive/tex-live.bst
+ texmf-doc/source/english/texlive-en/archive/tex-live.sty-2003
+ texmf-doc/source/english/texlive-en/archive/tex-live.sty-2004
+ texmf-doc/source/english/texlive-en/archive/tex-live.sty-2005
+ texmf-doc/source/english/texlive-en/archive/texlive.pl
+ texmf-doc/source/english/texlive-en/live.tex
+ texmf-doc/source/english/texlive-en/live4ht.cfg
+ texmf-doc/source/english/texlive-en/tex-live.css
+ texmf-doc/source/english/texlive-en/tex-live.sty
+
+name texlive-fr
+category Documentation
+revision 3795
+docfiles size=1308151
+ texmf-doc/doc/french/texlive-fr/live.css
+ texmf-doc/doc/french/texlive-fr/live.html
+ texmf-doc/doc/french/texlive-fr/live.pdf
+ texmf-doc/doc/french/texlive-fr/tex-live.css
+srcfiles size=172657
+ texmf-doc/source/french/texlive-fr/Makefile
+ texmf-doc/source/french/texlive-fr/live.tex
+ texmf-doc/source/french/texlive-fr/live4ht.cfg
+ texmf-doc/source/french/texlive-fr/tex-live.css
+ texmf-doc/source/french/texlive-fr/tex-live.sty
+
+name texlive-ge
+category Documentation
+revision 3818
+docfiles size=1367189
+ texmf-doc/doc/german/texlive-ge/live.css
+ texmf-doc/doc/german/texlive-ge/live.html
+ texmf-doc/doc/german/texlive-ge/live.pdf
+ texmf-doc/doc/german/texlive-ge/tex-live.css
+srcfiles size=203842
+ texmf-doc/source/german/texlive-ge/Makefile
+ texmf-doc/source/german/texlive-ge/cmsy10-40.png
+ texmf-doc/source/german/texlive-ge/live.tex
+ texmf-doc/source/german/texlive-ge/live4ht.cfg
+ texmf-doc/source/german/texlive-ge/tex-live.sty
+
+name texlive-pl
+category Documentation
+revision 3900
+docfiles size=1143357
+ texmf-doc/doc/polish/texlive-pl/live.css
+ texmf-doc/doc/polish/texlive-pl/live.html
+ texmf-doc/doc/polish/texlive-pl/live.pdf
+ texmf-doc/doc/polish/texlive-pl/tex-live.css
+srcfiles size=196429
+ texmf-doc/source/polish/texlive-pl/Makefile
+ texmf-doc/source/polish/texlive-pl/live.tex
+ texmf-doc/source/polish/texlive-pl/live4ht.cfg
+ texmf-doc/source/polish/texlive-pl/tex-livep.sty
+ texmf-doc/source/polish/texlive-pl/tex4ht.env
+
+name texlive-ru
+category Documentation
+revision 3752
+docfiles size=1587265
+ texmf-doc/doc/russian/texlive-ru/live.css
+ texmf-doc/doc/russian/texlive-ru/live.html
+ texmf-doc/doc/russian/texlive-ru/live.pdf
+ texmf-doc/doc/russian/texlive-ru/tex-live.css
+srcfiles size=150570
+ texmf-doc/source/russian/texlive-ru/Makefile
+ texmf-doc/source/russian/texlive-ru/live.tex
+ texmf-doc/source/russian/texlive-ru/live4ht.cfg
+ texmf-doc/source/russian/texlive-ru/tex-live-rus.sty
+
+name texlive-zh-cn
+category Documentation
+revision 3934
+docfiles size=586601
+ texmf-doc/doc/chinese/texlive-zh-cn/live.pdf
+srcfiles size=151843
+ texmf-doc/source/chinese/texlive-zh-cn/Makefile
+ texmf-doc/source/chinese/texlive-zh-cn/README-live.ZH-CN
+ texmf-doc/source/chinese/texlive-zh-cn/live.tex
+ texmf-doc/source/chinese/texlive-zh-cn/tex-live.sty
+ texmf-doc/source/chinese/texlive-zh-cn/xcp.py
+
+name texlogos
+category Package
+revision 1378
+shortdesc Ready-to-use LaTeX logos.
+longdesc TeXlogos defines an assortment of frequently used logos not
+longdesc contained in base LaTeX itself. The MetaFont, MetaPost, AMS,
+longdesc BibTeX and SliTeX logos are defined, as long as you have the
+longdesc appropriate CM/Logo/AMS fonts. Currency symbols Euro, Cent,
+longdesc Yen, Won and Naira are defined so as not to need TS1-encoded
+longdesc fonts. Also defined are the C++ logo, with the ‘+’ signs
+longdesc properly positioned, and the logo of the Vienna University
+longdesc Business Administration Center (BWZ).
+runfiles size=4479
+ texmf-dist/tex/latex/texlogos/texlogos.sty
+catalogue-version 1.3.1
+catalogue-date 2007-01-16 09:34:54 +0100
+catalogue-ctan /macros/latex/contrib/texlogos/texlogos.sty
+catalogue-license lppl
+
+name texmate
+category Package
+revision 2181
+docfiles size=329698
+ texmf-dist/doc/latex/texmate/README
+ texmf-dist/doc/latex/texmate/texmate2manual.pdf
+ texmf-dist/doc/latex/texmate/texmate2manual.tex
+srcfiles size=30144
+ texmf-dist/source/latex/texmate/texmate.dtx
+ texmf-dist/source/latex/texmate/texmate.ins
+runfiles size=27318
+ texmf-dist/tex/latex/texmate/texmate.sty
+
+name texpower
+category Package
+revision 5037
+shortdesc Create dynamic online presentations with LaTeX.
+longdesc TeXPower is a bundle of packages intended to provide an all-
+longdesc inclusive environment for designing pdf screen presentations to
+longdesc be viewed in full-screen mode, especially for projecting
+longdesc `online' with a video beamer. For some of its core functions,
+longdesc it uses code derived from ppower4 packages. It is, however, not
+longdesc a complete environment in itself: it relies on an existing
+longdesc class for preparing slides (such as foiltex or seminar) or
+longdesc another package such as pdfslide.
+depend tpslifonts
+docfiles size=982473
+ texmf-dist/doc/latex/texpower/00readme.txt
+ texmf-dist/doc/latex/texpower/01install.txt
+ texmf-dist/doc/latex/texpower/02changes.txt
+ texmf-dist/doc/latex/texpower/FAQ-display.tex
+ texmf-dist/doc/latex/texpower/FAQ-printout.tex
+ texmf-dist/doc/latex/texpower/MakeExamples.sh
+ texmf-dist/doc/latex/texpower/__TPcfg.tex
+ texmf-dist/doc/latex/texpower/__TPindexing.tex
+ texmf-dist/doc/latex/texpower/__TPpreamble.tex
+ texmf-dist/doc/latex/texpower/bckwrdexample.tex
+ texmf-dist/doc/latex/texpower/bgndexample.tex
+ texmf-dist/doc/latex/texpower/contrib/00readme.txt
+ texmf-dist/doc/latex/texpower/contrib/config.landscapeplus
+ texmf-dist/doc/latex/texpower/contrib/tpmultiinc.tar
+ texmf-dist/doc/latex/texpower/divexample.tex
+ texmf-dist/doc/latex/texpower/dummy.java
+ texmf-dist/doc/latex/texpower/fancyexample.tex
+ texmf-dist/doc/latex/texpower/fig-1.mps
+ texmf-dist/doc/latex/texpower/fig-2.mps
+ texmf-dist/doc/latex/texpower/fig-3.mps
+ texmf-dist/doc/latex/texpower/foilsdemo.tex
+ texmf-dist/doc/latex/texpower/fulldemo.tex
+ texmf-dist/doc/latex/texpower/hilitexample.tex
+ texmf-dist/doc/latex/texpower/ifmslidemo.tex
+ texmf-dist/doc/latex/texpower/manual.pdf details="Manual"
+ texmf-dist/doc/latex/texpower/manual.tex
+ texmf-dist/doc/latex/texpower/mathexample.tex
+ texmf-dist/doc/latex/texpower/panelexample.tex
+ texmf-dist/doc/latex/texpower/parexample.tex
+ texmf-dist/doc/latex/texpower/pdfscrdemo.tex
+ texmf-dist/doc/latex/texpower/pdfslidemo.tex
+ texmf-dist/doc/latex/texpower/picexample.tex
+ texmf-dist/doc/latex/texpower/picltxexample.tex
+ texmf-dist/doc/latex/texpower/picpsexample.tex
+ texmf-dist/doc/latex/texpower/pp4sldemo.tex
+ texmf-dist/doc/latex/texpower/prosperdemo.tex
+ texmf-dist/doc/latex/texpower/seminardemo.tex
+ texmf-dist/doc/latex/texpower/simpledemo.tex
+ texmf-dist/doc/latex/texpower/slidesdemo.tex
+ texmf-dist/doc/latex/texpower/spanelexample.tex
+ texmf-dist/doc/latex/texpower/tabexample.tex
+ texmf-dist/doc/latex/texpower/tpslifonts.zip
+ texmf-dist/doc/latex/texpower/tpslifonts/00readme.txt
+ texmf-dist/doc/latex/texpower/tpslifonts/01install.txt
+ texmf-dist/doc/latex/texpower/tpslifonts/Makefile
+ texmf-dist/doc/latex/texpower/tpslifonts/slifontsexample.tex
+ texmf-dist/doc/latex/texpower/tpslifonts/tpslifonts.dtx
+ texmf-dist/doc/latex/texpower/tpslifonts/tpslifonts.ins
+ texmf-dist/doc/latex/texpower/verbexample.tex
+srcfiles size=686762
+ texmf-dist/source/latex/texpower/Makefile
+ texmf-dist/source/latex/texpower/powersem.dtx
+ texmf-dist/source/latex/texpower/texpower-addons.dtx
+ texmf-dist/source/latex/texpower/texpower-cfg.dtx
+ texmf-dist/source/latex/texpower/texpower-doc.dtx
+ texmf-dist/source/latex/texpower/texpower.dtx
+ texmf-dist/source/latex/texpower/tpbundle.ins
+ texmf-dist/source/latex/texpower/tplists.dtx
+runfiles size=252567
+ texmf-dist/tex/latex/texpower/automata.sty
+ texmf-dist/tex/latex/texpower/fixseminar.sty
+ texmf-dist/tex/latex/texpower/powersem.cls
+ texmf-dist/tex/latex/texpower/texpower.sty
+ texmf-dist/tex/latex/texpower/tpcolors.cfg
+ texmf-dist/tex/latex/texpower/tplists.sty
+ texmf-dist/tex/latex/texpower/tpoptions.cfg
+ texmf-dist/tex/latex/texpower/tppstcol.sty
+ texmf-dist/tex/latex/texpower/tpsem-a4.sty
+ texmf-dist/tex/latex/texpower/tpsettings.cfg
+catalogue-version 0.2
+catalogue-date 2007-01-16 09:34:54 +0100
+catalogue-ctan /macros/latex/contrib/texpower
+catalogue-license gpl
+
+name texshade
+category Package
+revision 4493
+shortdesc Package for setting nucleotide and peptide alignments.
+longdesc TeXshade is an alignment shading software completely written in
+longdesc TeX/LaTeX which can process multiple sequence alignments in the
+longdesc .MSF and the .ALN file format. It provides in addition to
+longdesc common shading algorithms special shading modes featuring
+longdesc functional aspects, e.g. charge or hydropathy, and a plenitude
+longdesc of commands for handling shading colours, text styles, labels,
+longdesc legends and even allows the user to define completely new
+longdesc shading modes. TeXshade combines highest flexibility and the
+longdesc habitual TeX output quality—with reasonable time expenditure.
+docfiles size=841084
+ texmf-dist/doc/latex/texshade/AQP1.phd
+ texmf-dist/doc/latex/texshade/AQP1.top
+ texmf-dist/doc/latex/texshade/AQP2spec.ALN
+ texmf-dist/doc/latex/texshade/AQPDNA.MSF
+ texmf-dist/doc/latex/texshade/AQP_HMM.ext
+ texmf-dist/doc/latex/texshade/AQP_HMM.sgl
+ texmf-dist/doc/latex/texshade/AQPpro.MSF
+ texmf-dist/doc/latex/texshade/README
+ texmf-dist/doc/latex/texshade/ciliate.cod
+ texmf-dist/doc/latex/texshade/standard.cod
+ texmf-dist/doc/latex/texshade/texshade.pdf details="Package documentation:" language="en"
+ texmf-dist/doc/latex/texshade/tsfaq.pdf details="FAQs about TeXshade:" language="en"
+ texmf-dist/doc/latex/texshade/tsfaq.tex
+srcfiles size=792677
+ texmf-dist/source/latex/texshade/texshade.dtx
+ texmf-dist/source/latex/texshade/texshade.ins
+runfiles size=457651
+ texmf-dist/tex/latex/texshade/texshade.def
+ texmf-dist/tex/latex/texshade/texshade.sty
+catalogue-version 1.17
+catalogue-date 2007-06-20 19:42:20 +0200
+catalogue-ctan /macros/latex/contrib/texshade
+catalogue-license gpl
+
+name texsis
+category Package
+revision 626
+shortdesc Plain TeX macros for Physicists.
+longdesc TeXsis is a TeX macro package which provides useful features
+longdesc for typesetting research papers and related documents. For
+longdesc example, it includes support specifically for: Automatic
+longdesc numbering of equations, figures, tables and references;
+longdesc Simplified control of type sizes, line spacing, footnotes,
+longdesc running headlines and footlines, and tables of contents,
+longdesc figures and tables; Specialized document formats for research
+longdesc papers, preprints and ``e-prints,'' conference proceedings,
+longdesc theses, books, referee reports, letters, and memoranda;
+longdesc Simplified means of constructing an index for a book or thesis;
+longdesc Easy to use double column formatting; Specialized environments
+longdesc for lists, theorems and proofs, centered or non-justified text,
+longdesc and listing computer code; Specialized macros for easily
+longdesc constructing ruled tables. TeXsis was originally developed for
+longdesc physicists, but others may also find it useful. It is
+longdesc completely compatible with Plain TeX.
+docfiles size=449236
+ texmf-dist/doc/texsis/base/COPYING
+ texmf-dist/doc/texsis/base/Example.tex
+ texmf-dist/doc/texsis/base/Fonts.tex
+ texmf-dist/doc/texsis/base/INSTALL
+ texmf-dist/doc/texsis/base/Install.tex
+ texmf-dist/doc/texsis/base/MANIFEST
+ texmf-dist/doc/texsis/base/Manual.fgl
+ texmf-dist/doc/texsis/base/Manual.ref
+ texmf-dist/doc/texsis/base/Manual.tbl
+ texmf-dist/doc/texsis/base/Manual.tex
+ texmf-dist/doc/texsis/base/NEWS
+ texmf-dist/doc/texsis/base/README
+ texmf-dist/doc/texsis/base/TXSapxF.doc
+ texmf-dist/doc/texsis/base/TXScover.doc
+ texmf-dist/doc/texsis/base/TXSdcol.doc
+ texmf-dist/doc/texsis/base/TXSdoc.doc
+ texmf-dist/doc/texsis/base/TXSdoc0.doc
+ texmf-dist/doc/texsis/base/TXSdocM.doc
+ texmf-dist/doc/texsis/base/TXSend.doc
+ texmf-dist/doc/texsis/base/TXSenvmt.doc
+ texmf-dist/doc/texsis/base/TXSeqns.doc
+ texmf-dist/doc/texsis/base/TXSfigs.doc
+ texmf-dist/doc/texsis/base/TXSfmts.doc
+ texmf-dist/doc/texsis/base/TXSfonts.doc
+ texmf-dist/doc/texsis/base/TXSinstl.doc
+ texmf-dist/doc/texsis/base/TXSintro.doc
+ texmf-dist/doc/texsis/base/TXSletr.doc
+ texmf-dist/doc/texsis/base/TXSmisc.doc
+ texmf-dist/doc/texsis/base/TXSprns.doc
+ texmf-dist/doc/texsis/base/TXSrefs.doc
+ texmf-dist/doc/texsis/base/TXSrevs.doc
+ texmf-dist/doc/texsis/base/TXSruled.doc
+ texmf-dist/doc/texsis/base/TXSsects.doc
+ texmf-dist/doc/texsis/base/TXSsite.000
+ texmf-dist/doc/texsis/base/TXSsymb.doc
+ texmf-dist/doc/texsis/base/TXStags.doc
+ texmf-dist/doc/texsis/base/index.tex
+ texmf-dist/doc/texsis/base/letr
+ texmf-dist/doc/texsis/base/penguin.eps
+ texmf-dist/doc/texsis/base/penguin2.eps
+ texmf-dist/doc/texsis/base/texsis.1
+ texmf-dist/doc/texsis/base/texsis.el
+ texmf-dist/doc/texsis/base/texsis.lsm
+runfiles size=497221
+ texmf-dist/bibtex/bst/texsis/texsis.bst
+ texmf-dist/tex/texsis/base/AIP.txs
+ texmf-dist/tex/texsis/base/CVformat.txs
+ texmf-dist/tex/texsis/base/Elsevier.txs
+ texmf-dist/tex/texsis/base/Exam.txs
+ texmf-dist/tex/texsis/base/Formletr.txs
+ texmf-dist/tex/texsis/base/IEEE.txs
+ texmf-dist/tex/texsis/base/PhysRev.txs
+ texmf-dist/tex/texsis/base/Spanish.txs
+ texmf-dist/tex/texsis/base/Swedish.txs
+ texmf-dist/tex/texsis/base/TXSconts.tex
+ texmf-dist/tex/texsis/base/TXSdcol.tex
+ texmf-dist/tex/texsis/base/TXSenvmt.tex
+ texmf-dist/tex/texsis/base/TXSeqns.tex
+ texmf-dist/tex/texsis/base/TXSfigs.tex
+ texmf-dist/tex/texsis/base/TXSfmts.tex
+ texmf-dist/tex/texsis/base/TXSfonts.tex
+ texmf-dist/tex/texsis/base/TXShead.tex
+ texmf-dist/tex/texsis/base/TXSinit.tex
+ texmf-dist/tex/texsis/base/TXSletr.tex
+ texmf-dist/tex/texsis/base/TXSmacs.tex
+ texmf-dist/tex/texsis/base/TXSmemo.tex
+ texmf-dist/tex/texsis/base/TXSprns.tex
+ texmf-dist/tex/texsis/base/TXSrefs.tex
+ texmf-dist/tex/texsis/base/TXSruled.tex
+ texmf-dist/tex/texsis/base/TXSsects.tex
+ texmf-dist/tex/texsis/base/TXSsite.tex
+ texmf-dist/tex/texsis/base/TXSsymb.tex
+ texmf-dist/tex/texsis/base/TXStags.tex
+ texmf-dist/tex/texsis/base/TXStitle.tex
+ texmf-dist/tex/texsis/base/Tablebod.txs
+ texmf-dist/tex/texsis/base/WorldSci.txs
+ texmf-dist/tex/texsis/base/color.txs
+ texmf-dist/tex/texsis/base/nuclproc.txs
+ texmf-dist/tex/texsis/base/printfont.txs
+ texmf-dist/tex/texsis/base/spine.txs
+ texmf-dist/tex/texsis/base/texsis.tex
+ texmf-dist/tex/texsis/base/thesis.txs
+ texmf-dist/tex/texsis/base/twin.txs
+ texmf-dist/tex/texsis/config/texsis.ini
+catalogue-version 2.18
+catalogue-date 2006-12-11 00:37:24 +0100
+catalogue-ctan /macros/texsis
+catalogue-license lppl
+
+name textcase
+category Package
+revision 1382
+shortdesc Case conversion ignoring mathematics, etc.
+longdesc The textcase package offers commands \MakeTextUppercase and
+longdesc \MakeTextLowercase are similar to the standard \MakeUppercase
+longdesc and \MakeLowercase, but they do not change the case of any
+longdesc sections of mathematics, or the arguments of \cite, \label and
+longdesc \ref commands within the argument. A further command
+longdesc \NoCaseChange does nothing but suppress case change within its
+longdesc argument, so to force uppercase of a section including an
+longdesc environment, one might say:
+longdesc \MakeTextUppercase{...\NoCaseChange{\begin{foo}}
+longdesc ...\NoCaseChange{\end{foo}}...}
+docfiles size=170965
+ texmf-dist/doc/latex/textcase/README details="Readme"
+ texmf-dist/doc/latex/textcase/textcase.pdf details="Package documentation"
+srcfiles size=13771
+ texmf-dist/source/latex/textcase/textcase.dtx
+ texmf-dist/source/latex/textcase/textcase.ins
+runfiles size=2022
+ texmf-dist/tex/latex/textcase/textcase.sty
+catalogue-version
+catalogue-date 2007-03-01 12:49:13 +0100
+catalogue-ctan /macros/latex/contrib/textcase
+catalogue-license lppl
+
+name textfit
+category Package
+revision 2382
+shortdesc Fit text to a desired size.
+longdesc Package to support fitting of text to a given width or height
+longdesc by scaling the font. For example: \scaletowidth{3in}{This}.
+docfiles size=754
+ texmf-dist/doc/latex/textfit/catalog
+ texmf-dist/doc/latex/textfit/makefile
+ texmf-dist/doc/latex/textfit/manifest
+ texmf-dist/doc/latex/textfit/readme
+srcfiles size=9337
+ texmf-dist/source/latex/textfit/textfit.dtx
+ texmf-dist/source/latex/textfit/textfit.ins
+runfiles size=5070
+ texmf-dist/tex/latex/textfit/textfit.sty
+catalogue-version 5
+catalogue-date 2007-01-17 00:08:13 +0100
+catalogue-ctan /macros/latex/contrib/textfit
+catalogue-license dfsg
+
+name textmerg
+category Package
+revision 1487
+shortdesc Merge text in TeX and LaTeX.
+longdesc Useful, for example, in mail merge.
+docfiles size=3436
+ texmf-dist/doc/generic/textmerg/results.dat
+ texmf-dist/doc/generic/textmerg/silly.dat
+ texmf-dist/doc/generic/textmerg/tmexamp1.dvi
+ texmf-dist/doc/generic/textmerg/tmexamp1.tex
+ texmf-dist/doc/generic/textmerg/tmexamp2.dvi
+ texmf-dist/doc/generic/textmerg/tmexamp2.tex
+ texmf-dist/doc/generic/textmerg/tmexampp.tex
+srcfiles size=30360
+ texmf-dist/source/generic/textmerg/textmerg.drv
+ texmf-dist/source/generic/textmerg/textmerg.dtx
+ texmf-dist/source/generic/textmerg/textmerg.ins
+runfiles size=5160
+ texmf-dist/tex/generic/textmerg/textmerg.sty
+ texmf-dist/tex/generic/textmerg/textmerg.tex
+catalogue-version
+catalogue-date 2007-01-17 00:08:13 +0100
+catalogue-ctan /macros/latex/contrib/textmerg
+catalogue-license lppl
+
+name textopo
+category Package
+revision 1384
+shortdesc Annotated membrane protein topology plots.
+longdesc A LaTeX package for setting shaded and annotated membrane
+longdesc protein topology plots and helical wheels.
+docfiles size=465378
+ texmf-dist/doc/latex/textopo/AQP1.SP
+ texmf-dist/doc/latex/textopo/AQP1.hmm
+ texmf-dist/doc/latex/textopo/AQP1.phd
+ texmf-dist/doc/latex/textopo/AQP1.swp
+ texmf-dist/doc/latex/textopo/AQP1.tpo
+ texmf-dist/doc/latex/textopo/AQP2spec.ALN
+ texmf-dist/doc/latex/textopo/AQPpro.MSF
+ texmf-dist/doc/latex/textopo/AQPpro1.shd
+ texmf-dist/doc/latex/textopo/textopo.pdf details="Package documentation"
+ texmf-dist/doc/latex/textopo/textopo.txt details="Notes on the distribution"
+srcfiles size=497163
+ texmf-dist/source/latex/textopo/textopo.dtx
+ texmf-dist/source/latex/textopo/textopo.ins
+runfiles size=269103
+ texmf-dist/tex/latex/textopo/biotex.sty
+ texmf-dist/tex/latex/textopo/textopo.def
+ texmf-dist/tex/latex/textopo/textopo.sty
+catalogue-version 1.4
+catalogue-date 2007-01-17 00:08:13 +0100
+catalogue-ctan /macros/latex/contrib/textopo
+catalogue-license gpl
+
+name textpath
+category Package
+revision 3968
+shortdesc Setting text along a path with MetaPost.
+longdesc This MetaPost package provides macros to typeset text along a
+longdesc free path with the help of LaTeX, thereby preserving kerning
+longdesc and allowing for 8-bit input (accented characters).
+docfiles size=301347
+ texmf-dist/doc/metapost/textpath/CHANGES
+ texmf-dist/doc/metapost/textpath/README details="README file"
+ texmf-dist/doc/metapost/textpath/textpath.pdf details="Package documentation"
+ texmf-dist/doc/metapost/textpath/textpath.tex
+ texmf-dist/doc/metapost/textpath/textpathfigs.mp
+ texmf-dist/doc/metapost/textpath/textpathfigs.tex
+runfiles size=15689
+ texmf-dist/metapost/textpath/textpath.mp
+ texmf-dist/tex/latex/textpath/textpathmp.sty
+catalogue-version 1.6
+catalogue-date 2007-02-22 10:19:41 +0100
+catalogue-ctan /graphics/metapost/contrib/macros/textpath
+catalogue-license lppl
+
+name textpos
+category Package
+revision 4105
+shortdesc Place boxes at abitrary positions on the LaTeX page.
+longdesc A package to facilitate placement of boxes at absolute
+longdesc positions on the LaTeX page. There are several reasons why this
+longdesc might be useful, an important one being to help the creation of
+longdesc large-format conference posters.
+docfiles size=132412
+ texmf-dist/doc/latex/textpos/LICENCE
+ texmf-dist/doc/latex/textpos/README details="Package README"
+ texmf-dist/doc/latex/textpos/VERSION-1.7b
+ texmf-dist/doc/latex/textpos/examples/README details="Package README"
+ texmf-dist/doc/latex/textpos/examples/t1.tex
+ texmf-dist/doc/latex/textpos/examples/t2.tex
+ texmf-dist/doc/latex/textpos/examples/t3.tex
+ texmf-dist/doc/latex/textpos/examples/t4.tex
+ texmf-dist/doc/latex/textpos/examples/t5.tex
+ texmf-dist/doc/latex/textpos/examples/t6.tex
+ texmf-dist/doc/latex/textpos/examples/t7.tex
+ texmf-dist/doc/latex/textpos/examples/t8.tex
+ texmf-dist/doc/latex/textpos/style.css
+ texmf-dist/doc/latex/textpos/textpos-example.tex
+ texmf-dist/doc/latex/textpos/textpos.html details="Version history, etc. (HTML)"
+ texmf-dist/doc/latex/textpos/textpos.pdf details="Package documentation (PDF)"
+srcfiles size=57540
+ texmf-dist/source/latex/textpos/textpos.drv
+ texmf-dist/source/latex/textpos/textpos.dtx
+ texmf-dist/source/latex/textpos/textpos.ins
+runfiles size=11443
+ texmf-dist/tex/latex/textpos/textpos.sty
+catalogue-version 1.7a
+catalogue-date 2007-05-14 13:41:39 +0200
+catalogue-ctan /macros/latex/contrib/textpos
+catalogue-license gpl
+
+name thesis-titlepage-fhac
+category Package
+revision 1806
+shortdesc Little style to create a standard titlepage for diploma thesis
+longdesc Yet another thesis titlepage style: support of Fachhochschule
+longdesc Aachen (Standort Juelich)
+docfiles size=314453
+ texmf-dist/doc/latex/thesis-titlepage-fhac/LogoFH.eps
+ texmf-dist/doc/latex/thesis-titlepage-fhac/LogoFH.pdf
+ texmf-dist/doc/latex/thesis-titlepage-fhac/LogoFH.png
+ texmf-dist/doc/latex/thesis-titlepage-fhac/LogoFH.tif
+ texmf-dist/doc/latex/thesis-titlepage-fhac/README details="README file"
+ texmf-dist/doc/latex/thesis-titlepage-fhac/antrc_pre.bat
+ texmf-dist/doc/latex/thesis-titlepage-fhac/build.xml
+ texmf-dist/doc/latex/thesis-titlepage-fhac/diplomArbeit.ltx
+ texmf-dist/doc/latex/thesis-titlepage-fhac/doxygen_header.tex
+ texmf-dist/doc/latex/thesis-titlepage-fhac/fhACtitlepage.pdf details="Package documentation"
+ texmf-dist/doc/latex/thesis-titlepage-fhac/pdf_with_figbig_and_glossar.tco
+srcfiles size=24593
+ texmf-dist/source/latex/thesis-titlepage-fhac/doxygen_header.dtx.input
+ texmf-dist/source/latex/thesis-titlepage-fhac/fhACtitlepage.dtx
+ texmf-dist/source/latex/thesis-titlepage-fhac/fhACtitlepage.ins
+ texmf-dist/source/latex/thesis-titlepage-fhac/gloss_add.dtx.input
+runfiles size=9347
+ texmf-dist/tex/latex/thesis-titlepage-fhac/fhACtitlepage.cfg
+ texmf-dist/tex/latex/thesis-titlepage-fhac/fhACtitlepage.sty
+ texmf-dist/tex/latex/thesis-titlepage-fhac/figbib_add.sty
+ texmf-dist/tex/latex/thesis-titlepage-fhac/gloss_add.sty
+catalogue-version 0.1
+catalogue-date 2007-03-12 14:32:12 +0100
+catalogue-ctan /macros/latex/contrib/thesis-titlepage-fhAC
+catalogue-license lppl
+
+name thumb
+category Package
+revision 2382
+shortdesc Thumb marks in documents.
+longdesc Place thumb marks in books, manuals and reference maunals.
+docfiles size=208046
+ texmf-dist/doc/latex/thumb/README details="Package Readme"
+ texmf-dist/doc/latex/thumb/thumb.pdf details="Package documentation"
+srcfiles size=44947
+ texmf-dist/source/latex/thumb/thumb.dtx
+ texmf-dist/source/latex/thumb/thumb.ins
+runfiles size=16216
+ texmf-dist/tex/latex/thumb/thumb.sty
+catalogue-version 1.0
+catalogue-date 2006-12-11 00:37:24 +0100
+catalogue-ctan /macros/latex/contrib/thumb
+catalogue-license gpl
+
+name thumbpdf
+category Package
+revision 5466
+shortdesc Thumbnails for pdfTeX and dvips/ps2pdf.
+longdesc A Perl script that provides support for thumbnails in pdfTeX
+longdesc and dvips/ps2pdf. The script uses ghostscript to generate the
+longdesc thumbnails which get represented in a TeX readable file that is
+longdesc read by the package thumbpdf.sty to automatically include the
+longdesc thumbnails. This arrangement works with both plain TeX and
+longdesc LaTeX.
+docfiles size=25091
+ texmf-dist/doc/generic/thumbpdf/readme.txt
+runfiles size=24651
+ texmf-dist/tex/generic/thumbpdf/thumbpdf.sty
+ texmf-dist/tex/generic/thumbpdf/thumbpdf.tex
+catalogue-version 3.9
+catalogue-date 2007-11-07 19:58:34 +0100
+catalogue-ctan /support/thumbpdf
+catalogue-license lppl
+
+name thuthesis
+category Package
+revision 5488
+shortdesc Thesis template for Tsinghua University.
+longdesc ThuThesis is a LaTeX thesis template package for Tsinghua
+longdesc University in order to make it easy to write theses for either
+longdesc bachelor's, master's or doctor's degree.
+docfiles size=1915306
+ texmf-dist/doc/latex/thuthesis/Readme details="Readme"
+ texmf-dist/doc/latex/thuthesis/example/Makefile
+ texmf-dist/doc/latex/thuthesis/example/data/ack.tex
+ texmf-dist/doc/latex/thuthesis/example/data/appendix01.tex
+ texmf-dist/doc/latex/thuthesis/example/data/chap01.tex
+ texmf-dist/doc/latex/thuthesis/example/data/chap02.tex
+ texmf-dist/doc/latex/thuthesis/example/data/cover.tex
+ texmf-dist/doc/latex/thuthesis/example/data/denotation.tex
+ texmf-dist/doc/latex/thuthesis/example/data/resume.tex
+ texmf-dist/doc/latex/thuthesis/example/figures/hello.eps
+ texmf-dist/doc/latex/thuthesis/example/figures/hello.fig
+ texmf-dist/doc/latex/thuthesis/example/main.pdf details="Example of use"
+ texmf-dist/doc/latex/thuthesis/example/main.tex
+ texmf-dist/doc/latex/thuthesis/example/msmake.cmd
+ texmf-dist/doc/latex/thuthesis/example/ref/refs.bib
+ texmf-dist/doc/latex/thuthesis/example/shuji.pdf
+ texmf-dist/doc/latex/thuthesis/example/shuji.tex
+ texmf-dist/doc/latex/thuthesis/example/thutils.sty
+ texmf-dist/doc/latex/thuthesis/thuthesis.pdf details="Package documentation"
+srcfiles size=112292
+ texmf-dist/source/latex/thuthesis/thuthesis.dtx
+ texmf-dist/source/latex/thuthesis/thuthesis.ins
+runfiles size=59226
+ texmf-dist/bibtex/bst/thuthesis/thubib.bst
+ texmf-dist/tex/latex/thuthesis/thuthesis.cfg
+ texmf-dist/tex/latex/thuthesis/thuthesis.cls
+catalogue-version 4.0
+catalogue-date 2007-11-09 14:55:29 +0100
+catalogue-ctan /macros/latex/contrib/thuthesis
+catalogue-license lppl
+
+name ticket
+category Package
+revision 2257
+shortdesc Make labels, visting-cards, pins with LaTeX.
+longdesc Provides an easy to handle interface to produce visiting cards,
+longdesc labels for your files, stickers, pins and other stuff for your
+longdesc office, conferences etc. All you need is a definition of your
+longdesc ‘ticket’ included in a ticket definition file and the two
+longdesc commands \ticketdefault and \ticket.
+docfiles size=363604
+ texmf-dist/doc/latex/ticket/README details="Package Readme"
+ texmf-dist/doc/latex/ticket/comment
+ texmf-dist/doc/latex/ticket/ex_file.pdf
+ texmf-dist/doc/latex/ticket/ex_file.tex
+ texmf-dist/doc/latex/ticket/ex_flashcard.pdf
+ texmf-dist/doc/latex/ticket/ex_flashcard.tex
+ texmf-dist/doc/latex/ticket/ex_flashcard_dup.pdf
+ texmf-dist/doc/latex/ticket/ex_marks.pdf
+ texmf-dist/doc/latex/ticket/ex_marks.tex
+ texmf-dist/doc/latex/ticket/ex_pin.pdf
+ texmf-dist/doc/latex/ticket/ex_pin.tex
+ texmf-dist/doc/latex/ticket/ex_vcard.pdf
+ texmf-dist/doc/latex/ticket/ex_vcard.tex
+ texmf-dist/doc/latex/ticket/manual.pdf
+ texmf-dist/doc/latex/ticket/manual.tex
+ texmf-dist/doc/latex/ticket/words.tex
+runfiles size=10669
+ texmf-dist/tex/latex/ticket/aj8414.tdf
+ texmf-dist/tex/latex/ticket/dura5222.tdf
+ texmf-dist/tex/latex/ticket/flashCard.tdf
+ texmf-dist/tex/latex/ticket/freepin.tdf
+ texmf-dist/tex/latex/ticket/freepin2.tdf
+ texmf-dist/tex/latex/ticket/freepin3.tdf
+ texmf-dist/tex/latex/ticket/he4432.tdf
+ texmf-dist/tex/latex/ticket/lz1680.tdf
+ texmf-dist/tex/latex/ticket/lz1681.tdf
+ texmf-dist/tex/latex/ticket/lz1685.tdf
+ texmf-dist/tex/latex/ticket/ticket.sty
+ texmf-dist/tex/latex/ticket/zw32010.tdf
+ texmf-dist/tex/latex/ticket/zw3424.tdf
+ texmf-dist/tex/latex/ticket/zw4752.tdf
+catalogue-version 0.4a
+catalogue-date 2006-12-11 00:37:24 +0100
+catalogue-ctan /macros/latex/contrib/ticket
+catalogue-license lppl
+
+name times
+category Package
+revision 2488
+shortdesc Select Adobe Times Roman (or equivalent) as default font.
+longdesc The times package is now obsolete, replaced by the mathptmx
+longdesc package, which supports Times Roman text and (mostly) matching
+longdesc mathematics. The times package remains available, for
+longdesc compatibility; both it and mathptmx are part of psnfss.
+runfiles size=1519583
+ texmf-dist/dvips/times/config.utm
+ texmf-dist/fonts/afm/adobe/times/ptmb8a.afm
+ texmf-dist/fonts/afm/adobe/times/ptmbi8a.afm
+ texmf-dist/fonts/afm/adobe/times/ptmr8a.afm
+ texmf-dist/fonts/afm/adobe/times/ptmri8a.afm
+ texmf-dist/fonts/afm/ibm/times/nntb8a.afm
+ texmf-dist/fonts/afm/ibm/times/nntbi8a.afm
+ texmf-dist/fonts/afm/ibm/times/nntr8a.afm
+ texmf-dist/fonts/afm/ibm/times/nntri8a.afm
+ texmf-dist/fonts/afm/ibm/times/ntnb8a.afm
+ texmf-dist/fonts/afm/ibm/times/ntnbi8a.afm
+ texmf-dist/fonts/afm/ibm/times/ntnr8a.afm
+ texmf-dist/fonts/afm/ibm/times/ntnri8a.afm
+ texmf-dist/fonts/afm/urw/times/utmb8a.afm
+ texmf-dist/fonts/afm/urw/times/utmbi8a.afm
+ texmf-dist/fonts/afm/urw/times/utmr8a.afm
+ texmf-dist/fonts/afm/urw/times/utmri8a.afm
+ texmf-dist/fonts/map/dvips/times/utm.map
+ texmf-dist/fonts/tfm/adobe/times/psyro.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmb.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmb8c.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmb8r.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmb8t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmb8y.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbc.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbc7t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbc8t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbc8y.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbi.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbi8c.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbi8r.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbi8t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbi8y.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbo.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbo7t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbo8c.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbo8r.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbo8t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmbo8y.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmr.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmr8c.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmr8r.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmr8rn.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmr8t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmr8y.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmrc.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmrc7t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmrc8t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmrc8y.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmri.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmri8c.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmri8r.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmri8t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmri8y.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmro.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmro7t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmro8c.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmro8r.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmro8t.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmro8y.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmrr8re.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmrre.tfm
+ texmf-dist/fonts/tfm/adobe/times/ptmrrn.tfm
+ texmf-dist/fonts/tfm/adobe/times/zpsycmrv.tfm
+ texmf-dist/fonts/tfm/adobe/times/zptmcm7m.tfm
+ texmf-dist/fonts/tfm/adobe/times/zptmcm7t.tfm
+ texmf-dist/fonts/tfm/adobe/times/zptmcm7v.tfm
+ texmf-dist/fonts/tfm/adobe/times/zptmcm7y.tfm
+ texmf-dist/fonts/tfm/adobe/times/zptmcmr.tfm
+ texmf-dist/fonts/tfm/adobe/times/zptmcmrm.tfm
+ texmf-dist/fonts/tfm/adobe/times/zpzccmry.tfm
+ texmf-dist/fonts/tfm/cg/times/ctmb.tfm
+ texmf-dist/fonts/tfm/cg/times/ctmb8t.tfm
+ texmf-dist/fonts/tfm/cg/times/ctmbi.tfm
+ texmf-dist/fonts/tfm/cg/times/ctmbi8t.tfm
+ texmf-dist/fonts/tfm/cg/times/ctmr.tfm
+ texmf-dist/fonts/tfm/cg/times/ctmr8t.tfm
+ texmf-dist/fonts/tfm/cg/times/ctmri.tfm
+ texmf-dist/fonts/tfm/cg/times/ctmri8t.tfm
+ texmf-dist/fonts/tfm/cg/times/trb10u.tfm
+ texmf-dist/fonts/tfm/cg/times/trb2n.tfm
+ texmf-dist/fonts/tfm/cg/times/trb6j.tfm
+ texmf-dist/fonts/tfm/cg/times/trb7j.tfm
+ texmf-dist/fonts/tfm/cg/times/trb8u.tfm
+ texmf-dist/fonts/tfm/cg/times/trb9t.tfm
+ texmf-dist/fonts/tfm/cg/times/tri10u.tfm
+ texmf-dist/fonts/tfm/cg/times/tri2n.tfm
+ texmf-dist/fonts/tfm/cg/times/tri6j.tfm
+ texmf-dist/fonts/tfm/cg/times/tri7j.tfm
+ texmf-dist/fonts/tfm/cg/times/tri8u.tfm
+ texmf-dist/fonts/tfm/cg/times/tri9t.tfm
+ texmf-dist/fonts/tfm/cg/times/trj10u.tfm
+ texmf-dist/fonts/tfm/cg/times/trj2n.tfm
+ texmf-dist/fonts/tfm/cg/times/trj6j.tfm
+ texmf-dist/fonts/tfm/cg/times/trj7j.tfm
+ texmf-dist/fonts/tfm/cg/times/trj8u.tfm
+ texmf-dist/fonts/tfm/cg/times/trj9t.tfm
+ texmf-dist/fonts/tfm/cg/times/trr10u.tfm
+ texmf-dist/fonts/tfm/cg/times/trr2n.tfm
+ texmf-dist/fonts/tfm/cg/times/trr6j.tfm
+ texmf-dist/fonts/tfm/cg/times/trr7j.tfm
+ texmf-dist/fonts/tfm/cg/times/trr8u.tfm
+ texmf-dist/fonts/tfm/cg/times/trr9t.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/ptmb8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/ptmbc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/ptmbi8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/ptmr8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/ptmrc8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/ptmri8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/rptmb.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/rptmbi.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/rptmbo.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/rptmr.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/rptmri.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/rptmro.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/rptmrre.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/times/rptmrrn.tfm
+ texmf-dist/fonts/tfm/groff/times/ptmb8g.tfm
+ texmf-dist/fonts/tfm/groff/times/ptmbi8g.tfm
+ texmf-dist/fonts/tfm/groff/times/ptmr8g.tfm
+ texmf-dist/fonts/tfm/groff/times/ptmri8g.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmb7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmb8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmb8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmb8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbi7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbi8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbi8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbi8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbo7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbo8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbo8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmbo8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmr7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmr8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmr8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmr8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmrc7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmrc8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmri7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmri8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmri8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmri8t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmro7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmro8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmro8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/times/utmro8t.tfm
+ texmf-dist/fonts/type1/urw/times/utmb8a.pfb
+ texmf-dist/fonts/type1/urw/times/utmb8a.pfm
+ texmf-dist/fonts/type1/urw/times/utmbi8a.pfb
+ texmf-dist/fonts/type1/urw/times/utmbi8a.pfm
+ texmf-dist/fonts/type1/urw/times/utmr8a.pfb
+ texmf-dist/fonts/type1/urw/times/utmr8a.pfm
+ texmf-dist/fonts/type1/urw/times/utmri8a.pfb
+ texmf-dist/fonts/type1/urw/times/utmri8a.pfm
+ texmf-dist/fonts/vf/adobe/times/ptmb.vf
+ texmf-dist/fonts/vf/adobe/times/ptmb7t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmb8c.vf
+ texmf-dist/fonts/vf/adobe/times/ptmb8t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbc.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbc7t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbc8t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbi.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbi7t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbi8c.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbi8t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbo.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbo7t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbo8c.vf
+ texmf-dist/fonts/vf/adobe/times/ptmbo8t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmr.vf
+ texmf-dist/fonts/vf/adobe/times/ptmr7t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmr8c.vf
+ texmf-dist/fonts/vf/adobe/times/ptmr8t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmrc.vf
+ texmf-dist/fonts/vf/adobe/times/ptmrc7t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmrc8t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmri.vf
+ texmf-dist/fonts/vf/adobe/times/ptmri7t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmri8c.vf
+ texmf-dist/fonts/vf/adobe/times/ptmri8t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmro.vf
+ texmf-dist/fonts/vf/adobe/times/ptmro7t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmro8c.vf
+ texmf-dist/fonts/vf/adobe/times/ptmro8t.vf
+ texmf-dist/fonts/vf/adobe/times/ptmrre.vf
+ texmf-dist/fonts/vf/adobe/times/ptmrrn.vf
+ texmf-dist/fonts/vf/adobe/times/zpsycmrv.vf
+ texmf-dist/fonts/vf/adobe/times/zptmcm7m.vf
+ texmf-dist/fonts/vf/adobe/times/zptmcm7t.vf
+ texmf-dist/fonts/vf/adobe/times/zptmcm7v.vf
+ texmf-dist/fonts/vf/adobe/times/zptmcm7y.vf
+ texmf-dist/fonts/vf/adobe/times/zptmcmr.vf
+ texmf-dist/fonts/vf/adobe/times/zptmcmrm.vf
+ texmf-dist/fonts/vf/adobe/times/zpzccmry.vf
+ texmf-dist/fonts/vf/cg/times/ctmb.vf
+ texmf-dist/fonts/vf/cg/times/ctmb8t.vf
+ texmf-dist/fonts/vf/cg/times/ctmbi.vf
+ texmf-dist/fonts/vf/cg/times/ctmbi8t.vf
+ texmf-dist/fonts/vf/cg/times/ctmr.vf
+ texmf-dist/fonts/vf/cg/times/ctmr8t.vf
+ texmf-dist/fonts/vf/cg/times/ctmri.vf
+ texmf-dist/fonts/vf/cg/times/ctmri8t.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/times/ptmb8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/times/ptmbc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/times/ptmbi8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/times/ptmr8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/times/ptmrc8z.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/times/ptmri8z.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmb7t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmb8c.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmb8t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmbc7t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmbc8t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmbi7t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmbi8c.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmbi8t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmbo7t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmbo8c.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmbo8t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmr7t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmr8c.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmr8t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmrc7t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmrc8t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmri7t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmri8c.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmri8t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmro7t.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmro8c.vf
+ texmf-dist/fonts/vf/urw35vf/times/utmro8t.vf
+ texmf-dist/tex/latex/times/8rutm.fd
+ texmf-dist/tex/latex/times/omlutm.fd
+ texmf-dist/tex/latex/times/omsutm.fd
+ texmf-dist/tex/latex/times/ot1utm.fd
+ texmf-dist/tex/latex/times/t1utm.fd
+ texmf-dist/tex/latex/times/ts1utm.fd
+catalogue-version
+catalogue-date 2007-01-21 15:05:06 +0100
+catalogue-ctan
+catalogue-license lppl
+
+name timescyr
+category Package
+revision 90
+runfiles size=14292
+ texmf-dist/fonts/tfm/monotype/timescyr/mntb7k.tfm
+ texmf-dist/fonts/tfm/monotype/timescyr/mntbo7k.tfm
+ texmf-dist/fonts/tfm/monotype/timescyr/mntboz.tfm
+ texmf-dist/fonts/tfm/monotype/timescyr/mntbz.tfm
+ texmf-dist/fonts/tfm/monotype/timescyr/mntr7k.tfm
+ texmf-dist/fonts/tfm/monotype/timescyr/mntro7k.tfm
+ texmf-dist/fonts/tfm/monotype/timescyr/mntroz.tfm
+ texmf-dist/fonts/tfm/monotype/timescyr/mntrz.tfm
+ texmf-dist/fonts/vf/monotype/timescyr/mntb7k.vf
+ texmf-dist/fonts/vf/monotype/timescyr/mntbo7k.vf
+ texmf-dist/fonts/vf/monotype/timescyr/mntr7k.vf
+ texmf-dist/fonts/vf/monotype/timescyr/mntro7k.vf
+
+name timesht
+category Package
+revision 1389
+docfiles size=1294
+ texmf-dist/doc/latex/timesht/README
+ texmf-dist/doc/latex/timesht/timesheet.tex
+srcfiles size=16435
+ texmf-dist/source/latex/timesht/timesht.dtx
+ texmf-dist/source/latex/timesht/timesht.ins
+runfiles size=4515
+ texmf-dist/tex/latex/timesht/timesht.cls
+
+name timesnew
+category Package
+revision 90
+runfiles size=184596
+ texmf-dist/fonts/tfm/ibm/timesnew/nntb7t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntb8c.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntb8r.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntb8t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbc7t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbc8t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbi7t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbi8c.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbi8r.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbi8t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbo7t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbo8c.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbo8r.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntbo8t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntr7t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntr8c.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntr8r.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntr8t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntrc7t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntrc8t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntri7t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntri8c.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntri8r.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntri8t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntro7t.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntro8c.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntro8r.tfm
+ texmf-dist/fonts/tfm/ibm/timesnew/nntro8t.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/mntb.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/mntb8t.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/mntbi.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/mntbi8t.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/mntr.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/mntr8t.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/mntri.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/mntri8t.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnb10u.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnb2n.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnb7j.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnb8u.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnb9t.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tni10u.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tni2n.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tni7j.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tni8u.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tni9t.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnj10u.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnj2n.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnj7j.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnj8u.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnj9t.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnr10u.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnr2n.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnr7j.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnr8u.tfm
+ texmf-dist/fonts/tfm/monotype/timesnew/tnr9t.tfm
+ texmf-dist/fonts/vf/ibm/timesnew/nntb7t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntb8c.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntb8t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntbc7t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntbc8t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntbi7t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntbi8c.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntbi8t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntbo7t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntbo8c.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntbo8t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntr7t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntr8c.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntr8t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntrc7t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntrc8t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntri7t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntri8c.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntri8t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntro7t.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntro8c.vf
+ texmf-dist/fonts/vf/ibm/timesnew/nntro8t.vf
+ texmf-dist/fonts/vf/monotype/timesnew/mntb.vf
+ texmf-dist/fonts/vf/monotype/timesnew/mntb8t.vf
+ texmf-dist/fonts/vf/monotype/timesnew/mntbi.vf
+ texmf-dist/fonts/vf/monotype/timesnew/mntbi8t.vf
+ texmf-dist/fonts/vf/monotype/timesnew/mntr.vf
+ texmf-dist/fonts/vf/monotype/timesnew/mntr8t.vf
+ texmf-dist/fonts/vf/monotype/timesnew/mntri.vf
+ texmf-dist/fonts/vf/monotype/timesnew/mntri8t.vf
+
+name timing
+category Package
+revision 1390
+shortdesc Fonts and macro package for drawing timing diagrams.
+longdesc The fonts are distributed as MetaFont source.
+docfiles size=28357
+ texmf-dist/doc/fonts/timing/prozt1.tex
+ texmf-dist/doc/fonts/timing/read.me details="Readme" language="de"
+ texmf-dist/doc/fonts/timing/tim0594.upl
+ texmf-dist/doc/fonts/timing/timing.dvi
+ texmf-dist/doc/fonts/timing/timing.tex
+runfiles size=27596
+ texmf-dist/fonts/source/public/timing/timing.mf
+ texmf-dist/fonts/source/public/timing/timing1.mf
+ texmf-dist/fonts/source/public/timing/timing1s.mf
+ texmf-dist/fonts/source/public/timing/timing2.mf
+ texmf-dist/fonts/source/public/timing/timing2s.mf
+ texmf-dist/fonts/tfm/public/timing/timing1.tfm
+ texmf-dist/fonts/tfm/public/timing/timing1s.tfm
+ texmf-dist/fonts/tfm/public/timing/timing2.tfm
+ texmf-dist/fonts/tfm/public/timing/timing2s.tfm
+ texmf-dist/tex/latex/timing/timing.sty
+catalogue-version
+catalogue-date 2007-01-17 00:08:13 +0100
+catalogue-ctan /macros/latex/contrib/timing
+catalogue-license unknown
+
+name tipa
+category Package
+revision 1391
+shortdesc Fonts and macros for IPA phonetics characters.
+longdesc These fonts are considered the ‘ultimate answer’ to IPA
+longdesc typesetting. The encoding of these 8-bit fonts has been
+longdesc registered as LaTeX standard encoding T3, and the set of
+longdesc addendum symbols as encoding TS3. ‘Times-like’ Adobe Type 1
+longdesc versions are provided for both the T3 and the TS3 fonts.
+execute addMixedMap tipa.map
+docfiles size=2590853
+ texmf-dist/doc/fonts/tipa/00README details="Readme"
+ texmf-dist/doc/fonts/tipa/Makefile
+ texmf-dist/doc/fonts/tipa/README.TEXLIVE
+ texmf-dist/doc/fonts/tipa/boxchar.sty
+ texmf-dist/doc/fonts/tipa/codelist.sty
+ texmf-dist/doc/fonts/tipa/tipa.bib
+ texmf-dist/doc/fonts/tipa/tipaman.bbl
+ texmf-dist/doc/fonts/tipa/tipaman.pdf details="Package manual"
+ texmf-dist/doc/fonts/tipa/tipaman.sty
+ texmf-dist/doc/fonts/tipa/tipaman.tex
+ texmf-dist/doc/fonts/tipa/tipaman0.tex
+ texmf-dist/doc/fonts/tipa/tipaman1.tex
+ texmf-dist/doc/fonts/tipa/tipaman2.tex
+ texmf-dist/doc/fonts/tipa/tipaman3.tex
+ texmf-dist/doc/fonts/tipa/tipaman4.tex
+ texmf-dist/doc/fonts/tipa/vowel.tex
+runfiles size=3943615
+ texmf-dist/fonts/map/dvips/tipa/tipa.map
+ texmf-dist/fonts/source/public/tipa/gentfm.sh
+ texmf-dist/fonts/source/public/tipa/gentipa.sh
+ texmf-dist/fonts/source/public/tipa/gentipx.sh
+ texmf-dist/fonts/source/public/tipa/genxipa.sh
+ texmf-dist/fonts/source/public/tipa/genxipx.sh
+ texmf-dist/fonts/source/public/tipa/mktipapk.sh
+ texmf-dist/fonts/source/public/tipa/mkxipapk.sh
+ texmf-dist/fonts/source/public/tipa/tipa.mf
+ texmf-dist/fonts/source/public/tipa/tipa10.mf
+ texmf-dist/fonts/source/public/tipa/tipa12.mf
+ texmf-dist/fonts/source/public/tipa/tipa17.mf
+ texmf-dist/fonts/source/public/tipa/tipa8.mf
+ texmf-dist/fonts/source/public/tipa/tipa9.mf
+ texmf-dist/fonts/source/public/tipa/tipab10.mf
+ texmf-dist/fonts/source/public/tipa/tipabase.mf
+ texmf-dist/fonts/source/public/tipa/tipabs10.mf
+ texmf-dist/fonts/source/public/tipa/tipabx10.mf
+ texmf-dist/fonts/source/public/tipa/tipabx12.mf
+ texmf-dist/fonts/source/public/tipa/tipabx8.mf
+ texmf-dist/fonts/source/public/tipa/tipabx9.mf
+ texmf-dist/fonts/source/public/tipa/tipadiac.mf
+ texmf-dist/fonts/source/public/tipa/tipaextr.mf
+ texmf-dist/fonts/source/public/tipa/tipagerm.mf
+ texmf-dist/fonts/source/public/tipa/tipanew.mf
+ texmf-dist/fonts/source/public/tipa/tipapnct.mf
+ texmf-dist/fonts/source/public/tipa/tipaprm.def
+ texmf-dist/fonts/source/public/tipa/tiparoml.mf
+ texmf-dist/fonts/source/public/tipa/tipasb10.mf
+ texmf-dist/fonts/source/public/tipa/tipasc.mf
+ texmf-dist/fonts/source/public/tipa/tipasi10.mf
+ texmf-dist/fonts/source/public/tipa/tipasl10.mf
+ texmf-dist/fonts/source/public/tipa/tipasl12.mf
+ texmf-dist/fonts/source/public/tipa/tipasl8.mf
+ texmf-dist/fonts/source/public/tipa/tipasl9.mf
+ texmf-dist/fonts/source/public/tipa/tipass10.mf
+ texmf-dist/fonts/source/public/tipa/tipass12.mf
+ texmf-dist/fonts/source/public/tipa/tipass17.mf
+ texmf-dist/fonts/source/public/tipa/tipass8.mf
+ texmf-dist/fonts/source/public/tipa/tipass9.mf
+ texmf-dist/fonts/source/public/tipa/tipasym1.mf
+ texmf-dist/fonts/source/public/tipa/tipasym2.mf
+ texmf-dist/fonts/source/public/tipa/tipasym3.mf
+ texmf-dist/fonts/source/public/tipa/tipasym4.mf
+ texmf-dist/fonts/source/public/tipa/tipatone.mf
+ texmf-dist/fonts/source/public/tipa/tipatr.mf
+ texmf-dist/fonts/source/public/tipa/tipats10.mf
+ texmf-dist/fonts/source/public/tipa/tipatt10.mf
+ texmf-dist/fonts/source/public/tipa/tipatt12.mf
+ texmf-dist/fonts/source/public/tipa/tipatt8.mf
+ texmf-dist/fonts/source/public/tipa/tipatt9.mf
+ texmf-dist/fonts/source/public/tipa/tipx.mf
+ texmf-dist/fonts/source/public/tipa/tipx10.mf
+ texmf-dist/fonts/source/public/tipa/tipx12.mf
+ texmf-dist/fonts/source/public/tipa/tipx17.mf
+ texmf-dist/fonts/source/public/tipa/tipx8.mf
+ texmf-dist/fonts/source/public/tipa/tipx9.mf
+ texmf-dist/fonts/source/public/tipa/tipxb10.mf
+ texmf-dist/fonts/source/public/tipa/tipxbs10.mf
+ texmf-dist/fonts/source/public/tipa/tipxbx10.mf
+ texmf-dist/fonts/source/public/tipa/tipxbx12.mf
+ texmf-dist/fonts/source/public/tipa/tipxbx8.mf
+ texmf-dist/fonts/source/public/tipa/tipxbx9.mf
+ texmf-dist/fonts/source/public/tipa/tipxsb10.mf
+ texmf-dist/fonts/source/public/tipa/tipxsi10.mf
+ texmf-dist/fonts/source/public/tipa/tipxsl10.mf
+ texmf-dist/fonts/source/public/tipa/tipxsl12.mf
+ texmf-dist/fonts/source/public/tipa/tipxsl8.mf
+ texmf-dist/fonts/source/public/tipa/tipxsl9.mf
+ texmf-dist/fonts/source/public/tipa/tipxss10.mf
+ texmf-dist/fonts/source/public/tipa/tipxss12.mf
+ texmf-dist/fonts/source/public/tipa/tipxss17.mf
+ texmf-dist/fonts/source/public/tipa/tipxss8.mf
+ texmf-dist/fonts/source/public/tipa/tipxss9.mf
+ texmf-dist/fonts/source/public/tipa/tipxts10.mf
+ texmf-dist/fonts/source/public/tipa/tipxtt10.mf
+ texmf-dist/fonts/source/public/tipa/tipxtt12.mf
+ texmf-dist/fonts/source/public/tipa/tipxtt8.mf
+ texmf-dist/fonts/source/public/tipa/tipxtt9.mf
+ texmf-dist/fonts/source/public/tipa/xipa10.mf
+ texmf-dist/fonts/source/public/tipa/xipab10.mf
+ texmf-dist/fonts/source/public/tipa/xipabs10.mf
+ texmf-dist/fonts/source/public/tipa/xipaprm.def
+ texmf-dist/fonts/source/public/tipa/xipasb10.mf
+ texmf-dist/fonts/source/public/tipa/xipasi10.mf
+ texmf-dist/fonts/source/public/tipa/xipasl10.mf
+ texmf-dist/fonts/source/public/tipa/xipass10.mf
+ texmf-dist/fonts/source/public/tipa/xipx10.mf
+ texmf-dist/fonts/source/public/tipa/xipxb10.mf
+ texmf-dist/fonts/source/public/tipa/xipxbs10.mf
+ texmf-dist/fonts/source/public/tipa/xipxsb10.mf
+ texmf-dist/fonts/source/public/tipa/xipxsi10.mf
+ texmf-dist/fonts/source/public/tipa/xipxsl10.mf
+ texmf-dist/fonts/source/public/tipa/xipxss10.mf
+ texmf-dist/fonts/tfm/public/tipa/tipa10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipa12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipa17.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipa8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipa9.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipab10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipabs10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipabx10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipabx12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipabx8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipabx9.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipasb10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipasi10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipasl10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipasl12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipasl8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipasl9.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipass10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipass12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipass17.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipass8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipass9.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipats10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipatt10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipatt12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipatt8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipatt9.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipx10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipx12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipx17.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipx8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipx9.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxb10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxbs10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxbx10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxbx12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxbx8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxbx9.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxsb10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxsi10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxsl10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxsl12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxsl8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxsl9.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxss10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxss12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxss17.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxss8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxss9.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxts10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxtt10.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxtt12.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxtt8.tfm
+ texmf-dist/fonts/tfm/public/tipa/tipxtt9.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipa10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipab10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipabs10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipasb10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipasi10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipasl10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipass10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipx10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipxb10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipxbs10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipxsb10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipxsi10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipxsl10.tfm
+ texmf-dist/fonts/tfm/public/tipa/xipxss10.tfm
+ texmf-dist/fonts/type1/public/tipa/tipa10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipa12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipa17.pfb
+ texmf-dist/fonts/type1/public/tipa/tipa8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipa9.pfb
+ texmf-dist/fonts/type1/public/tipa/tipab10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipabs10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipabx10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipabx12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipabx8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipabx9.pfb
+ texmf-dist/fonts/type1/public/tipa/tipasb10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipasi10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipasl10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipasl12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipasl8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipasl9.pfb
+ texmf-dist/fonts/type1/public/tipa/tipass10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipass12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipass17.pfb
+ texmf-dist/fonts/type1/public/tipa/tipass8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipass9.pfb
+ texmf-dist/fonts/type1/public/tipa/tipats10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipatt10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipatt12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipatt8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipatt9.pfb
+ texmf-dist/fonts/type1/public/tipa/tipx10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipx12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipx17.pfb
+ texmf-dist/fonts/type1/public/tipa/tipx8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipx9.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxb10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxbs10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxbx10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxbx12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxbx8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxbx9.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxsb10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxsi10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxsl10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxsl12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxsl8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxsl9.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxss10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxss12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxss17.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxss8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxss9.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxts10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxtt10.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxtt12.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxtt8.pfb
+ texmf-dist/fonts/type1/public/tipa/tipxtt9.pfb
+ texmf-dist/fonts/type1/public/tipa/xipa10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipab10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipabs10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipasb10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipasi10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipasl10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipass10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipx10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipxb10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipxbs10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipxsb10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipxsi10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipxsl10.pfb
+ texmf-dist/fonts/type1/public/tipa/xipxss10.pfb
+ texmf-dist/tex/latex/tipa/exaccent.sty
+ texmf-dist/tex/latex/tipa/extraipa.sty
+ texmf-dist/tex/latex/tipa/t3cmr.fd
+ texmf-dist/tex/latex/tipa/t3cmss.fd
+ texmf-dist/tex/latex/tipa/t3cmtt.fd
+ texmf-dist/tex/latex/tipa/t3enc.def
+ texmf-dist/tex/latex/tipa/t3phv.fd
+ texmf-dist/tex/latex/tipa/t3ptm.fd
+ texmf-dist/tex/latex/tipa/tipa.sty
+ texmf-dist/tex/latex/tipa/tipx.sty
+ texmf-dist/tex/latex/tipa/tone.sty
+ texmf-dist/tex/latex/tipa/ts3cmr.fd
+ texmf-dist/tex/latex/tipa/ts3cmss.fd
+ texmf-dist/tex/latex/tipa/ts3cmtt.fd
+ texmf-dist/tex/latex/tipa/ts3enc.def
+ texmf-dist/tex/latex/tipa/ts3phv.fd
+ texmf-dist/tex/latex/tipa/ts3ptm.fd
+ texmf-dist/tex/latex/tipa/utipx.fd
+ texmf-dist/tex/latex/tipa/utipxss.fd
+ texmf-dist/tex/latex/tipa/utipxtt.fd
+ texmf-dist/tex/latex/tipa/uxipx.fd
+ texmf-dist/tex/latex/tipa/uxipxss.fd
+ texmf-dist/tex/latex/tipa/vowel.sty
+catalogue-version 1.3
+catalogue-date 2007-01-17 00:08:13 +0100
+catalogue-ctan /fonts/tipa
+catalogue-license unknown
+
+name titlefoot
+category Package
+revision 1392
+shortdesc Add special material to footer of title page.
+longdesc Provides the capability of adding keywords (with a \keywords
+longdesc command), a running title (\runningtitle), AMS subject
+longdesc classifications (\amssubj), and an ‘author’s footnote’ as
+longdesc footnotes to the title or first page of a document. Works with
+longdesc any class for which the \thanks macro works (e.g., article).
+runfiles size=8443
+ texmf-dist/tex/latex/titlefoot/titlefoot.sty
+catalogue-version
+catalogue-date 2007-01-17 00:08:13 +0100
+catalogue-ctan /macros/latex/contrib/titlefoot
+catalogue-license lppl
+
+name titlesec
+category Package
+revision 4731
+shortdesc Select alternative section titles.
+longdesc A package providing an interface to sectioning commands for
+longdesc selection from various title styles. E.g., marginal titles and
+longdesc to change the font of all headings with a single command, also
+longdesc providing simple one-step page styles. Also includes a package
+longdesc to change the page styles when there are floats in a page. You
+longdesc may assign headers/footers to individual floats, too.
+docfiles size=313134
+ texmf-dist/doc/latex/titlesec/README details="Readme"
+ texmf-dist/doc/latex/titlesec/titlesec.pdf details="Package documentation"
+ texmf-dist/doc/latex/titlesec/titlesec.tex
+runfiles size=97332
+ texmf-dist/tex/latex/titlesec/block.tss
+ texmf-dist/tex/latex/titlesec/drop.tss
+ texmf-dist/tex/latex/titlesec/frame.tss
+ texmf-dist/tex/latex/titlesec/leftmargin.tss
+ texmf-dist/tex/latex/titlesec/margin.tss
+ texmf-dist/tex/latex/titlesec/rightmargin.tss
+ texmf-dist/tex/latex/titlesec/titlesec.sty
+ texmf-dist/tex/latex/titlesec/titletoc.sty
+ texmf-dist/tex/latex/titlesec/ttlkeys.def
+ texmf-dist/tex/latex/titlesec/ttlps.def
+ texmf-dist/tex/latex/titlesec/wrap.tss
+catalogue-version 2.8
+catalogue-date 2007-08-15 01:05:26 +0200
+catalogue-ctan /macros/latex/contrib/titlesec
+catalogue-license lppl
+
+name titling
+category Package
+revision 1394
+shortdesc Control over the typesetting of the \maketitle command.
+longdesc The titling package provides control over the typesetting of
+longdesc the \maketitle command and \thanks commands, and makes the
+longdesc \title, \author and \date information permanently available.
+longdesc Multiple titles are allowed in a single document. New titling
+longdesc elements can be added and a titlepage title can be centered on
+longdesc a physical page.
+docfiles size=208355
+ texmf-dist/doc/latex/titling/README details="Readme"
+ texmf-dist/doc/latex/titling/titling.pdf details="Package documentation"
+srcfiles size=55013
+ texmf-dist/source/latex/titling/titling.dtx
+ texmf-dist/source/latex/titling/titling.ins
+runfiles size=7415
+ texmf-dist/tex/latex/titling/titling.sty
+catalogue-version 2.1c
+catalogue-date 2007-01-17 10:01:14 +0100
+catalogue-ctan /macros/latex/contrib/titling
+catalogue-license lppl
+
+name tlc2
+category Documentation
+revision 1487
+docfiles size=988202
+ texmf-doc/doc/english/tlc2/1-3-1.ltx
+ texmf-doc/doc/english/tlc2/1-3-2.ltx2
+ texmf-doc/doc/english/tlc2/1-3-3.ltx
+ texmf-doc/doc/english/tlc2/1-3-4.ltx
+ texmf-doc/doc/english/tlc2/1-3-5.ltx
+ texmf-doc/doc/english/tlc2/10-1-1.ltx
+ texmf-doc/doc/english/tlc2/10-1-10.ltx
+ texmf-doc/doc/english/tlc2/10-1-11.ltx
+ texmf-doc/doc/english/tlc2/10-1-12.ltx
+ texmf-doc/doc/english/tlc2/10-1-13.ltx
+ texmf-doc/doc/english/tlc2/10-1-14.ltx
+ texmf-doc/doc/english/tlc2/10-1-15.ltx
+ texmf-doc/doc/english/tlc2/10-1-16.ltx
+ texmf-doc/doc/english/tlc2/10-1-17.ltx
+ texmf-doc/doc/english/tlc2/10-1-18.ltx
+ texmf-doc/doc/english/tlc2/10-1-19.ltx
+ texmf-doc/doc/english/tlc2/10-1-2.ltx
+ texmf-doc/doc/english/tlc2/10-1-20.ltx
+ texmf-doc/doc/english/tlc2/10-1-21.ltx
+ texmf-doc/doc/english/tlc2/10-1-22.ltx
+ texmf-doc/doc/english/tlc2/10-1-23.ltx
+ texmf-doc/doc/english/tlc2/10-1-24.ltx
+ texmf-doc/doc/english/tlc2/10-1-25.ltx
+ texmf-doc/doc/english/tlc2/10-1-26.ltx
+ texmf-doc/doc/english/tlc2/10-1-27.ltx
+ texmf-doc/doc/english/tlc2/10-1-3.ltx
+ texmf-doc/doc/english/tlc2/10-1-4.ltx
+ texmf-doc/doc/english/tlc2/10-1-5.ltx
+ texmf-doc/doc/english/tlc2/10-1-6.ltx
+ texmf-doc/doc/english/tlc2/10-1-7.ltx
+ texmf-doc/doc/english/tlc2/10-1-8.ltx
+ texmf-doc/doc/english/tlc2/10-1-9.ltx2
+ texmf-doc/doc/english/tlc2/10-2-1.ltx
+ texmf-doc/doc/english/tlc2/10-2-10.ltx
+ texmf-doc/doc/english/tlc2/10-2-11.ltx
+ texmf-doc/doc/english/tlc2/10-2-12.ltx
+ texmf-doc/doc/english/tlc2/10-2-13.ltx
+ texmf-doc/doc/english/tlc2/10-2-14.ltx
+ texmf-doc/doc/english/tlc2/10-2-15.ltx
+ texmf-doc/doc/english/tlc2/10-2-2.ltx
+ texmf-doc/doc/english/tlc2/10-2-3.ltx
+ texmf-doc/doc/english/tlc2/10-2-4.ltx
+ texmf-doc/doc/english/tlc2/10-2-5.ltx
+ texmf-doc/doc/english/tlc2/10-2-6.ltx
+ texmf-doc/doc/english/tlc2/10-2-7.ltx
+ texmf-doc/doc/english/tlc2/10-2-8.ltx
+ texmf-doc/doc/english/tlc2/10-2-9.ltx
+ texmf-doc/doc/english/tlc2/10-3-1.ltx
+ texmf-doc/doc/english/tlc2/10-3-10.ltx
+ texmf-doc/doc/english/tlc2/10-3-11.ltx
+ texmf-doc/doc/english/tlc2/10-3-12.ltx
+ texmf-doc/doc/english/tlc2/10-3-2.ltx
+ texmf-doc/doc/english/tlc2/10-3-3.ltx
+ texmf-doc/doc/english/tlc2/10-3-4.ltx
+ texmf-doc/doc/english/tlc2/10-3-5.ltx
+ texmf-doc/doc/english/tlc2/10-3-6.ltx
+ texmf-doc/doc/english/tlc2/10-3-7.ltx
+ texmf-doc/doc/english/tlc2/10-3-8.ltx
+ texmf-doc/doc/english/tlc2/10-3-9.ltx
+ texmf-doc/doc/english/tlc2/10-4-1.ltx
+ texmf-doc/doc/english/tlc2/10-4-2.ltx
+ texmf-doc/doc/english/tlc2/10-4-3.ltx
+ texmf-doc/doc/english/tlc2/10-4-4.ltx
+ texmf-doc/doc/english/tlc2/12-1-1.ltx
+ texmf-doc/doc/english/tlc2/12-1-2.ltx
+ texmf-doc/doc/english/tlc2/12-1-3.ltx
+ texmf-doc/doc/english/tlc2/12-2-1.ltx
+ texmf-doc/doc/english/tlc2/12-2-10.ltx
+ texmf-doc/doc/english/tlc2/12-2-11.ltx
+ texmf-doc/doc/english/tlc2/12-2-12.ltx
+ texmf-doc/doc/english/tlc2/12-2-13.ltx
+ texmf-doc/doc/english/tlc2/12-2-14.ltx
+ texmf-doc/doc/english/tlc2/12-2-2.ltx
+ texmf-doc/doc/english/tlc2/12-2-3.ltx
+ texmf-doc/doc/english/tlc2/12-2-4.ltx
+ texmf-doc/doc/english/tlc2/12-2-5.ltx
+ texmf-doc/doc/english/tlc2/12-2-6.ltx
+ texmf-doc/doc/english/tlc2/12-2-7.ltx
+ texmf-doc/doc/english/tlc2/12-2-8.ltx
+ texmf-doc/doc/english/tlc2/12-2-9.ltx
+ texmf-doc/doc/english/tlc2/12-3-1.ltx
+ texmf-doc/doc/english/tlc2/12-3-10.ltx
+ texmf-doc/doc/english/tlc2/12-3-11.ltx
+ texmf-doc/doc/english/tlc2/12-3-12.ltx
+ texmf-doc/doc/english/tlc2/12-3-13.ltx
+ texmf-doc/doc/english/tlc2/12-3-14.ltx
+ texmf-doc/doc/english/tlc2/12-3-15.ltx
+ texmf-doc/doc/english/tlc2/12-3-16.ltx
+ texmf-doc/doc/english/tlc2/12-3-17.ltx
+ texmf-doc/doc/english/tlc2/12-3-18.ltx
+ texmf-doc/doc/english/tlc2/12-3-19.ltx
+ texmf-doc/doc/english/tlc2/12-3-2.ltx
+ texmf-doc/doc/english/tlc2/12-3-20.ltx
+ texmf-doc/doc/english/tlc2/12-3-21.ltx
+ texmf-doc/doc/english/tlc2/12-3-22.ltx
+ texmf-doc/doc/english/tlc2/12-3-23.ltx
+ texmf-doc/doc/english/tlc2/12-3-24.ltx
+ texmf-doc/doc/english/tlc2/12-3-25.ltx
+ texmf-doc/doc/english/tlc2/12-3-26.ltx
+ texmf-doc/doc/english/tlc2/12-3-27.ltx
+ texmf-doc/doc/english/tlc2/12-3-3.ltx
+ texmf-doc/doc/english/tlc2/12-3-4.ltx
+ texmf-doc/doc/english/tlc2/12-3-5.ltx
+ texmf-doc/doc/english/tlc2/12-3-6.ltx
+ texmf-doc/doc/english/tlc2/12-3-7.ltx
+ texmf-doc/doc/english/tlc2/12-3-8.ltx
+ texmf-doc/doc/english/tlc2/12-3-9.ltx
+ texmf-doc/doc/english/tlc2/12-4-1.ltx
+ texmf-doc/doc/english/tlc2/12-4-2.ltx
+ texmf-doc/doc/english/tlc2/12-4-3.ltx
+ texmf-doc/doc/english/tlc2/12-4-4.ltx
+ texmf-doc/doc/english/tlc2/12-4-5.ltx
+ texmf-doc/doc/english/tlc2/12-4-6.ltx
+ texmf-doc/doc/english/tlc2/12-4-7.ltx
+ texmf-doc/doc/english/tlc2/12-4-8.ltx
+ texmf-doc/doc/english/tlc2/12-5-1.ltx
+ texmf-doc/doc/english/tlc2/12-5-10.ltx
+ texmf-doc/doc/english/tlc2/12-5-11.ltx
+ texmf-doc/doc/english/tlc2/12-5-12.ltx
+ texmf-doc/doc/english/tlc2/12-5-13.ltx
+ texmf-doc/doc/english/tlc2/12-5-14.ltx
+ texmf-doc/doc/english/tlc2/12-5-15.ltx
+ texmf-doc/doc/english/tlc2/12-5-16.ltx
+ texmf-doc/doc/english/tlc2/12-5-17.ltx
+ texmf-doc/doc/english/tlc2/12-5-18.ltx
+ texmf-doc/doc/english/tlc2/12-5-19.ltx
+ texmf-doc/doc/english/tlc2/12-5-2.ltx
+ texmf-doc/doc/english/tlc2/12-5-20.ltx
+ texmf-doc/doc/english/tlc2/12-5-21.ltx
+ texmf-doc/doc/english/tlc2/12-5-22.ltx
+ texmf-doc/doc/english/tlc2/12-5-23.ltx
+ texmf-doc/doc/english/tlc2/12-5-24.ltx2
+ texmf-doc/doc/english/tlc2/12-5-25.ltx2
+ texmf-doc/doc/english/tlc2/12-5-26.ltx2
+ texmf-doc/doc/english/tlc2/12-5-27.ltx
+ texmf-doc/doc/english/tlc2/12-5-28.ltx
+ texmf-doc/doc/english/tlc2/12-5-29.ltx2
+ texmf-doc/doc/english/tlc2/12-5-3.ltx
+ texmf-doc/doc/english/tlc2/12-5-30.ltx
+ texmf-doc/doc/english/tlc2/12-5-31.ltx
+ texmf-doc/doc/english/tlc2/12-5-32.ltx
+ texmf-doc/doc/english/tlc2/12-5-33.ltx
+ texmf-doc/doc/english/tlc2/12-5-34.ltx
+ texmf-doc/doc/english/tlc2/12-5-35.ltx
+ texmf-doc/doc/english/tlc2/12-5-36.ltx
+ texmf-doc/doc/english/tlc2/12-5-37.ltx
+ texmf-doc/doc/english/tlc2/12-5-38.ltx
+ texmf-doc/doc/english/tlc2/12-5-39.ltx
+ texmf-doc/doc/english/tlc2/12-5-4.ltx
+ texmf-doc/doc/english/tlc2/12-5-40.ltx
+ texmf-doc/doc/english/tlc2/12-5-41.ltx
+ texmf-doc/doc/english/tlc2/12-5-42.ltx
+ texmf-doc/doc/english/tlc2/12-5-43.ltx
+ texmf-doc/doc/english/tlc2/12-5-44.ltx
+ texmf-doc/doc/english/tlc2/12-5-45.ltx
+ texmf-doc/doc/english/tlc2/12-5-46.ltx
+ texmf-doc/doc/english/tlc2/12-5-47.ltx
+ texmf-doc/doc/english/tlc2/12-5-48.ltx
+ texmf-doc/doc/english/tlc2/12-5-49.ltx
+ texmf-doc/doc/english/tlc2/12-5-5.ltx
+ texmf-doc/doc/english/tlc2/12-5-6.ltx
+ texmf-doc/doc/english/tlc2/12-5-7.ltx
+ texmf-doc/doc/english/tlc2/12-5-8.ltx
+ texmf-doc/doc/english/tlc2/12-5-9.ltx
+ texmf-doc/doc/english/tlc2/12-6-1.ltx2
+ texmf-doc/doc/english/tlc2/12-6-10.ltx
+ texmf-doc/doc/english/tlc2/12-6-2.ltx
+ texmf-doc/doc/english/tlc2/12-6-3.ltx2
+ texmf-doc/doc/english/tlc2/12-6-4.ltx2
+ texmf-doc/doc/english/tlc2/12-6-5.ltx2
+ texmf-doc/doc/english/tlc2/12-6-6.ltx2
+ texmf-doc/doc/english/tlc2/12-6-7.ltx
+ texmf-doc/doc/english/tlc2/12-6-8.ltx
+ texmf-doc/doc/english/tlc2/12-6-9.ltx
+ texmf-doc/doc/english/tlc2/13-4-1.ltx
+ texmf-doc/doc/english/tlc2/13-4-2.ltx
+ texmf-doc/doc/english/tlc2/13-5-1.ltx
+ texmf-doc/doc/english/tlc2/13-5-2.ltx
+ texmf-doc/doc/english/tlc2/13-5-3.ltx
+ texmf-doc/doc/english/tlc2/13-5-4.ltx
+ texmf-doc/doc/english/tlc2/13-5-5.ltx
+ texmf-doc/doc/english/tlc2/13-5-6.ltx
+ texmf-doc/doc/english/tlc2/13-5-7.ltx
+ texmf-doc/doc/english/tlc2/14-4-1.ltx
+ texmf-doc/doc/english/tlc2/14-4-2.ltx
+ texmf-doc/doc/english/tlc2/2-1-1.ltx
+ texmf-doc/doc/english/tlc2/2-2-1.ltx
+ texmf-doc/doc/english/tlc2/2-2-10.ltx
+ texmf-doc/doc/english/tlc2/2-2-11.ltx
+ texmf-doc/doc/english/tlc2/2-2-12.ltx
+ texmf-doc/doc/english/tlc2/2-2-13.ltx
+ texmf-doc/doc/english/tlc2/2-2-14.ltx
+ texmf-doc/doc/english/tlc2/2-2-15.ltx
+ texmf-doc/doc/english/tlc2/2-2-16.ltx
+ texmf-doc/doc/english/tlc2/2-2-17.ltx
+ texmf-doc/doc/english/tlc2/2-2-18.ltx
+ texmf-doc/doc/english/tlc2/2-2-19.ltx
+ texmf-doc/doc/english/tlc2/2-2-2.ltx
+ texmf-doc/doc/english/tlc2/2-2-20.ltx
+ texmf-doc/doc/english/tlc2/2-2-21.ltx2
+ texmf-doc/doc/english/tlc2/2-2-22.ltx
+ texmf-doc/doc/english/tlc2/2-2-3.ltx
+ texmf-doc/doc/english/tlc2/2-2-4.ltx
+ texmf-doc/doc/english/tlc2/2-2-5.ltx
+ texmf-doc/doc/english/tlc2/2-2-6.ltx
+ texmf-doc/doc/english/tlc2/2-2-7.ltx
+ texmf-doc/doc/english/tlc2/2-2-8.ltx
+ texmf-doc/doc/english/tlc2/2-2-9.ltx
+ texmf-doc/doc/english/tlc2/2-3-1.ltx2
+ texmf-doc/doc/english/tlc2/2-3-10.ltx
+ texmf-doc/doc/english/tlc2/2-3-11.ltx
+ texmf-doc/doc/english/tlc2/2-3-12.ltx
+ texmf-doc/doc/english/tlc2/2-3-13.ltx
+ texmf-doc/doc/english/tlc2/2-3-14.ltx
+ texmf-doc/doc/english/tlc2/2-3-2.ltx
+ texmf-doc/doc/english/tlc2/2-3-3.ltx
+ texmf-doc/doc/english/tlc2/2-3-4.ltx
+ texmf-doc/doc/english/tlc2/2-3-5.ltx
+ texmf-doc/doc/english/tlc2/2-3-6.ltx
+ texmf-doc/doc/english/tlc2/2-3-7.ltx
+ texmf-doc/doc/english/tlc2/2-3-8.ltx2
+ texmf-doc/doc/english/tlc2/2-3-9.ltx
+ texmf-doc/doc/english/tlc2/2-4-1.ltx
+ texmf-doc/doc/english/tlc2/2-4-2.ltx
+ texmf-doc/doc/english/tlc2/2-4-3.ltx
+ texmf-doc/doc/english/tlc2/2-4-4.ltx2
+ texmf-doc/doc/english/tlc2/2-4-5.ltx
+ texmf-doc/doc/english/tlc2/2-4-6.ltx2
+ texmf-doc/doc/english/tlc2/2-4-7.ltx
+ texmf-doc/doc/english/tlc2/2-4-8.ltx
+ texmf-doc/doc/english/tlc2/2-4-9.ltx
+ texmf-doc/doc/english/tlc2/3-1-1.ltx
+ texmf-doc/doc/english/tlc2/3-1-10.ltx
+ texmf-doc/doc/english/tlc2/3-1-11.ltx
+ texmf-doc/doc/english/tlc2/3-1-12.ltx
+ texmf-doc/doc/english/tlc2/3-1-13.ltx
+ texmf-doc/doc/english/tlc2/3-1-14.ltx
+ texmf-doc/doc/english/tlc2/3-1-15.ltx
+ texmf-doc/doc/english/tlc2/3-1-16.ltx
+ texmf-doc/doc/english/tlc2/3-1-17.ltx
+ texmf-doc/doc/english/tlc2/3-1-18.ltx
+ texmf-doc/doc/english/tlc2/3-1-19.ltx
+ texmf-doc/doc/english/tlc2/3-1-2.ltx
+ texmf-doc/doc/english/tlc2/3-1-20.ltx
+ texmf-doc/doc/english/tlc2/3-1-21.ltx
+ texmf-doc/doc/english/tlc2/3-1-22.ltx
+ texmf-doc/doc/english/tlc2/3-1-23.ltx
+ texmf-doc/doc/english/tlc2/3-1-24.ltx
+ texmf-doc/doc/english/tlc2/3-1-25.ltx
+ texmf-doc/doc/english/tlc2/3-1-26.ltx
+ texmf-doc/doc/english/tlc2/3-1-27.ltx
+ texmf-doc/doc/english/tlc2/3-1-28.ltx
+ texmf-doc/doc/english/tlc2/3-1-29.ltx
+ texmf-doc/doc/english/tlc2/3-1-3.ltx
+ texmf-doc/doc/english/tlc2/3-1-30.ltx
+ texmf-doc/doc/english/tlc2/3-1-31.ltx
+ texmf-doc/doc/english/tlc2/3-1-32.ltx
+ texmf-doc/doc/english/tlc2/3-1-33.ltx
+ texmf-doc/doc/english/tlc2/3-1-34.ltx
+ texmf-doc/doc/english/tlc2/3-1-35.ltx
+ texmf-doc/doc/english/tlc2/3-1-36.ltx
+ texmf-doc/doc/english/tlc2/3-1-37.ltx
+ texmf-doc/doc/english/tlc2/3-1-38.ltx
+ texmf-doc/doc/english/tlc2/3-1-39.ltx
+ texmf-doc/doc/english/tlc2/3-1-4.ltx
+ texmf-doc/doc/english/tlc2/3-1-40.ltx
+ texmf-doc/doc/english/tlc2/3-1-41.ltx
+ texmf-doc/doc/english/tlc2/3-1-42.ltx
+ texmf-doc/doc/english/tlc2/3-1-43.ltx
+ texmf-doc/doc/english/tlc2/3-1-44.ltx
+ texmf-doc/doc/english/tlc2/3-1-45.ltx
+ texmf-doc/doc/english/tlc2/3-1-46.ltx
+ texmf-doc/doc/english/tlc2/3-1-47.ltx
+ texmf-doc/doc/english/tlc2/3-1-48.ltx
+ texmf-doc/doc/english/tlc2/3-1-49.ltx
+ texmf-doc/doc/english/tlc2/3-1-5.ltx
+ texmf-doc/doc/english/tlc2/3-1-50.ltx
+ texmf-doc/doc/english/tlc2/3-1-51.ltx
+ texmf-doc/doc/english/tlc2/3-1-52.ltx
+ texmf-doc/doc/english/tlc2/3-1-53.ltx
+ texmf-doc/doc/english/tlc2/3-1-6.ltx
+ texmf-doc/doc/english/tlc2/3-1-7.ltx
+ texmf-doc/doc/english/tlc2/3-1-8.ltx
+ texmf-doc/doc/english/tlc2/3-1-9.ltx
+ texmf-doc/doc/english/tlc2/3-2-1.ltx
+ texmf-doc/doc/english/tlc2/3-2-10.ltx
+ texmf-doc/doc/english/tlc2/3-2-11.ltx
+ texmf-doc/doc/english/tlc2/3-2-12.ltx
+ texmf-doc/doc/english/tlc2/3-2-13.ltx
+ texmf-doc/doc/english/tlc2/3-2-14.ltx
+ texmf-doc/doc/english/tlc2/3-2-15.ltx
+ texmf-doc/doc/english/tlc2/3-2-16.ltx
+ texmf-doc/doc/english/tlc2/3-2-17.ltx2
+ texmf-doc/doc/english/tlc2/3-2-18.ltx2
+ texmf-doc/doc/english/tlc2/3-2-19.ltx
+ texmf-doc/doc/english/tlc2/3-2-2.ltx
+ texmf-doc/doc/english/tlc2/3-2-20.ltx
+ texmf-doc/doc/english/tlc2/3-2-21.ltx2
+ texmf-doc/doc/english/tlc2/3-2-22.ltx
+ texmf-doc/doc/english/tlc2/3-2-23.ltx
+ texmf-doc/doc/english/tlc2/3-2-24.ltx2
+ texmf-doc/doc/english/tlc2/3-2-25.ltx
+ texmf-doc/doc/english/tlc2/3-2-26.ltx
+ texmf-doc/doc/english/tlc2/3-2-27.ltx
+ texmf-doc/doc/english/tlc2/3-2-28.ltx
+ texmf-doc/doc/english/tlc2/3-2-3.ltx
+ texmf-doc/doc/english/tlc2/3-2-4.ltx
+ texmf-doc/doc/english/tlc2/3-2-5.ltx
+ texmf-doc/doc/english/tlc2/3-2-6.ltx
+ texmf-doc/doc/english/tlc2/3-2-7.ltx2
+ texmf-doc/doc/english/tlc2/3-2-8.ltx
+ texmf-doc/doc/english/tlc2/3-2-9.ltx
+ texmf-doc/doc/english/tlc2/3-3-1.ltx
+ texmf-doc/doc/english/tlc2/3-3-10.ltx
+ texmf-doc/doc/english/tlc2/3-3-11.ltx
+ texmf-doc/doc/english/tlc2/3-3-12.ltx
+ texmf-doc/doc/english/tlc2/3-3-13.ltx
+ texmf-doc/doc/english/tlc2/3-3-14.ltx
+ texmf-doc/doc/english/tlc2/3-3-15.ltx
+ texmf-doc/doc/english/tlc2/3-3-16.ltx
+ texmf-doc/doc/english/tlc2/3-3-17.ltx
+ texmf-doc/doc/english/tlc2/3-3-18.ltx
+ texmf-doc/doc/english/tlc2/3-3-19.ltx
+ texmf-doc/doc/english/tlc2/3-3-2.ltx
+ texmf-doc/doc/english/tlc2/3-3-20.ltx
+ texmf-doc/doc/english/tlc2/3-3-21.ltx
+ texmf-doc/doc/english/tlc2/3-3-22.ltx
+ texmf-doc/doc/english/tlc2/3-3-23.ltx
+ texmf-doc/doc/english/tlc2/3-3-24.ltx
+ texmf-doc/doc/english/tlc2/3-3-25.ltx
+ texmf-doc/doc/english/tlc2/3-3-26.ltx
+ texmf-doc/doc/english/tlc2/3-3-27.ltx
+ texmf-doc/doc/english/tlc2/3-3-28.ltx
+ texmf-doc/doc/english/tlc2/3-3-29.ltx
+ texmf-doc/doc/english/tlc2/3-3-3.ltx
+ texmf-doc/doc/english/tlc2/3-3-30.ltx
+ texmf-doc/doc/english/tlc2/3-3-4.ltx
+ texmf-doc/doc/english/tlc2/3-3-5.ltx
+ texmf-doc/doc/english/tlc2/3-3-6.ltx
+ texmf-doc/doc/english/tlc2/3-3-7.ltx
+ texmf-doc/doc/english/tlc2/3-3-8.ltx
+ texmf-doc/doc/english/tlc2/3-3-9.ltx
+ texmf-doc/doc/english/tlc2/3-4-1.ltx
+ texmf-doc/doc/english/tlc2/3-4-10.ltx
+ texmf-doc/doc/english/tlc2/3-4-11.ltx
+ texmf-doc/doc/english/tlc2/3-4-12.ltx
+ texmf-doc/doc/english/tlc2/3-4-13.ltx
+ texmf-doc/doc/english/tlc2/3-4-14.ltx
+ texmf-doc/doc/english/tlc2/3-4-15.ltx
+ texmf-doc/doc/english/tlc2/3-4-16.ltx
+ texmf-doc/doc/english/tlc2/3-4-17.ltx
+ texmf-doc/doc/english/tlc2/3-4-18.ltx
+ texmf-doc/doc/english/tlc2/3-4-19.ltx
+ texmf-doc/doc/english/tlc2/3-4-2.ltx
+ texmf-doc/doc/english/tlc2/3-4-20.ltx
+ texmf-doc/doc/english/tlc2/3-4-21.ltx
+ texmf-doc/doc/english/tlc2/3-4-22.ltx
+ texmf-doc/doc/english/tlc2/3-4-23.ltx
+ texmf-doc/doc/english/tlc2/3-4-24.ltx
+ texmf-doc/doc/english/tlc2/3-4-25.ltx
+ texmf-doc/doc/english/tlc2/3-4-26.ltx
+ texmf-doc/doc/english/tlc2/3-4-27.ltx
+ texmf-doc/doc/english/tlc2/3-4-28.ltx
+ texmf-doc/doc/english/tlc2/3-4-29.ltx
+ texmf-doc/doc/english/tlc2/3-4-3.ltx
+ texmf-doc/doc/english/tlc2/3-4-30.ltx
+ texmf-doc/doc/english/tlc2/3-4-31.ltx
+ texmf-doc/doc/english/tlc2/3-4-32.ltx
+ texmf-doc/doc/english/tlc2/3-4-33.ltx
+ texmf-doc/doc/english/tlc2/3-4-34.ltx
+ texmf-doc/doc/english/tlc2/3-4-35.ltx
+ texmf-doc/doc/english/tlc2/3-4-36.ltx
+ texmf-doc/doc/english/tlc2/3-4-37.ltx
+ texmf-doc/doc/english/tlc2/3-4-38.ltx
+ texmf-doc/doc/english/tlc2/3-4-39.ltx
+ texmf-doc/doc/english/tlc2/3-4-4.ltx
+ texmf-doc/doc/english/tlc2/3-4-40.ltx
+ texmf-doc/doc/english/tlc2/3-4-41.ltx
+ texmf-doc/doc/english/tlc2/3-4-42.ltx
+ texmf-doc/doc/english/tlc2/3-4-5.ltx
+ texmf-doc/doc/english/tlc2/3-4-6.ltx
+ texmf-doc/doc/english/tlc2/3-4-7.ltx
+ texmf-doc/doc/english/tlc2/3-4-8.ltx
+ texmf-doc/doc/english/tlc2/3-4-9.ltx
+ texmf-doc/doc/english/tlc2/3-5-1.ltx
+ texmf-doc/doc/english/tlc2/3-5-10.ltx
+ texmf-doc/doc/english/tlc2/3-5-11.ltx
+ texmf-doc/doc/english/tlc2/3-5-12.ltx
+ texmf-doc/doc/english/tlc2/3-5-13.ltx
+ texmf-doc/doc/english/tlc2/3-5-14.ltx
+ texmf-doc/doc/english/tlc2/3-5-15.ltx
+ texmf-doc/doc/english/tlc2/3-5-16.ltx
+ texmf-doc/doc/english/tlc2/3-5-17.ltx
+ texmf-doc/doc/english/tlc2/3-5-18.ltx
+ texmf-doc/doc/english/tlc2/3-5-19.ltx
+ texmf-doc/doc/english/tlc2/3-5-2.ltx
+ texmf-doc/doc/english/tlc2/3-5-20.ltx
+ texmf-doc/doc/english/tlc2/3-5-3.ltx
+ texmf-doc/doc/english/tlc2/3-5-4.ltx
+ texmf-doc/doc/english/tlc2/3-5-5.ltx
+ texmf-doc/doc/english/tlc2/3-5-6.ltx
+ texmf-doc/doc/english/tlc2/3-5-7.ltx
+ texmf-doc/doc/english/tlc2/3-5-8.ltx
+ texmf-doc/doc/english/tlc2/3-5-9.ltx
+ texmf-doc/doc/english/tlc2/4-1-1.ltx
+ texmf-doc/doc/english/tlc2/4-2-1.ltx
+ texmf-doc/doc/english/tlc2/4-2-10.ltx
+ texmf-doc/doc/english/tlc2/4-2-11.ltx
+ texmf-doc/doc/english/tlc2/4-2-12.ltx
+ texmf-doc/doc/english/tlc2/4-2-13.ltx
+ texmf-doc/doc/english/tlc2/4-2-2.ltx
+ texmf-doc/doc/english/tlc2/4-2-3.ltx
+ texmf-doc/doc/english/tlc2/4-2-4.ltx
+ texmf-doc/doc/english/tlc2/4-2-5.ltx
+ texmf-doc/doc/english/tlc2/4-2-6.ltx
+ texmf-doc/doc/english/tlc2/4-2-7.ltx
+ texmf-doc/doc/english/tlc2/4-2-8.ltx2
+ texmf-doc/doc/english/tlc2/4-2-9.ltx2
+ texmf-doc/doc/english/tlc2/4-3-1.ltx2
+ texmf-doc/doc/english/tlc2/4-3-2.ltx2
+ texmf-doc/doc/english/tlc2/4-3-3.ltx2
+ texmf-doc/doc/english/tlc2/4-4-1.ltx
+ texmf-doc/doc/english/tlc2/4-4-10.ltx2
+ texmf-doc/doc/english/tlc2/4-4-11.ltx2
+ texmf-doc/doc/english/tlc2/4-4-12.ltx2
+ texmf-doc/doc/english/tlc2/4-4-13.ltx2
+ texmf-doc/doc/english/tlc2/4-4-14.ltx
+ texmf-doc/doc/english/tlc2/4-4-15.ltx2
+ texmf-doc/doc/english/tlc2/4-4-2.ltx
+ texmf-doc/doc/english/tlc2/4-4-3.ltx
+ texmf-doc/doc/english/tlc2/4-4-4.ltx2
+ texmf-doc/doc/english/tlc2/4-4-5.ltx2
+ texmf-doc/doc/english/tlc2/4-4-6.ltx2
+ texmf-doc/doc/english/tlc2/4-4-7.ltx2
+ texmf-doc/doc/english/tlc2/4-4-8.ltx2
+ texmf-doc/doc/english/tlc2/4-4-9.ltx2
+ texmf-doc/doc/english/tlc2/4-5-1.ltx2
+ texmf-doc/doc/english/tlc2/4-5-2.ltx2
+ texmf-doc/doc/english/tlc2/5-1-1.ltx
+ texmf-doc/doc/english/tlc2/5-1-2.ltx
+ texmf-doc/doc/english/tlc2/5-1-3.ltx
+ texmf-doc/doc/english/tlc2/5-1-4.ltx
+ texmf-doc/doc/english/tlc2/5-2-1.ltx
+ texmf-doc/doc/english/tlc2/5-2-10.ltx
+ texmf-doc/doc/english/tlc2/5-2-11.ltx
+ texmf-doc/doc/english/tlc2/5-2-12.ltx
+ texmf-doc/doc/english/tlc2/5-2-13.ltx
+ texmf-doc/doc/english/tlc2/5-2-2.ltx
+ texmf-doc/doc/english/tlc2/5-2-3.ltx
+ texmf-doc/doc/english/tlc2/5-2-4.ltx
+ texmf-doc/doc/english/tlc2/5-2-5.ltx
+ texmf-doc/doc/english/tlc2/5-2-6.ltx
+ texmf-doc/doc/english/tlc2/5-2-7.ltx
+ texmf-doc/doc/english/tlc2/5-2-8.ltx
+ texmf-doc/doc/english/tlc2/5-2-9.ltx
+ texmf-doc/doc/english/tlc2/5-3-1.ltx
+ texmf-doc/doc/english/tlc2/5-3-2.ltx
+ texmf-doc/doc/english/tlc2/5-3-3.ltx
+ texmf-doc/doc/english/tlc2/5-3-4.ltx
+ texmf-doc/doc/english/tlc2/5-3-5.ltx
+ texmf-doc/doc/english/tlc2/5-3-6.ltx
+ texmf-doc/doc/english/tlc2/5-4-1.ltx2
+ texmf-doc/doc/english/tlc2/5-4-2.ltx2
+ texmf-doc/doc/english/tlc2/5-4-3.ltx2
+ texmf-doc/doc/english/tlc2/5-4-4.ltx
+ texmf-doc/doc/english/tlc2/5-4-5.ltx2
+ texmf-doc/doc/english/tlc2/5-4-6.ltx2
+ texmf-doc/doc/english/tlc2/5-5-1.ltx
+ texmf-doc/doc/english/tlc2/5-5-2.ltx
+ texmf-doc/doc/english/tlc2/5-6-1.ltx
+ texmf-doc/doc/english/tlc2/5-6-2.ltx
+ texmf-doc/doc/english/tlc2/5-6-3.ltx
+ texmf-doc/doc/english/tlc2/5-6-4.ltx
+ texmf-doc/doc/english/tlc2/5-6-5.ltx
+ texmf-doc/doc/english/tlc2/5-6-6.ltx
+ texmf-doc/doc/english/tlc2/5-6-7.ltx
+ texmf-doc/doc/english/tlc2/5-6-8.ltx
+ texmf-doc/doc/english/tlc2/5-7-1.ltx
+ texmf-doc/doc/english/tlc2/5-7-2.ltx
+ texmf-doc/doc/english/tlc2/5-7-3.ltx
+ texmf-doc/doc/english/tlc2/5-7-4.ltx
+ texmf-doc/doc/english/tlc2/5-7-5.ltx
+ texmf-doc/doc/english/tlc2/5-7-6.ltx
+ texmf-doc/doc/english/tlc2/5-7-7.ltx
+ texmf-doc/doc/english/tlc2/5-7-8.ltx
+ texmf-doc/doc/english/tlc2/5-8-1.ltx
+ texmf-doc/doc/english/tlc2/5-8-2.ltx
+ texmf-doc/doc/english/tlc2/5-9-1.ltx
+ texmf-doc/doc/english/tlc2/5-9-2.ltx
+ texmf-doc/doc/english/tlc2/5-9-3.ltx
+ texmf-doc/doc/english/tlc2/5-9-4.ltx
+ texmf-doc/doc/english/tlc2/5-9-5.ltx
+ texmf-doc/doc/english/tlc2/5-9-6.ltx
+ texmf-doc/doc/english/tlc2/6-3-1.ltx
+ texmf-doc/doc/english/tlc2/6-3-2.ltx
+ texmf-doc/doc/english/tlc2/6-3-3.ltx
+ texmf-doc/doc/english/tlc2/6-3-4.ltx2
+ texmf-doc/doc/english/tlc2/6-3-5.ltx
+ texmf-doc/doc/english/tlc2/6-3-6.ltx2
+ texmf-doc/doc/english/tlc2/6-3-7.ltx2
+ texmf-doc/doc/english/tlc2/6-4-1.ltx
+ texmf-doc/doc/english/tlc2/6-4-2.ltx
+ texmf-doc/doc/english/tlc2/6-4-3.ltx
+ texmf-doc/doc/english/tlc2/6-4-4.ltx
+ texmf-doc/doc/english/tlc2/6-4-5.ltx2
+ texmf-doc/doc/english/tlc2/6-4-6.ltx2
+ texmf-doc/doc/english/tlc2/6-4-7.ltx
+ texmf-doc/doc/english/tlc2/6-4-8.ltx
+ texmf-doc/doc/english/tlc2/6-5-1.ltx
+ texmf-doc/doc/english/tlc2/6-5-10.ltx
+ texmf-doc/doc/english/tlc2/6-5-11.ltx
+ texmf-doc/doc/english/tlc2/6-5-12.ltx
+ texmf-doc/doc/english/tlc2/6-5-13.ltx
+ texmf-doc/doc/english/tlc2/6-5-14.ltx2
+ texmf-doc/doc/english/tlc2/6-5-15.ltx
+ texmf-doc/doc/english/tlc2/6-5-16.ltx
+ texmf-doc/doc/english/tlc2/6-5-17.ltx
+ texmf-doc/doc/english/tlc2/6-5-18.ltx2
+ texmf-doc/doc/english/tlc2/6-5-2.ltx
+ texmf-doc/doc/english/tlc2/6-5-3.ltx
+ texmf-doc/doc/english/tlc2/6-5-4.ltx
+ texmf-doc/doc/english/tlc2/6-5-5.ltx
+ texmf-doc/doc/english/tlc2/6-5-6.ltx
+ texmf-doc/doc/english/tlc2/6-5-7.ltx2
+ texmf-doc/doc/english/tlc2/6-5-8.ltx
+ texmf-doc/doc/english/tlc2/6-5-9.ltx
+ texmf-doc/doc/english/tlc2/7-10-1.ltx
+ texmf-doc/doc/english/tlc2/7-12-1.ltx
+ texmf-doc/doc/english/tlc2/7-3-1.ltx
+ texmf-doc/doc/english/tlc2/7-3-2.ltx
+ texmf-doc/doc/english/tlc2/7-3-3.ltx
+ texmf-doc/doc/english/tlc2/7-3-4.ltx
+ texmf-doc/doc/english/tlc2/7-3-5.ltx
+ texmf-doc/doc/english/tlc2/7-3-6.ltx
+ texmf-doc/doc/english/tlc2/7-3-7.ltx
+ texmf-doc/doc/english/tlc2/7-3-8.ltx
+ texmf-doc/doc/english/tlc2/7-4-1.ltx
+ texmf-doc/doc/english/tlc2/7-4-2.ltx
+ texmf-doc/doc/english/tlc2/7-4-3.ltx
+ texmf-doc/doc/english/tlc2/7-4-4.ltx
+ texmf-doc/doc/english/tlc2/7-4-5.ltx
+ texmf-doc/doc/english/tlc2/7-5-1.ltx
+ texmf-doc/doc/english/tlc2/7-5-10.ltx
+ texmf-doc/doc/english/tlc2/7-5-11.ltx
+ texmf-doc/doc/english/tlc2/7-5-12.ltx
+ texmf-doc/doc/english/tlc2/7-5-13.ltx
+ texmf-doc/doc/english/tlc2/7-5-14.ltx
+ texmf-doc/doc/english/tlc2/7-5-15.ltx
+ texmf-doc/doc/english/tlc2/7-5-16.ltx
+ texmf-doc/doc/english/tlc2/7-5-17.ltx
+ texmf-doc/doc/english/tlc2/7-5-2.ltx
+ texmf-doc/doc/english/tlc2/7-5-3.ltx
+ texmf-doc/doc/english/tlc2/7-5-4.ltx
+ texmf-doc/doc/english/tlc2/7-5-5.ltx
+ texmf-doc/doc/english/tlc2/7-5-6.ltx
+ texmf-doc/doc/english/tlc2/7-5-7.ltx
+ texmf-doc/doc/english/tlc2/7-5-8.ltx
+ texmf-doc/doc/english/tlc2/7-5-9.ltx
+ texmf-doc/doc/english/tlc2/7-6-1.ltx
+ texmf-doc/doc/english/tlc2/7-6-10.ltx
+ texmf-doc/doc/english/tlc2/7-6-11.ltx
+ texmf-doc/doc/english/tlc2/7-6-12.ltx
+ texmf-doc/doc/english/tlc2/7-6-2.ltx
+ texmf-doc/doc/english/tlc2/7-6-3.ltx
+ texmf-doc/doc/english/tlc2/7-6-4.ltx
+ texmf-doc/doc/english/tlc2/7-6-5.ltx
+ texmf-doc/doc/english/tlc2/7-6-6.ltx
+ texmf-doc/doc/english/tlc2/7-6-7.ltx
+ texmf-doc/doc/english/tlc2/7-6-8.ltx
+ texmf-doc/doc/english/tlc2/7-6-9.ltx
+ texmf-doc/doc/english/tlc2/7-7-1.ltx
+ texmf-doc/doc/english/tlc2/7-7-10.ltx
+ texmf-doc/doc/english/tlc2/7-7-11.ltx
+ texmf-doc/doc/english/tlc2/7-7-12.ltx
+ texmf-doc/doc/english/tlc2/7-7-13.ltx
+ texmf-doc/doc/english/tlc2/7-7-14.ltx
+ texmf-doc/doc/english/tlc2/7-7-15.ltx
+ texmf-doc/doc/english/tlc2/7-7-16.ltx
+ texmf-doc/doc/english/tlc2/7-7-17.ltx
+ texmf-doc/doc/english/tlc2/7-7-18.ltx
+ texmf-doc/doc/english/tlc2/7-7-19.ltx
+ texmf-doc/doc/english/tlc2/7-7-2.ltx
+ texmf-doc/doc/english/tlc2/7-7-20.ltx
+ texmf-doc/doc/english/tlc2/7-7-21.ltx
+ texmf-doc/doc/english/tlc2/7-7-22.ltx
+ texmf-doc/doc/english/tlc2/7-7-23.ltx
+ texmf-doc/doc/english/tlc2/7-7-24.ltx
+ texmf-doc/doc/english/tlc2/7-7-25.ltx
+ texmf-doc/doc/english/tlc2/7-7-26.ltx
+ texmf-doc/doc/english/tlc2/7-7-27.ltx
+ texmf-doc/doc/english/tlc2/7-7-28.ltx
+ texmf-doc/doc/english/tlc2/7-7-29.ltx
+ texmf-doc/doc/english/tlc2/7-7-3.ltx
+ texmf-doc/doc/english/tlc2/7-7-4.ltx
+ texmf-doc/doc/english/tlc2/7-7-5.ltx
+ texmf-doc/doc/english/tlc2/7-7-6.ltx
+ texmf-doc/doc/english/tlc2/7-7-7.ltx
+ texmf-doc/doc/english/tlc2/7-7-8.ltx
+ texmf-doc/doc/english/tlc2/7-7-9.ltx
+ texmf-doc/doc/english/tlc2/7-8-1.ltx
+ texmf-doc/doc/english/tlc2/7-8-10.ltx
+ texmf-doc/doc/english/tlc2/7-8-11.ltx
+ texmf-doc/doc/english/tlc2/7-8-12.ltx
+ texmf-doc/doc/english/tlc2/7-8-13.ltx
+ texmf-doc/doc/english/tlc2/7-8-14.ltx
+ texmf-doc/doc/english/tlc2/7-8-15.ltx
+ texmf-doc/doc/english/tlc2/7-8-16.ltx
+ texmf-doc/doc/english/tlc2/7-8-17.ltx
+ texmf-doc/doc/english/tlc2/7-8-18.ltx
+ texmf-doc/doc/english/tlc2/7-8-19.ltx
+ texmf-doc/doc/english/tlc2/7-8-2.ltx
+ texmf-doc/doc/english/tlc2/7-8-20.ltx
+ texmf-doc/doc/english/tlc2/7-8-21.ltx
+ texmf-doc/doc/english/tlc2/7-8-22.ltx
+ texmf-doc/doc/english/tlc2/7-8-3.ltx
+ texmf-doc/doc/english/tlc2/7-8-4.ltx
+ texmf-doc/doc/english/tlc2/7-8-5.ltx
+ texmf-doc/doc/english/tlc2/7-8-6.ltx
+ texmf-doc/doc/english/tlc2/7-8-7.ltx
+ texmf-doc/doc/english/tlc2/7-8-8.ltx
+ texmf-doc/doc/english/tlc2/7-8-9.ltx
+ texmf-doc/doc/english/tlc2/7-9-1.ltx
+ texmf-doc/doc/english/tlc2/7-9-2.ltx
+ texmf-doc/doc/english/tlc2/8-2-1.ltx
+ texmf-doc/doc/english/tlc2/8-2-10.ltx
+ texmf-doc/doc/english/tlc2/8-2-11.ltx
+ texmf-doc/doc/english/tlc2/8-2-12.ltx
+ texmf-doc/doc/english/tlc2/8-2-13.ltx
+ texmf-doc/doc/english/tlc2/8-2-14.ltx
+ texmf-doc/doc/english/tlc2/8-2-15.ltx
+ texmf-doc/doc/english/tlc2/8-2-16.ltx
+ texmf-doc/doc/english/tlc2/8-2-17.ltx
+ texmf-doc/doc/english/tlc2/8-2-18.ltx
+ texmf-doc/doc/english/tlc2/8-2-19.ltx
+ texmf-doc/doc/english/tlc2/8-2-2.ltx
+ texmf-doc/doc/english/tlc2/8-2-20.ltx
+ texmf-doc/doc/english/tlc2/8-2-21.ltx
+ texmf-doc/doc/english/tlc2/8-2-22.ltx
+ texmf-doc/doc/english/tlc2/8-2-23.ltx
+ texmf-doc/doc/english/tlc2/8-2-24.ltx
+ texmf-doc/doc/english/tlc2/8-2-25.ltx
+ texmf-doc/doc/english/tlc2/8-2-26.ltx
+ texmf-doc/doc/english/tlc2/8-2-27.ltx
+ texmf-doc/doc/english/tlc2/8-2-28.ltx
+ texmf-doc/doc/english/tlc2/8-2-29.ltx
+ texmf-doc/doc/english/tlc2/8-2-3.ltx
+ texmf-doc/doc/english/tlc2/8-2-4.ltx
+ texmf-doc/doc/english/tlc2/8-2-5.ltx
+ texmf-doc/doc/english/tlc2/8-2-6.ltx
+ texmf-doc/doc/english/tlc2/8-2-7.ltx
+ texmf-doc/doc/english/tlc2/8-2-8.ltx
+ texmf-doc/doc/english/tlc2/8-2-9.ltx
+ texmf-doc/doc/english/tlc2/8-3-1.ltx
+ texmf-doc/doc/english/tlc2/8-3-10.ltx
+ texmf-doc/doc/english/tlc2/8-3-11.ltx
+ texmf-doc/doc/english/tlc2/8-3-12.ltx
+ texmf-doc/doc/english/tlc2/8-3-13.ltx
+ texmf-doc/doc/english/tlc2/8-3-14.ltx
+ texmf-doc/doc/english/tlc2/8-3-15.ltx
+ texmf-doc/doc/english/tlc2/8-3-16.ltx
+ texmf-doc/doc/english/tlc2/8-3-17.ltx
+ texmf-doc/doc/english/tlc2/8-3-18.ltx
+ texmf-doc/doc/english/tlc2/8-3-19.ltx
+ texmf-doc/doc/english/tlc2/8-3-2.ltx
+ texmf-doc/doc/english/tlc2/8-3-20.ltx
+ texmf-doc/doc/english/tlc2/8-3-21.ltx
+ texmf-doc/doc/english/tlc2/8-3-22.ltx
+ texmf-doc/doc/english/tlc2/8-3-23.ltx
+ texmf-doc/doc/english/tlc2/8-3-24.ltx
+ texmf-doc/doc/english/tlc2/8-3-25.ltx
+ texmf-doc/doc/english/tlc2/8-3-26.ltx
+ texmf-doc/doc/english/tlc2/8-3-27.ltx
+ texmf-doc/doc/english/tlc2/8-3-28.ltx
+ texmf-doc/doc/english/tlc2/8-3-29.ltx
+ texmf-doc/doc/english/tlc2/8-3-3.ltx
+ texmf-doc/doc/english/tlc2/8-3-30.ltx
+ texmf-doc/doc/english/tlc2/8-3-31.ltx
+ texmf-doc/doc/english/tlc2/8-3-32.ltx
+ texmf-doc/doc/english/tlc2/8-3-33.ltx
+ texmf-doc/doc/english/tlc2/8-3-34.ltx
+ texmf-doc/doc/english/tlc2/8-3-35.ltx
+ texmf-doc/doc/english/tlc2/8-3-36.ltx
+ texmf-doc/doc/english/tlc2/8-3-37.ltx
+ texmf-doc/doc/english/tlc2/8-3-38.ltx
+ texmf-doc/doc/english/tlc2/8-3-39.ltx
+ texmf-doc/doc/english/tlc2/8-3-4.ltx
+ texmf-doc/doc/english/tlc2/8-3-5.ltx
+ texmf-doc/doc/english/tlc2/8-3-6.ltx
+ texmf-doc/doc/english/tlc2/8-3-7.ltx
+ texmf-doc/doc/english/tlc2/8-3-8.ltx
+ texmf-doc/doc/english/tlc2/8-3-9.ltx
+ texmf-doc/doc/english/tlc2/8-4-1.ltx
+ texmf-doc/doc/english/tlc2/8-4-10.ltx
+ texmf-doc/doc/english/tlc2/8-4-11.ltx
+ texmf-doc/doc/english/tlc2/8-4-12.ltx
+ texmf-doc/doc/english/tlc2/8-4-13.ltx
+ texmf-doc/doc/english/tlc2/8-4-14.ltx
+ texmf-doc/doc/english/tlc2/8-4-2.ltx
+ texmf-doc/doc/english/tlc2/8-4-3.ltx
+ texmf-doc/doc/english/tlc2/8-4-4.ltx
+ texmf-doc/doc/english/tlc2/8-4-5.ltx
+ texmf-doc/doc/english/tlc2/8-4-6.ltx
+ texmf-doc/doc/english/tlc2/8-4-7.ltx
+ texmf-doc/doc/english/tlc2/8-4-8.ltx
+ texmf-doc/doc/english/tlc2/8-4-9.ltx
+ texmf-doc/doc/english/tlc2/8-5-1.ltx
+ texmf-doc/doc/english/tlc2/8-5-2.ltx
+ texmf-doc/doc/english/tlc2/8-5-3.ltx
+ texmf-doc/doc/english/tlc2/8-5-4.ltx
+ texmf-doc/doc/english/tlc2/8-6-1.ltx
+ texmf-doc/doc/english/tlc2/8-6-2.ltx
+ texmf-doc/doc/english/tlc2/8-6-3.ltx
+ texmf-doc/doc/english/tlc2/8-6-4.ltx
+ texmf-doc/doc/english/tlc2/8-7-1.ltx
+ texmf-doc/doc/english/tlc2/8-7-2.ltx
+ texmf-doc/doc/english/tlc2/8-7-3.ltx
+ texmf-doc/doc/english/tlc2/8-7-4.ltx
+ texmf-doc/doc/english/tlc2/8-7-5.ltx
+ texmf-doc/doc/english/tlc2/8-7-6.ltx
+ texmf-doc/doc/english/tlc2/8-7-7.ltx
+ texmf-doc/doc/english/tlc2/8-8-1.ltx
+ texmf-doc/doc/english/tlc2/8-8-10.ltx
+ texmf-doc/doc/english/tlc2/8-8-11.ltx
+ texmf-doc/doc/english/tlc2/8-8-12.ltx
+ texmf-doc/doc/english/tlc2/8-8-13.ltx
+ texmf-doc/doc/english/tlc2/8-8-14.ltx
+ texmf-doc/doc/english/tlc2/8-8-15.ltx
+ texmf-doc/doc/english/tlc2/8-8-16.ltx
+ texmf-doc/doc/english/tlc2/8-8-17.ltx
+ texmf-doc/doc/english/tlc2/8-8-18.ltx
+ texmf-doc/doc/english/tlc2/8-8-19.ltx
+ texmf-doc/doc/english/tlc2/8-8-2.ltx
+ texmf-doc/doc/english/tlc2/8-8-20.ltx
+ texmf-doc/doc/english/tlc2/8-8-21.ltx
+ texmf-doc/doc/english/tlc2/8-8-22.ltx
+ texmf-doc/doc/english/tlc2/8-8-23.ltx
+ texmf-doc/doc/english/tlc2/8-8-24.ltx
+ texmf-doc/doc/english/tlc2/8-8-25.ltx
+ texmf-doc/doc/english/tlc2/8-8-3.ltx
+ texmf-doc/doc/english/tlc2/8-8-4.ltx
+ texmf-doc/doc/english/tlc2/8-8-5.ltx
+ texmf-doc/doc/english/tlc2/8-8-6.ltx
+ texmf-doc/doc/english/tlc2/8-8-7.ltx
+ texmf-doc/doc/english/tlc2/8-8-8.ltx
+ texmf-doc/doc/english/tlc2/8-8-9.ltx
+ texmf-doc/doc/english/tlc2/8-9-1.ltx
+ texmf-doc/doc/english/tlc2/8-9-2.ltx
+ texmf-doc/doc/english/tlc2/8-9-3.ltx
+ texmf-doc/doc/english/tlc2/8-9-4.ltx
+ texmf-doc/doc/english/tlc2/8-9-5.ltx
+ texmf-doc/doc/english/tlc2/8-9-6.ltx
+ texmf-doc/doc/english/tlc2/8-9-7.ltx
+ texmf-doc/doc/english/tlc2/8-9-8.ltx
+ texmf-doc/doc/english/tlc2/9-2-1.ltx
+ texmf-doc/doc/english/tlc2/9-2-2.ltx
+ texmf-doc/doc/english/tlc2/9-2-3.ltx
+ texmf-doc/doc/english/tlc2/9-2-4.ltx
+ texmf-doc/doc/english/tlc2/9-2-5.ltx
+ texmf-doc/doc/english/tlc2/9-2-6.ltx
+ texmf-doc/doc/english/tlc2/9-2-7.ltx
+ texmf-doc/doc/english/tlc2/9-2-8.ltx
+ texmf-doc/doc/english/tlc2/9-3-1.ltx
+ texmf-doc/doc/english/tlc2/9-3-10.ltx
+ texmf-doc/doc/english/tlc2/9-3-11.ltx
+ texmf-doc/doc/english/tlc2/9-3-12.ltx
+ texmf-doc/doc/english/tlc2/9-3-13.ltx
+ texmf-doc/doc/english/tlc2/9-3-14.ltx
+ texmf-doc/doc/english/tlc2/9-3-15.ltx
+ texmf-doc/doc/english/tlc2/9-3-16.ltx
+ texmf-doc/doc/english/tlc2/9-3-17.ltx
+ texmf-doc/doc/english/tlc2/9-3-18.ltx
+ texmf-doc/doc/english/tlc2/9-3-19.ltx
+ texmf-doc/doc/english/tlc2/9-3-2.ltx
+ texmf-doc/doc/english/tlc2/9-3-20.ltx
+ texmf-doc/doc/english/tlc2/9-3-21.ltx
+ texmf-doc/doc/english/tlc2/9-3-22.ltx
+ texmf-doc/doc/english/tlc2/9-3-23.ltx
+ texmf-doc/doc/english/tlc2/9-3-24.ltx
+ texmf-doc/doc/english/tlc2/9-3-25.ltx
+ texmf-doc/doc/english/tlc2/9-3-26.ltx
+ texmf-doc/doc/english/tlc2/9-3-27.ltx
+ texmf-doc/doc/english/tlc2/9-3-28.ltx
+ texmf-doc/doc/english/tlc2/9-3-29.ltx
+ texmf-doc/doc/english/tlc2/9-3-3.ltx
+ texmf-doc/doc/english/tlc2/9-3-30.ltx
+ texmf-doc/doc/english/tlc2/9-3-31.ltx
+ texmf-doc/doc/english/tlc2/9-3-32.ltx
+ texmf-doc/doc/english/tlc2/9-3-33.ltx
+ texmf-doc/doc/english/tlc2/9-3-34.ltx
+ texmf-doc/doc/english/tlc2/9-3-35.ltx
+ texmf-doc/doc/english/tlc2/9-3-36.ltx
+ texmf-doc/doc/english/tlc2/9-3-37.ltx
+ texmf-doc/doc/english/tlc2/9-3-38.ltx
+ texmf-doc/doc/english/tlc2/9-3-39.ltx
+ texmf-doc/doc/english/tlc2/9-3-4.ltx
+ texmf-doc/doc/english/tlc2/9-3-5.ltx
+ texmf-doc/doc/english/tlc2/9-3-6.ltx
+ texmf-doc/doc/english/tlc2/9-3-7.ltx
+ texmf-doc/doc/english/tlc2/9-3-8.ltx
+ texmf-doc/doc/english/tlc2/9-3-9.ltx
+ texmf-doc/doc/english/tlc2/9-4-1.ltx
+ texmf-doc/doc/english/tlc2/9-4-2.ltx
+ texmf-doc/doc/english/tlc2/9-4-3.ltx
+ texmf-doc/doc/english/tlc2/9-4-4.ltx
+ texmf-doc/doc/english/tlc2/9-4-5.ltx
+ texmf-doc/doc/english/tlc2/9-5-1.ltx
+ texmf-doc/doc/english/tlc2/A-1-1.ltx
+ texmf-doc/doc/english/tlc2/A-1-10.ltx
+ texmf-doc/doc/english/tlc2/A-1-11.ltx
+ texmf-doc/doc/english/tlc2/A-1-12.ltx
+ texmf-doc/doc/english/tlc2/A-1-13.ltx
+ texmf-doc/doc/english/tlc2/A-1-14.ltx
+ texmf-doc/doc/english/tlc2/A-1-15.ltx
+ texmf-doc/doc/english/tlc2/A-1-16.ltx
+ texmf-doc/doc/english/tlc2/A-1-17.ltx
+ texmf-doc/doc/english/tlc2/A-1-2.ltx
+ texmf-doc/doc/english/tlc2/A-1-3.ltx
+ texmf-doc/doc/english/tlc2/A-1-4.ltx
+ texmf-doc/doc/english/tlc2/A-1-5.ltx
+ texmf-doc/doc/english/tlc2/A-1-6.ltx
+ texmf-doc/doc/english/tlc2/A-1-7.ltx
+ texmf-doc/doc/english/tlc2/A-1-8.ltx
+ texmf-doc/doc/english/tlc2/A-1-9.ltx
+ texmf-doc/doc/english/tlc2/A-2-1.ltx
+ texmf-doc/doc/english/tlc2/A-2-10.ltx
+ texmf-doc/doc/english/tlc2/A-2-11.ltx
+ texmf-doc/doc/english/tlc2/A-2-12.ltx
+ texmf-doc/doc/english/tlc2/A-2-13.ltx
+ texmf-doc/doc/english/tlc2/A-2-14.ltx
+ texmf-doc/doc/english/tlc2/A-2-15.ltx
+ texmf-doc/doc/english/tlc2/A-2-16.ltx
+ texmf-doc/doc/english/tlc2/A-2-17.ltx
+ texmf-doc/doc/english/tlc2/A-2-18.ltx
+ texmf-doc/doc/english/tlc2/A-2-19.ltx
+ texmf-doc/doc/english/tlc2/A-2-2.ltx
+ texmf-doc/doc/english/tlc2/A-2-20.ltx
+ texmf-doc/doc/english/tlc2/A-2-21.ltx
+ texmf-doc/doc/english/tlc2/A-2-3.ltx
+ texmf-doc/doc/english/tlc2/A-2-4.ltx
+ texmf-doc/doc/english/tlc2/A-2-5.ltx
+ texmf-doc/doc/english/tlc2/A-2-6.ltx
+ texmf-doc/doc/english/tlc2/A-2-7.ltx
+ texmf-doc/doc/english/tlc2/A-2-8.ltx
+ texmf-doc/doc/english/tlc2/A-2-9.ltx
+ texmf-doc/doc/english/tlc2/A-3-1.ltx
+ texmf-doc/doc/english/tlc2/A-3-10.ltx
+ texmf-doc/doc/english/tlc2/A-3-11.ltx
+ texmf-doc/doc/english/tlc2/A-3-2.ltx
+ texmf-doc/doc/english/tlc2/A-3-3.ltx
+ texmf-doc/doc/english/tlc2/A-3-4.ltx
+ texmf-doc/doc/english/tlc2/A-3-5.ltx
+ texmf-doc/doc/english/tlc2/A-3-6.ltx
+ texmf-doc/doc/english/tlc2/A-3-7.ltx
+ texmf-doc/doc/english/tlc2/A-3-8.ltx
+ texmf-doc/doc/english/tlc2/A-3-9.ltx2
+ texmf-doc/doc/english/tlc2/B-3-1.ltx
+ texmf-doc/doc/english/tlc2/Escher.ps
+ texmf-doc/doc/english/tlc2/cat.ps
+ texmf-doc/doc/english/tlc2/elephant.ps
+ texmf-doc/doc/english/tlc2/indexexa.ltx
+ texmf-doc/doc/english/tlc2/jura.bib
+ texmf-doc/doc/english/tlc2/partial.toc
+ texmf-doc/doc/english/tlc2/rosette.ps
+ texmf-doc/doc/english/tlc2/tex.bib
+ texmf-doc/doc/english/tlc2/ttctexa.cls
+ texmf-doc/doc/english/tlc2/ttctexamargin.cls
+ texmf-doc/doc/english/tlc2/ttctexareport.cls
+ texmf-doc/doc/english/tlc2/w.eps
+ texmf-doc/doc/english/tlc2/w.ps
+
+name tmmath
+category Package
+revision 1395
+shortdesc Support for using the Micropress TM-Math fonts.
+longdesc Support for typesetting math in a style that suits the Adobe
+longdesc Times text fonts. Commercial (Adobe type 1) versions of the HV-
+longdesc Math fonts are available from Micropress; free bitmap versions
+longdesc of the fonts from the Micropress fonts directories.
+docfiles size=2783
+ texmf-dist/doc/latex/tmmath/tmmaths.txt
+srcfiles size=13740
+ texmf-dist/source/latex/tmmath/tmmaths.dtx
+ texmf-dist/source/latex/tmmath/tmmaths.ins
+runfiles size=6487
+ texmf-dist/tex/latex/tmmath/tmmaths.sty
+catalogue-version 2.4
+catalogue-date 2007-01-17 10:01:14 +0100
+catalogue-ctan /macros/latex/contrib/psnfssx/tmmath
+catalogue-license lppl
+
+name tocbibind
+category Package
+revision 1396
+shortdesc Add bibliography/index/contents to Table of Contents.
+longdesc Automatically adds the bibliography and/or the index and/or the
+longdesc contents, etc., to the Table of Contents listing.
+docfiles size=203700
+ texmf-dist/doc/latex/tocbibind/README details="Readme"
+ texmf-dist/doc/latex/tocbibind/tocbibind.pdf details="Package documentation"
+srcfiles size=47124
+ texmf-dist/source/latex/tocbibind/tocbibind.dtx
+ texmf-dist/source/latex/tocbibind/tocbibind.ins
+runfiles size=9245
+ texmf-dist/tex/latex/tocbibind/tocbibind.sty
+catalogue-version 1.5g
+catalogue-date 2007-01-17 10:01:14 +0100
+catalogue-ctan /macros/latex/contrib/tocbibind
+catalogue-license lppl
+
+name tocloft
+category Package
+revision 1397
+shortdesc Control table of contents, figures, etc.
+longdesc Provides control over the typography of the Table of Contents,
+longdesc List of Figures and List of Tables, and the ability to create
+longdesc new `List of ...'. The ToC \parskip can be changed.
+docfiles size=324012
+ texmf-dist/doc/latex/tocloft/README details="Readme"
+ texmf-dist/doc/latex/tocloft/tocloft.pdf details="Package documentation"
+srcfiles size=135154
+ texmf-dist/source/latex/tocloft/tocloft.dtx
+ texmf-dist/source/latex/tocloft/tocloft.ins
+runfiles size=34514
+ texmf-dist/tex/latex/tocloft/tocloft.sty
+catalogue-version 2.3c
+catalogue-date 2006-12-23 09:07:09 +0100
+catalogue-ctan /macros/latex/contrib/tocloft
+catalogue-license lppl1.3
+
+name tocvsec2
+category Package
+revision 2382
+shortdesc Section numbering and table of contents control.
+longdesc Provides control over section numbering (without recourse to
+longdesc starred sectional commands) and/or the entries in the Table of
+longdesc Contents on a section by section basis.
+docfiles size=165850
+ texmf-dist/doc/latex/tocvsec2/README details="Readme"
+ texmf-dist/doc/latex/tocvsec2/tocvsec2.pdf details="Package documentation"
+srcfiles size=23157
+ texmf-dist/source/latex/tocvsec2/tocvsec2.dtx
+ texmf-dist/source/latex/tocvsec2/tocvsec2.ins
+runfiles size=4554
+ texmf-dist/tex/latex/tocvsec2/tocvsec2.sty
+catalogue-version 1.2
+catalogue-date 2006-12-23 09:07:09 +0100
+catalogue-ctan /macros/latex/contrib/tocvsec2
+catalogue-license lppl1.3
+
+name todo
+category Package
+revision 1487
+shortdesc Make a to-do list for a document.
+longdesc The package allows you to insert "to do" marks in your
+longdesc document, to make lists of such items, and to cross-reference
+longdesc to them.
+docfiles size=13240
+ texmf-dist/doc/latex/todo/todo.dvi
+srcfiles size=11164
+ texmf-dist/source/latex/todo/todo.dtx
+ texmf-dist/source/latex/todo/todo.ins
+runfiles size=2065
+ texmf-dist/tex/latex/todo/todo.sty
+catalogue-version 1.1
+catalogue-date 2006-12-23 09:07:09 +0100
+catalogue-ctan /macros/latex/contrib/todo
+catalogue-license lppl
+
+name tokenizer
+category Package
+revision 1400
+shortdesc A tokenizer.
+longdesc A tokenizer for LaTeX. \GetTokens{Target1}{Target2}{Source}
+longdesc Splits Source into two tokens at the first encounter of a
+longdesc comma. The first token is saved in a newly created command with
+longdesc the name passed as Target1 and the second token likewise. A
+longdesc package option 'trim' causes leading and trailing space to be
+longdesc removed from each token; with this option, the \TrimSpaces
+longdesc command is defined, which removes leading and trailing spaces
+longdesc from its argument.
+docfiles size=89257
+ texmf-dist/doc/latex/tokenizer/tokenizer.pdf
+ texmf-dist/doc/latex/tokenizer/tokenizer.tex
+runfiles size=4912
+ texmf-dist/tex/latex/tokenizer/tokenizer.sty
+catalogue-version 1.1.0
+catalogue-date 2006-12-23 09:07:09 +0100
+catalogue-ctan /macros/latex/contrib/tokenizer
+catalogue-license lppl
+
+name toolbox
+category Package
+revision 1401
+shortdesc Macros for writing indices, glossaries.
+longdesc A package for (La)TeX which provides some macros which are
+longdesc convenient for writing indices, glossaries, or other macros. It
+longdesc contains macros which support: implicit macros; fancy optional
+longdesc arguments; loops over tokenlists and itemlists; searching and
+longdesc splitting; controlled expansion; redefinition of macros; and
+longdesc concatenated macro names; macros for text replacement.
+docfiles size=34410
+ texmf-dist/doc/latex/toolbox/toolbox.tex
+ texmf-dist/doc/latex/toolbox/toolbox.txt
+srcfiles size=113971
+ texmf-dist/source/latex/toolbox/toolbox.dtx
+ texmf-dist/source/latex/toolbox/toolbox.ins
+runfiles size=10682
+ texmf-dist/tex/latex/toolbox/toolbox.sty
+catalogue-version 5.1
+catalogue-date 2006-12-23 09:07:09 +0100
+catalogue-ctan /macros/latex/contrib/toolbox
+catalogue-license lppl
+
+name tools
+category Package
+revision 2039
+shortdesc The LaTeX standard tools bundle.
+longdesc A collection of (variously) simple tools provided as part of
+longdesc the LaTeX required tools distribution, comprising: afterpage,
+longdesc array, calc, dcolumn, delarray enumerate, fileerr, fontsmpl,
+longdesc ftnright, hhline, indentfirst, layout, longtable, multicol,
+longdesc rawfonts, showkeys, somedefs, theorem, tabularx, trace,
+longdesc varioref, verbatim, xr, and xspace.
+docfiles size=3785397
+ texmf-dist/doc/latex/tools/afterpage.pdf
+ texmf-dist/doc/latex/tools/array.pdf
+ texmf-dist/doc/latex/tools/bm.pdf
+ texmf-dist/doc/latex/tools/calc.pdf
+ texmf-dist/doc/latex/tools/changes.txt
+ texmf-dist/doc/latex/tools/dcolumn.pdf
+ texmf-dist/doc/latex/tools/delarray.pdf
+ texmf-dist/doc/latex/tools/enumerate.pdf
+ texmf-dist/doc/latex/tools/fileerr.pdf
+ texmf-dist/doc/latex/tools/fontsmpl.pdf
+ texmf-dist/doc/latex/tools/ftnright.pdf
+ texmf-dist/doc/latex/tools/hhline.pdf
+ texmf-dist/doc/latex/tools/indentfirst.pdf
+ texmf-dist/doc/latex/tools/layout.pdf
+ texmf-dist/doc/latex/tools/longtable.pdf
+ texmf-dist/doc/latex/tools/manifest.txt
+ texmf-dist/doc/latex/tools/multicol.pdf
+ texmf-dist/doc/latex/tools/rawfonts.pdf
+ texmf-dist/doc/latex/tools/readme.txt
+ texmf-dist/doc/latex/tools/showkeys.pdf
+ texmf-dist/doc/latex/tools/somedefs.pdf
+ texmf-dist/doc/latex/tools/tabularx.pdf
+ texmf-dist/doc/latex/tools/theorem.pdf
+ texmf-dist/doc/latex/tools/tools.pdf
+ texmf-dist/doc/latex/tools/trace.pdf
+ texmf-dist/doc/latex/tools/varioref.pdf
+ texmf-dist/doc/latex/tools/verbatim.pdf
+ texmf-dist/doc/latex/tools/xr.pdf
+ texmf-dist/doc/latex/tools/xspace.pdf
+srcfiles size=910828
+ texmf-dist/source/latex/tools/afterpage.dtx
+ texmf-dist/source/latex/tools/array.dtx
+ texmf-dist/source/latex/tools/bm.dtx
+ texmf-dist/source/latex/tools/calc.dtx
+ texmf-dist/source/latex/tools/dcolumn.dtx
+ texmf-dist/source/latex/tools/delarray.dtx
+ texmf-dist/source/latex/tools/enumerate.dtx
+ texmf-dist/source/latex/tools/fileerr.dtx
+ texmf-dist/source/latex/tools/fontsmpl.dtx
+ texmf-dist/source/latex/tools/ftnright.dtx
+ texmf-dist/source/latex/tools/hhline.dtx
+ texmf-dist/source/latex/tools/indentfirst.dtx
+ texmf-dist/source/latex/tools/layout.dtx
+ texmf-dist/source/latex/tools/longtable.dtx
+ texmf-dist/source/latex/tools/multicol.dtx
+ texmf-dist/source/latex/tools/rawfonts.dtx
+ texmf-dist/source/latex/tools/showkeys.dtx
+ texmf-dist/source/latex/tools/somedefs.dtx
+ texmf-dist/source/latex/tools/tabularx.dtx
+ texmf-dist/source/latex/tools/theorem.dtx
+ texmf-dist/source/latex/tools/tools.ins
+ texmf-dist/source/latex/tools/trace.dtx
+ texmf-dist/source/latex/tools/varioref.dtx
+ texmf-dist/source/latex/tools/verbatim.dtx
+ texmf-dist/source/latex/tools/xr.dtx
+ texmf-dist/source/latex/tools/xspace.dtx
+runfiles size=229674
+ texmf-dist/tex/latex/tools/.tex
+ texmf-dist/tex/latex/tools/afterpage.sty
+ texmf-dist/tex/latex/tools/array.sty
+ texmf-dist/tex/latex/tools/bm.sty
+ texmf-dist/tex/latex/tools/calc.sty
+ texmf-dist/tex/latex/tools/dcolumn.sty
+ texmf-dist/tex/latex/tools/delarray.sty
+ texmf-dist/tex/latex/tools/e.tex
+ texmf-dist/tex/latex/tools/enumerate.sty
+ texmf-dist/tex/latex/tools/fontsmpl.sty
+ texmf-dist/tex/latex/tools/fontsmpl.tex
+ texmf-dist/tex/latex/tools/ftnright.sty
+ texmf-dist/tex/latex/tools/h.tex
+ texmf-dist/tex/latex/tools/hhline.sty
+ texmf-dist/tex/latex/tools/indentfirst.sty
+ texmf-dist/tex/latex/tools/layout.sty
+ texmf-dist/tex/latex/tools/longtable.sty
+ texmf-dist/tex/latex/tools/multicol.sty
+ texmf-dist/tex/latex/tools/q.tex
+ texmf-dist/tex/latex/tools/r.tex
+ texmf-dist/tex/latex/tools/rawfonts.sty
+ texmf-dist/tex/latex/tools/s.tex
+ texmf-dist/tex/latex/tools/showkeys.sty
+ texmf-dist/tex/latex/tools/somedefs.sty
+ texmf-dist/tex/latex/tools/tabularx.sty
+ texmf-dist/tex/latex/tools/thb.sty
+ texmf-dist/tex/latex/tools/thc.sty
+ texmf-dist/tex/latex/tools/thcb.sty
+ texmf-dist/tex/latex/tools/theorem.sty
+ texmf-dist/tex/latex/tools/thm.sty
+ texmf-dist/tex/latex/tools/thmb.sty
+ texmf-dist/tex/latex/tools/thp.sty
+ texmf-dist/tex/latex/tools/trace.sty
+ texmf-dist/tex/latex/tools/varioref.sty
+ texmf-dist/tex/latex/tools/verbatim.sty
+ texmf-dist/tex/latex/tools/verbtest.tex
+ texmf-dist/tex/latex/tools/x.tex
+ texmf-dist/tex/latex/tools/xr.sty
+ texmf-dist/tex/latex/tools/xspace.sty
+catalogue-version
+catalogue-date 2006-12-05 00:47:24 +0100
+catalogue-ctan /macros/latex/required/tools
+catalogue-license lppl
+
+name topfloat
+category Package
+revision 1487
+shortdesc Move floats to the top of the page.
+docfiles size=16141
+ texmf-dist/doc/latex/topfloat/topfloat.dvi
+ texmf-dist/doc/latex/topfloat/topfloat.tex
+runfiles size=2637
+ texmf-dist/tex/latex/topfloat/topfloat.sty
+catalogue-version
+catalogue-date 2007-01-17 10:01:14 +0100
+catalogue-ctan /macros/latex/contrib/topfloat
+catalogue-license gpl
+
+name toptesi
+category Package
+revision 4806
+shortdesc Bundle of files for typsetting theses.
+longdesc This bundle contains everything is needed for typesetting a
+longdesc bachelor, master or PhD thesis in Italian (or in any other
+longdesc language supported by LaTeX: the bundle is constructed to
+longdesc support multilingual use). The infix strings may be selected
+longdesc and specified at will by means of a configuration file, so as
+longdesc to customize the layout of the front page to the requirements
+longdesc of a specific university. Thanks to its language management,
+longdesc the bundle is suited for multilanguage theses that are becoming
+longdesc more and more frequent thanks to the double degree programs of
+longdesc the European Community Socrates programs.
+docfiles size=881284
+ texmf-dist/doc/latex/toptesi/README
+ texmf-dist/doc/latex/toptesi/logoINPG.eps
+ texmf-dist/doc/latex/toptesi/logoINPG.pdf
+ texmf-dist/doc/latex/toptesi/logopoliba.eps
+ texmf-dist/doc/latex/toptesi/logopoliba.pdf
+ texmf-dist/doc/latex/toptesi/logopolito.eps
+ texmf-dist/doc/latex/toptesi/logopolito.pdf
+ texmf-dist/doc/latex/toptesi/logouniba.eps
+ texmf-dist/doc/latex/toptesi/logouniba.pdf
+ texmf-dist/doc/latex/toptesi/logounibg.eps
+ texmf-dist/doc/latex/toptesi/logounibg.pdf
+ texmf-dist/doc/latex/toptesi/logounibo.eps
+ texmf-dist/doc/latex/toptesi/logounibo.gif
+ texmf-dist/doc/latex/toptesi/logounibo.pdf
+ texmf-dist/doc/latex/toptesi/logounibs.eps
+ texmf-dist/doc/latex/toptesi/logounibs.pdf
+ texmf-dist/doc/latex/toptesi/logounige.eps
+ texmf-dist/doc/latex/toptesi/logounige.pdf
+ texmf-dist/doc/latex/toptesi/logounipa.eps
+ texmf-dist/doc/latex/toptesi/logounipa.pdf
+ texmf-dist/doc/latex/toptesi/logounipd.eps
+ texmf-dist/doc/latex/toptesi/logounipd.pdf
+ texmf-dist/doc/latex/toptesi/logounipi.eps
+ texmf-dist/doc/latex/toptesi/logounipi.pdf
+ texmf-dist/doc/latex/toptesi/logounipmn.eps
+ texmf-dist/doc/latex/toptesi/logounipmn.pdf
+ texmf-dist/doc/latex/toptesi/logouniroma1.eps
+ texmf-dist/doc/latex/toptesi/logouniroma1.pdf
+ texmf-dist/doc/latex/toptesi/logouniroma2.eps
+ texmf-dist/doc/latex/toptesi/logouniroma2.pdf
+ texmf-dist/doc/latex/toptesi/logouniroma3.eps
+ texmf-dist/doc/latex/toptesi/logouniroma3.pdf
+ texmf-dist/doc/latex/toptesi/logounisa.eps
+ texmf-dist/doc/latex/toptesi/logounisa.pdf
+ texmf-dist/doc/latex/toptesi/logounito.eps
+ texmf-dist/doc/latex/toptesi/logounito.pdf
+ texmf-dist/doc/latex/toptesi/logounits.eps
+ texmf-dist/doc/latex/toptesi/logounits.pdf
+ texmf-dist/doc/latex/toptesi/logouniur.eps
+ texmf-dist/doc/latex/toptesi/logouniur.pdf
+ texmf-dist/doc/latex/toptesi/manifest.txt
+ texmf-dist/doc/latex/toptesi/toptesi-doc.pdf details="Package documentation" language="it"
+ texmf-dist/doc/latex/toptesi/toptesi.tex
+srcfiles size=122037
+ texmf-dist/source/latex/toptesi/toptesi.dtx
+ texmf-dist/source/latex/toptesi/toptesi.ins
+runfiles size=55227
+ texmf-dist/tex/latex/toptesi/size14.clo
+ texmf-dist/tex/latex/toptesi/topcoman.sty
+ texmf-dist/tex/latex/toptesi/topfront.sty
+ texmf-dist/tex/latex/toptesi/topsiz14.clo
+ texmf-dist/tex/latex/toptesi/toptesi.cfg
+ texmf-dist/tex/latex/toptesi/toptesi.cls
+ texmf-dist/tex/latex/toptesi/toptesi.sty
+ texmf-dist/tex/latex/toptesi/trieste.sty
+catalogue-version v.4.06
+catalogue-date 2007-07-22 14:16:32 +0200
+catalogue-ctan /macros/latex/contrib/toptesi
+catalogue-license lppl1.3
+
+name totpages
+category Package
+revision 1404
+shortdesc Count pages in a document, and report last page number.
+longdesc The package counts the actual pages in the document (as opposed
+longdesc to reporting the number of the last page, as does lastpage).
+longdesc The counter itself may be shipped out to the DVI file. The
+longdesc package uses the everyshi package for its task.
+docfiles size=206991
+ texmf-dist/doc/latex/totpages/README details="Readme"
+ texmf-dist/doc/latex/totpages/totexmpl.tex
+ texmf-dist/doc/latex/totpages/totpages.pdf details="Package documentation"
+srcfiles size=33820
+ texmf-dist/source/latex/totpages/totpages.drv
+ texmf-dist/source/latex/totpages/totpages.dtx
+ texmf-dist/source/latex/totpages/totpages.ins
+runfiles size=7670
+ texmf-dist/tex/latex/totpages/totpages.sty
+catalogue-version 2.00
+catalogue-date 2007-01-18 20:18:05 +0100
+catalogue-ctan /macros/latex/contrib/totpages
+catalogue-license lppl
+
+name tpslifonts
+category Package
+revision 1405
+shortdesc A LaTeX package for configuring presentation fonts.
+longdesc This package aims to improve presentations in terms of font
+longdesc readability, especially with maths. The standard cm math fonts
+longdesc at large design sizes are difficult to read from far away,
+longdesc especially at low resolutions and low contrast color choice.
+longdesc Using this package leads to much better overall readability of
+longdesc some font combinations. The package offers a couple of
+longdesc ‘harmonising’ combinations of text and math fonts from the
+longdesc (distant) relatives of computer modern fonts, with a couple of
+longdesc extras for optimising readability. Text fonts from computer
+longdesc modern roman, computer modern sans serif, SliTeX computer
+longdesc modern sans serif, computer modern bright, or concrete roman
+longdesc are available, in addition to math fonts from computer modern
+longdesc math, computer modern bright math, or Euler fonts. This package
+longdesc is part of the TeXPower bundle.
+docfiles size=68759
+ texmf-dist/doc/latex/tpslifonts/00readme.txt
+ texmf-dist/doc/latex/tpslifonts/0install.txt
+ texmf-dist/doc/latex/tpslifonts/__TPslifonts.tex
+ texmf-dist/doc/latex/tpslifonts/slifontsexample.tex
+runfiles size=41427
+ texmf-dist/tex/latex/tpslifonts/tpslifonts.sty
+catalogue-version 0.6
+catalogue-date 2007-01-18 20:18:05 +0100
+catalogue-ctan /macros/latex/exptl/texpower/tpslifonts
+catalogue-license gpl
+
+name tracking
+category Package
+revision 1406
+shortdesc Adjust tracking of strings.
+longdesc Automatically adjust spaces between symbols in words or phrases
+longdesc to fit them into a specified length. Any chain of symbols
+longdesc (including spaces) in the current font may be treated. Commands
+longdesc \track{<length>}{<string>} (add space <length>, which may be
+longdesc <0, after each symbol of <string>),
+longdesc \fittrack{<length>}{<string>} (make <string> fit into width
+longdesc <length>, which may be smaller than the original width) and
+longdesc \ratiotrack{<ratio>}{<string>} (as \fittrack, with <length>
+longdesc replaced by <ratio> of the natural length of <string>).
+runfiles size=2573
+ texmf-dist/tex/latex/tracking/tracking.sty
+catalogue-version
+catalogue-date 2007-01-18 20:18:05 +0100
+catalogue-ctan /macros/latex/contrib/tracking/tracking.sty
+catalogue-license unknown
+
+name trajan
+category Package
+revision 1407
+shortdesc Fonts from the Trajan column in Rome.
+longdesc Provides fonts (in both MetaFont and Adobe Type 1 format) based
+longdesc on the capitals carved on the Trajan column in Rome in 114 AD,
+longdesc together with macros to access the fonts. Many typographers
+longdesc think these rank first among the Roman’s artistic legacy. The
+longdesc font is uppercase letters together with some punctuation and
+longdesc analphabetics; no lowercase or digits.
+execute addMixedMap trajan.map
+docfiles size=223437
+ texmf-dist/doc/latex/trajan/README details="Readme"
+ texmf-dist/doc/latex/trajan/trajan.pdf details="Package documentation"
+ texmf-dist/doc/latex/trajan/trytrajan.pdf details="Font sample"
+ texmf-dist/doc/latex/trajan/trytrajan.tex
+srcfiles size=83199
+ texmf-dist/source/latex/trajan/trajan.dtx
+ texmf-dist/source/latex/trajan/trajan.ins
+runfiles size=80085
+ texmf-dist/fonts/afm/public/trajan/trjnr10.afm
+ texmf-dist/fonts/afm/public/trajan/trjnsl10.afm
+ texmf-dist/fonts/map/dvips/trajan/trajan.map
+ texmf-dist/fonts/tfm/public/trajan/trjnr10.tfm
+ texmf-dist/fonts/tfm/public/trajan/trjnsl10.tfm
+ texmf-dist/fonts/type1/public/trajan/trjnr10.pfb
+ texmf-dist/fonts/type1/public/trajan/trjnsl10.pfb
+ texmf-dist/tex/latex/trajan/t1trjn.fd
+ texmf-dist/tex/latex/trajan/trajan.sty
+catalogue-version 1.1
+catalogue-date 2007-10-24 18:05:15 +0200
+catalogue-ctan /fonts/trajan
+catalogue-license lppl
+
+name tree-dvips
+category Package
+revision 1487
+shortdesc Trees and other linguists' macros.
+longdesc The package tree-dvips.sty defines a mechanism for specifying
+longdesc connected trees that uses a tabular environment to node
+longdesc positions. The package uses PostScript code, loaded by dvips,
+longdesc so output can only be generated by use of dvips. The package
+longdesc lingmacros.sty defines a few macros for linguists:
+longdesc \enumsentence for enumerating sentence examples, simple
+longdesc tabular-based non-connected tree macros, and gloss macros.
+docfiles size=56232
+ texmf-dist/doc/latex/tree-dvips/lingmacros-manual.dvi
+ texmf-dist/doc/latex/tree-dvips/lingmacros-manual.tex
+ texmf-dist/doc/latex/tree-dvips/tree-manual.dvi
+ texmf-dist/doc/latex/tree-dvips/tree-manual.tex
+srcfiles size=12936
+ texmf-dist/source/latex/tree-dvips/00Description
+ texmf-dist/source/latex/tree-dvips/Makefile
+ texmf-dist/source/latex/tree-dvips/Readme
+ texmf-dist/source/latex/tree-dvips/tree.script
+runfiles size=19548
+ texmf-dist/dvips/tree-dvips/tree-dvips.pro
+ texmf-dist/tex/latex/tree-dvips/lingmacros.sty
+ texmf-dist/tex/latex/tree-dvips/tree-dvips.sty
+catalogue-version
+catalogue-date 2007-01-18 20:18:05 +0100
+catalogue-ctan /macros/latex209/contrib/trees/tree-dvips
+catalogue-license unknown
+
+name treetex
+category Package
+revision 1487
+docfiles size=307117
+ texmf-dist/doc/plain/treetex/epodd.bbl
+ texmf-dist/doc/plain/treetex/epodd.dvi
+ texmf-dist/doc/plain/treetex/epodd.tex
+ texmf-dist/doc/plain/treetex/readme
+ texmf-dist/doc/plain/treetex/tree_doc.bbl
+ texmf-dist/doc/plain/treetex/tree_doc.dvi
+ texmf-dist/doc/plain/treetex/tree_doc.tex
+runfiles size=161934
+ texmf-dist/tex/plain/treetex/classes.tex
+ texmf-dist/tex/plain/treetex/l_pic.tex
+ texmf-dist/tex/plain/treetex/treetex.tex
+
+name trfsigns
+category Package
+revision 2382
+shortdesc Typeset transform signs.
+longdesc A package for typesetting various transformation signs for
+longdesc Laplace transforms, Fourier transforms and others.
+docfiles size=234155
+ texmf-dist/doc/latex/trfsigns/COPYING
+ texmf-dist/doc/latex/trfsigns/README details="Package Readme"
+ texmf-dist/doc/latex/trfsigns/trfexamp.tex
+ texmf-dist/doc/latex/trfsigns/trfsigns.pdf details="Package documentation" language="de"
+srcfiles size=18267
+ texmf-dist/source/latex/trfsigns/trfsigns.drv
+ texmf-dist/source/latex/trfsigns/trfsigns.dtx
+ texmf-dist/source/latex/trfsigns/trfsigns.ins
+runfiles size=5694
+ texmf-dist/tex/latex/trfsigns/trfsigns.sty
+catalogue-version 1.01
+catalogue-date 2006-12-05 00:47:24 +0100
+catalogue-ctan /macros/latex/contrib/trfsigns
+catalogue-license gpl
+
+name trivfloat
+category Package
+revision 4996
+shortdesc Quick float definitions in LaTeX.
+longdesc The trivfloat package provides a quick method for defining new
+longdesc float types in LaTeX. A single command sets up a new float in
+longdesc the same style as the LaTeX kernel figure and table float
+longdesc types. The package works with memoir as well as the standard
+longdesc classes.
+docfiles size=126966
+ texmf-dist/doc/latex/trivfloat/README details="Readme"
+ texmf-dist/doc/latex/trivfloat/trivfloat.pdf details="Package documentation"
+srcfiles size=20900
+ texmf-dist/source/latex/trivfloat/trivfloat.dtx
+ texmf-dist/source/latex/trivfloat/trivfloat.ins
+runfiles size=4520
+ texmf-dist/tex/latex/trivfloat/trivfloat.sty
+catalogue-version 1.3b
+catalogue-date 2007-09-20 15:52:33 +0200
+catalogue-ctan /macros/latex/contrib/trivfloat
+catalogue-license lppl
+
+name trsym
+category Package
+revision 1410
+shortdesc Symbols for transformations.
+longdesc The bundle provides MetaFont sources for a small font used for
+longdesc (e.g.) Laplace transformations, together with a LaTeX .fd file
+longdesc and a package providing commands for the symbols’ use in
+longdesc mathematics.
+docfiles size=1398
+ texmf-dist/doc/latex/trsym/README details="Readme"
+ texmf-dist/doc/latex/trsym/manifest.txt
+srcfiles size=6829
+ texmf-dist/source/latex/trsym/trsym.dtx
+ texmf-dist/source/latex/trsym/trsym.ins
+runfiles size=6596
+ texmf-dist/fonts/source/public/trsym/trsy.mf
+ texmf-dist/fonts/source/public/trsym/trsy10.mf
+ texmf-dist/fonts/source/public/trsym/trsy12.mf
+ texmf-dist/fonts/tfm/public/trsym/trsy10.tfm
+ texmf-dist/fonts/tfm/public/trsym/trsy12.tfm
+ texmf-dist/tex/latex/trsym/trsym.sty
+ texmf-dist/tex/latex/trsym/utrsy.fd
+catalogue-version 1.0
+catalogue-date 2007-10-24 18:05:15 +0200
+catalogue-ctan /fonts/trsym
+catalogue-license lppl1.2
+
+name truetype
+category Documentation
+revision 23
+docfiles size=616755
+ texmf-doc/doc/english/truetype/Makefile
+ texmf-doc/doc/english/truetype/config.vagrounded
+ texmf-doc/doc/english/truetype/fonts.bib
+ texmf-doc/doc/english/truetype/img1.gif
+ texmf-doc/doc/english/truetype/img2.gif
+ texmf-doc/doc/english/truetype/index.html
+ texmf-doc/doc/english/truetype/sample.ps
+ texmf-doc/doc/english/truetype/sample.tex
+ texmf-doc/doc/english/truetype/sample_eps.pdf
+ texmf-doc/doc/english/truetype/sample_eps.ps
+ texmf-doc/doc/english/truetype/sample_eps.tex
+ texmf-doc/doc/english/truetype/ttf-tetex.css
+ texmf-doc/doc/english/truetype/ttf-tetex.html
+ texmf-doc/doc/english/truetype/ttf-tetex.pdf
+ texmf-doc/doc/english/truetype/ttf-tetex.tex
+ texmf-doc/doc/english/truetype/ttf2type1
+ texmf-doc/doc/english/truetype/vagrounded.map
+ texmf-doc/doc/english/truetype/vagrounded.sty
+
+name tugboat
+category Package
+revision 5033
+shortdesc LaTeX macros for TUGboat articles.
+longdesc Provides both ltugboat.cls (for ordinary issues of the journal)
+longdesc and ltugproc.cls (for issues that are proceedings of TUG
+longdesc meetings). The distribution also includes a BibTeX style
+longdesc appropriate for use with the classes’ “harvard” option.
+docfiles size=559836
+ texmf-dist/doc/latex/tugboat/README
+ texmf-dist/doc/latex/tugboat/ltubguid.ltx
+ texmf-dist/doc/latex/tugboat/ltubguid.pdf details="Instructions for authors:" language="en"
+ texmf-dist/doc/latex/tugboat/manifest.txt
+ texmf-dist/doc/latex/tugboat/tugboat.pdf details="Program documentation:" language="en"
+srcfiles size=126802
+ texmf-dist/source/latex/tugboat/tugboat.dtx
+ texmf-dist/source/latex/tugboat/tugboat.ins
+runfiles size=104599
+ texmf-dist/bibtex/bst/tugboat/ltugbib.bst
+ texmf-dist/tex/latex/tugboat/ltugboat.cls
+ texmf-dist/tex/latex/tugboat/ltugboat.sty
+ texmf-dist/tex/latex/tugboat/ltugcomn.sty
+ texmf-dist/tex/latex/tugboat/ltugproc.cls
+ texmf-dist/tex/latex/tugboat/ltugproc.sty
+catalogue-version 2.4
+catalogue-date 2007-09-24 11:46:34 +0200
+catalogue-ctan /macros/latex/contrib/tugboat
+catalogue-license lppl
+
+name tugboat-plain
+category Package
+revision 4101
+shortdesc Plain TeX macros for TUGboat.
+longdesc The macros defined in this directory (in files tugboat.sty and
+longdesc tugboat.cmn) are used in papers written in Plain TeX for
+longdesc publication in TUGboat.
+docfiles size=151773
+ texmf-dist/doc/plain/tugboat-plain/README
+ texmf-dist/doc/plain/tugboat-plain/tubguide.pdf
+ texmf-dist/doc/plain/tugboat-plain/tubguide.tex
+runfiles size=117178
+ texmf-dist/tex/plain/tugboat-plain/tugboat.cmn
+ texmf-dist/tex/plain/tugboat-plain/tugboat.sty
+ texmf-dist/tex/plain/tugboat-plain/tugproc.sty
+catalogue-version 1.17
+catalogue-date 2007-03-01 14:56:13 +0100
+catalogue-ctan /macros/plain/contrib/tugboat
+catalogue-license lppl
+
+name turnstile
+category Package
+revision 4917
+shortdesc Typeset the (logic) turnstile notation.
+longdesc Among other uses, the turnstile sign is used by logicians for
+longdesc denoting a consequence relation, related to a given logic,
+longdesc between a collection of formulas and a derived formula.
+docfiles size=703557
+ texmf-dist/doc/latex/turnstile/README details="Readme"
+ texmf-dist/doc/latex/turnstile/README.en
+ texmf-dist/doc/latex/turnstile/README.pt
+ texmf-dist/doc/latex/turnstile/turnstile-en.pdf
+ texmf-dist/doc/latex/turnstile/turnstile-pt.pdf
+ texmf-dist/doc/latex/turnstile/turnstile_article.pdf
+ texmf-dist/doc/latex/turnstile/turnstile_article.tex
+ texmf-dist/doc/latex/turnstile/turnstile_artigo.pdf
+ texmf-dist/doc/latex/turnstile/turnstile_artigo.tex
+srcfiles size=45694
+ texmf-dist/source/latex/turnstile/turnstile-en.dtx
+ texmf-dist/source/latex/turnstile/turnstile-en.ins
+ texmf-dist/source/latex/turnstile/turnstile-pt.dtx
+ texmf-dist/source/latex/turnstile/turnstile-pt.ins
+runfiles size=9182
+ texmf-dist/tex/latex/turnstile/turnstile.sty
+catalogue-version 1.0
+catalogue-date 2007-09-07 14:19:18 +0200
+catalogue-ctan /macros/latex/contrib/turnstile
+catalogue-license lppl
+
+name twoup
+category Package
+revision 4001
+docfiles size=205242
+ texmf-dist/doc/latex/twoup/README
+ texmf-dist/doc/latex/twoup/twoup.pdf
+srcfiles size=33123
+ texmf-dist/source/latex/twoup/twoup.dtx
+ texmf-dist/source/latex/twoup/twoup.ins
+runfiles size=6017
+ texmf-dist/tex/latex/twoup/twoup.sty
+
+name txfonts
+category Package
+revision 1413
+shortdesc Times-like fonts in support of mathematics.
+longdesc Txfonts supplies virtual text roman fonts using Adobe Times (or
+longdesc URW NimbusRomNo9L) with some modified and additional text
+longdesc symbols in the OT1, T1, and TS1 encodings; maths alphabets
+longdesc using Palation/Palladio; maths fonts providing all the symbols
+longdesc of the Computer Modern and AMS fonts, including all the Greek
+longdesc capital letters from CMR; and additional maths fonts of various
+longdesc other symbols. The set is complemented by a sans-serif set of
+longdesc text fonts, based on Helvetica/NimbusSanL, and a monospace set.
+longdesc All the fonts are in Type 1 format (AFM and PFB files), and are
+longdesc supported by TeX metrics (VF and TFM files) and macros for use
+longdesc with LaTeX.
+execute addMap txfonts.map
+docfiles size=956349
+ texmf-dist/doc/fonts/txfonts/00patch1.txt
+ texmf-dist/doc/fonts/txfonts/COPYRIGHT
+ texmf-dist/doc/fonts/txfonts/txfontsdoc.pdf
+ texmf-dist/doc/fonts/txfonts/txfontsdoc.tex
+ texmf-dist/doc/fonts/txfonts/txfontsdocA4.pdf
+ texmf-dist/doc/fonts/txfonts/txfontsdocA4.tex
+ texmf-dist/doc/fonts/txfonts/txmi.vpl
+ texmf-dist/doc/fonts/txfonts/txmi1.vpl
+runfiles size=1539113
+ texmf-dist/fonts/afm/public/txfonts/rtcxb.afm
+ texmf-dist/fonts/afm/public/txfonts/rtcxbi.afm
+ texmf-dist/fonts/afm/public/txfonts/rtcxbss.afm
+ texmf-dist/fonts/afm/public/txfonts/rtcxi.afm
+ texmf-dist/fonts/afm/public/txfonts/rtcxr.afm
+ texmf-dist/fonts/afm/public/txfonts/rtcxss.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxb.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxbi.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxbmi.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxbsc.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxbss.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxbsssc.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxi.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxmi.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxr.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxsc.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxss.afm
+ texmf-dist/fonts/afm/public/txfonts/rtxsssc.afm
+ texmf-dist/fonts/afm/public/txfonts/t1xbtt.afm
+ texmf-dist/fonts/afm/public/txfonts/t1xbttsc.afm
+ texmf-dist/fonts/afm/public/txfonts/t1xtt.afm
+ texmf-dist/fonts/afm/public/txfonts/t1xttsc.afm
+ texmf-dist/fonts/afm/public/txfonts/tcxbtt.afm
+ texmf-dist/fonts/afm/public/txfonts/tcxtt.afm
+ texmf-dist/fonts/afm/public/txfonts/txbex.afm
+ texmf-dist/fonts/afm/public/txfonts/txbexa.afm
+ texmf-dist/fonts/afm/public/txfonts/txbmia.afm
+ texmf-dist/fonts/afm/public/txfonts/txbsy.afm
+ texmf-dist/fonts/afm/public/txfonts/txbsya.afm
+ texmf-dist/fonts/afm/public/txfonts/txbsyb.afm
+ texmf-dist/fonts/afm/public/txfonts/txbsyc.afm
+ texmf-dist/fonts/afm/public/txfonts/txbtt.afm
+ texmf-dist/fonts/afm/public/txfonts/txbttsc.afm
+ texmf-dist/fonts/afm/public/txfonts/txex.afm
+ texmf-dist/fonts/afm/public/txfonts/txexa.afm
+ texmf-dist/fonts/afm/public/txfonts/txmia.afm
+ texmf-dist/fonts/afm/public/txfonts/txsy.afm
+ texmf-dist/fonts/afm/public/txfonts/txsya.afm
+ texmf-dist/fonts/afm/public/txfonts/txsyb.afm
+ texmf-dist/fonts/afm/public/txfonts/txsyc.afm
+ texmf-dist/fonts/afm/public/txfonts/txtt.afm
+ texmf-dist/fonts/afm/public/txfonts/txttsc.afm
+ texmf-dist/fonts/enc/dvips/txfonts/tx8r.enc
+ texmf-dist/fonts/map/dvips/txfonts/txfonts.map
+ texmf-dist/fonts/map/dvips/txfonts/txr.map
+ texmf-dist/fonts/map/dvips/txfonts/txr1.map
+ texmf-dist/fonts/map/dvips/txfonts/txr2.map
+ texmf-dist/fonts/map/dvips/txfonts/txr3.map
+ texmf-dist/fonts/tfm/public/txfonts/rtcxb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtcxbi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtcxbsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtcxbss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtcxbsso.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtcxi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtcxr.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtcxsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtcxss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtcxsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxbi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxbmi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxbsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxbsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxbss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxbsssc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxbsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxmi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxphvb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxphvbo.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxphvr.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxphvro.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxptmb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxptmbi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxptmbo.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxptmr.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxptmri.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxptmro.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxr.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxsssc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/rtxsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xbi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xbsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xbsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xbss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xbsssc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xbsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xbtt.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xbttsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xbttsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xr.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xsssc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xtt.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xttsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/t1xttsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxbi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxbsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxbss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxbsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxbtt.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxbttsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxr.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxtt.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tcxttsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbex.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbexa.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbmi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbmi1.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbmia.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbsssc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbsy.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbsya.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbsyb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbsyc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbtt.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbttsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txbttsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txex.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txexa.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txmi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txmi1.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txmia.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txr.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txsssc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txsy.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txsya.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txsyb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txsyc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txtt.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txttsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/txttsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxb.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxbi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxbsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxbsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxbss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxbsssc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxbsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxbtt.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxbttsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxbttsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxi.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxr.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxsl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxss.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxsssc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxsssl.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxtt.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxttsc.tfm
+ texmf-dist/fonts/tfm/public/txfonts/tyxttsl.tfm
+ texmf-dist/fonts/type1/public/txfonts/rtcxb.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtcxbi.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtcxbss.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtcxi.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtcxr.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtcxss.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxb.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxbi.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxbmi.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxbsc.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxbss.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxbsssc.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxi.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxmi.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxr.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxsc.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxss.pfb
+ texmf-dist/fonts/type1/public/txfonts/rtxsssc.pfb
+ texmf-dist/fonts/type1/public/txfonts/t1xbtt.pfb
+ texmf-dist/fonts/type1/public/txfonts/t1xbttsc.pfb
+ texmf-dist/fonts/type1/public/txfonts/t1xtt.pfb
+ texmf-dist/fonts/type1/public/txfonts/t1xttsc.pfb
+ texmf-dist/fonts/type1/public/txfonts/tcxbtt.pfb
+ texmf-dist/fonts/type1/public/txfonts/tcxtt.pfb
+ texmf-dist/fonts/type1/public/txfonts/txbex.pfb
+ texmf-dist/fonts/type1/public/txfonts/txbexa.pfb
+ texmf-dist/fonts/type1/public/txfonts/txbmia.pfb
+ texmf-dist/fonts/type1/public/txfonts/txbsy.pfb
+ texmf-dist/fonts/type1/public/txfonts/txbsya.pfb
+ texmf-dist/fonts/type1/public/txfonts/txbsyb.pfb
+ texmf-dist/fonts/type1/public/txfonts/txbsyc.pfb
+ texmf-dist/fonts/type1/public/txfonts/txbtt.pfb
+ texmf-dist/fonts/type1/public/txfonts/txbttsc.pfb
+ texmf-dist/fonts/type1/public/txfonts/txex.pfb
+ texmf-dist/fonts/type1/public/txfonts/txexa.pfb
+ texmf-dist/fonts/type1/public/txfonts/txmia.pfb
+ texmf-dist/fonts/type1/public/txfonts/txsy.pfb
+ texmf-dist/fonts/type1/public/txfonts/txsya.pfb
+ texmf-dist/fonts/type1/public/txfonts/txsyb.pfb
+ texmf-dist/fonts/type1/public/txfonts/txsyc.pfb
+ texmf-dist/fonts/type1/public/txfonts/txtt.pfb
+ texmf-dist/fonts/type1/public/txfonts/txttsc.pfb
+ texmf-dist/fonts/vf/public/txfonts/t1xb.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xbi.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xbsc.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xbsl.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xbss.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xbsssc.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xbsssl.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xi.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xr.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xsc.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xsl.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xss.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xsssc.vf
+ texmf-dist/fonts/vf/public/txfonts/t1xsssl.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxb.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxbi.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxbsl.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxbss.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxbsssl.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxi.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxr.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxsl.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxss.vf
+ texmf-dist/fonts/vf/public/txfonts/tcxsssl.vf
+ texmf-dist/fonts/vf/public/txfonts/txb.vf
+ texmf-dist/fonts/vf/public/txfonts/txbi.vf
+ texmf-dist/fonts/vf/public/txfonts/txbmi.vf
+ texmf-dist/fonts/vf/public/txfonts/txbmi1.vf
+ texmf-dist/fonts/vf/public/txfonts/txbsc.vf
+ texmf-dist/fonts/vf/public/txfonts/txbsl.vf
+ texmf-dist/fonts/vf/public/txfonts/txbss.vf
+ texmf-dist/fonts/vf/public/txfonts/txbsssc.vf
+ texmf-dist/fonts/vf/public/txfonts/txbsssl.vf
+ texmf-dist/fonts/vf/public/txfonts/txi.vf
+ texmf-dist/fonts/vf/public/txfonts/txmi.vf
+ texmf-dist/fonts/vf/public/txfonts/txmi1.vf
+ texmf-dist/fonts/vf/public/txfonts/txr.vf
+ texmf-dist/fonts/vf/public/txfonts/txsc.vf
+ texmf-dist/fonts/vf/public/txfonts/txsl.vf
+ texmf-dist/fonts/vf/public/txfonts/txss.vf
+ texmf-dist/fonts/vf/public/txfonts/txsssc.vf
+ texmf-dist/fonts/vf/public/txfonts/txsssl.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxb.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxbi.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxbsc.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxbsl.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxbss.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxbsssc.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxbsssl.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxbtt.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxbttsc.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxbttsl.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxi.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxr.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxsc.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxsl.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxss.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxsssc.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxsssl.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxtt.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxttsc.vf
+ texmf-dist/fonts/vf/public/txfonts/tyxttsl.vf
+ texmf-dist/tex/latex/txfonts/ly1txr.fd
+ texmf-dist/tex/latex/txfonts/ly1txss.fd
+ texmf-dist/tex/latex/txfonts/ly1txtt.fd
+ texmf-dist/tex/latex/txfonts/omltxmi.fd
+ texmf-dist/tex/latex/txfonts/omltxr.fd
+ texmf-dist/tex/latex/txfonts/omstxr.fd
+ texmf-dist/tex/latex/txfonts/omstxsy.fd
+ texmf-dist/tex/latex/txfonts/omxtxex.fd
+ texmf-dist/tex/latex/txfonts/ot1txr.fd
+ texmf-dist/tex/latex/txfonts/ot1txss.fd
+ texmf-dist/tex/latex/txfonts/ot1txtt.fd
+ texmf-dist/tex/latex/txfonts/t1txr.fd
+ texmf-dist/tex/latex/txfonts/t1txss.fd
+ texmf-dist/tex/latex/txfonts/t1txtt.fd
+ texmf-dist/tex/latex/txfonts/ts1txr.fd
+ texmf-dist/tex/latex/txfonts/ts1txss.fd
+ texmf-dist/tex/latex/txfonts/ts1txtt.fd
+ texmf-dist/tex/latex/txfonts/txfonts.sty
+ texmf-dist/tex/latex/txfonts/utxexa.fd
+ texmf-dist/tex/latex/txfonts/utxmia.fd
+ texmf-dist/tex/latex/txfonts/utxr.fd
+ texmf-dist/tex/latex/txfonts/utxss.fd
+ texmf-dist/tex/latex/txfonts/utxsya.fd
+ texmf-dist/tex/latex/txfonts/utxsyb.fd
+ texmf-dist/tex/latex/txfonts/utxsyc.fd
+ texmf-dist/tex/latex/txfonts/utxtt.fd
+catalogue-version 3.1/
+catalogue-date 2007-01-06 21:10:04 +0100
+catalogue-ctan /fonts/txfonts
+catalogue-license gpl
+
+name type1cm
+category Package
+revision 1414
+shortdesc Arbitrary size font selection in LaTeX.
+longdesc LaTeX, by default, restricts the sizes at which you can use its
+longdesc default computer modern fonts, to a fixed set of discrete sizes
+longdesc (effectively, a set specified by Knuth). The type1cm package
+longdesc removes this restriction; this is particularly useful when
+longdesc using scalable versions of the cm fonts (Bakoma, or the
+longdesc versions from BSR/Y&Y, or True Type versions from Kinch, PCTeX,
+longdesc etc.). In fact, since modern distributions will automatically
+longdesc generate any bitmap font you might need, type1cm has wider
+longdesc application than just those using scaleable versions of the
+longdesc fonts. Note that the LaTeX distribution now contains a package
+longdesc fix-cm, which performs the task of type1cm, as well as doing
+longdesc the same job for T1- and TS1-encoded ec fonts.
+docfiles size=6431
+ texmf-dist/doc/latex/type1cm/type1cm.txt
+srcfiles size=11297
+ texmf-dist/source/latex/type1cm/type1cm.fdd
+ texmf-dist/source/latex/type1cm/type1cm.ins
+runfiles size=7035
+ texmf-dist/tex/latex/type1cm/type1cm.sty
+catalogue-version
+catalogue-date 2006-12-05 00:47:24 +0100
+catalogue-ctan /macros/latex/contrib/type1cm
+catalogue-license lppl
+
+name typedref
+category Package
+revision 1487
+shortdesc Eliminate errors by enforcing the types of labels.
+longdesc The package replaces \ref with \figureref, \sectionref, \eqref,
+longdesc etc., so that you're forced to specify the kind of label
+longdesc you’re referencing. Each reference command also generates
+longdesc appropriate text automatically, so that instead of typing
+longdesc Figure~\ref{figure:key}, all you need is
+longdesc \figureref{figure:key}. The \label command is redefined to
+longdesc record the type with the label defined, so that each type of
+longdesc label has its own namespace.
+docfiles size=3372
+ texmf-dist/doc/latex/typedref/example.dvi
+ texmf-dist/doc/latex/typedref/example.tex
+srcfiles size=21511
+ texmf-dist/source/latex/typedref/typedref.drv
+ texmf-dist/source/latex/typedref/typedref.dtx
+ texmf-dist/source/latex/typedref/typedref.ins
+runfiles size=4583
+ texmf-dist/tex/latex/typedref/typedref.sty
+catalogue-version
+catalogue-date 2007-01-18 23:55:07 +0100
+catalogue-ctan /macros/latex/contrib/typedref
+catalogue-license unknown
+
+name typespec
+category Package
+revision 621
+shortdesc Create font samplers.
+longdesc Creates a type specimen page with useful information about the
+longdesc typeface.
+docfiles size=658546
+ texmf-dist/doc/plain/typespec/TypeSpec.pdf details="Package outline and some samplers"
+ texmf-dist/doc/plain/typespec/TypeSpec.tex
+runfiles size=72418
+ texmf-dist/tex/plain/typespec/TypeSp01.tex
+ texmf-dist/tex/plain/typespec/TypeSp02.tex
+ texmf-dist/tex/plain/typespec/TypeSp03.tex
+ texmf-dist/tex/plain/typespec/TypeSp04.tex
+ texmf-dist/tex/plain/typespec/TypeSp05.tex
+ texmf-dist/tex/plain/typespec/TypeSp06.tex
+ texmf-dist/tex/plain/typespec/TypeSp07.tex
+ texmf-dist/tex/plain/typespec/TypeSp08.tex
+ texmf-dist/tex/plain/typespec/TypeSp09.tex
+ texmf-dist/tex/plain/typespec/TypeSp10.tex
+catalogue-version
+catalogue-date 2007-01-18 23:55:07 +0100
+catalogue-ctan /macros/plain/contrib/TypeSpec
+catalogue-license unknown
+
+name typogrid
+category Package
+revision 3582
+shortdesc Print a typographic grid.
+longdesc Draws a grid on every page of the document; the grid divides
+longdesc the page into columns, and may be used for fixing measurements
+longdesc of layout.
+docfiles size=62275
+ texmf-dist/doc/latex/typogrid/README details="Readme"
+ texmf-dist/doc/latex/typogrid/testtypogrid.tex
+ texmf-dist/doc/latex/typogrid/typogrid.pdf details="Package documentation"
+srcfiles size=8717
+ texmf-dist/source/latex/typogrid/Makefile
+ texmf-dist/source/latex/typogrid/typogrid.dtx
+ texmf-dist/source/latex/typogrid/typogrid.ins
+runfiles size=2513
+ texmf-dist/tex/latex/typogrid/typogrid.sty
+catalogue-version 0.10
+catalogue-date 2007-01-18 23:55:07 +0100
+catalogue-ctan /macros/latex/contrib/typogrid
+catalogue-license lppl
+
+name uaclasses
+category Package
+revision 1487
+shortdesc University of Arizona thesis and dissertation format.
+longdesc This package provides a LaTeX2e document class named ‘ua-
+longdesc thesis’ for typesetting theses and dissertations in the
+longdesc official format required by the University of Arizona.
+longdesc Moreover, there is a fully compatible alternative document
+longdesc class ‘my-thesis’ for private ‘nice’ copies of the
+longdesc dissertation, and the respective title pages are available as
+longdesc separate packages to work with any document class.
+docfiles size=209307
+ texmf-dist/doc/latex/uaclasses/my-example.dvi
+ texmf-dist/doc/latex/uaclasses/ua-classes.dvi
+ texmf-dist/doc/latex/uaclasses/ua-example.dvi details="Package example"
+ texmf-dist/doc/latex/uaclasses/ua-example.tex
+srcfiles size=49364
+ texmf-dist/source/latex/uaclasses/README
+ texmf-dist/source/latex/uaclasses/ua-classes.dtx
+ texmf-dist/source/latex/uaclasses/ua-classes.ins
+runfiles size=22394
+ texmf-dist/tex/latex/uaclasses/my-thesis.cls
+ texmf-dist/tex/latex/uaclasses/my-title.sty
+ texmf-dist/tex/latex/uaclasses/ua-thesis.cls
+ texmf-dist/tex/latex/uaclasses/ua-title.sty
+catalogue-version
+catalogue-date 2007-01-18 23:55:07 +0100
+catalogue-ctan /macros/latex/contrib/uaclasses
+catalogue-license unknown
+
+name ucs
+category Package
+revision 1418
+docfiles size=899814
+ texmf-dist/doc/latex/ucs/FAQ
+ texmf-dist/doc/latex/ucs/INSTALL
+ texmf-dist/doc/latex/ucs/LICENSE
+ texmf-dist/doc/latex/ucs/README
+ texmf-dist/doc/latex/ucs/VERSION
+ texmf-dist/doc/latex/ucs/config/ascii.ucf.gz
+ texmf-dist/doc/latex/ucs/config/boxdraw.ucf.gz
+ texmf-dist/doc/latex/ucs/config/braille.ucf.gz
+ texmf-dist/doc/latex/ucs/config/cjk-bg5.ucf.gz
+ texmf-dist/doc/latex/ucs/config/cjk-gb.ucf.gz
+ texmf-dist/doc/latex/ucs/config/cjk-globals.ucf.gz
+ texmf-dist/doc/latex/ucs/config/cjk-hangul.ucf.gz
+ texmf-dist/doc/latex/ucs/config/cjk-jis.ucf.gz
+ texmf-dist/doc/latex/ucs/config/combining.ucf.gz
+ texmf-dist/doc/latex/ucs/config/control.ucf.gz
+ texmf-dist/doc/latex/ucs/config/ctrlglyphs.ucf.gz
+ texmf-dist/doc/latex/ucs/config/currency.ucf.gz
+ texmf-dist/doc/latex/ucs/config/cyrillic.ucf.gz
+ texmf-dist/doc/latex/ucs/config/devanagari.ucf.gz
+ texmf-dist/doc/latex/ucs/config/ethiopic.ucf.gz
+ texmf-dist/doc/latex/ucs/config/geometric.ucf.gz
+ texmf-dist/doc/latex/ucs/config/greek.ucf.gz
+ texmf-dist/doc/latex/ucs/config/hebrew.ucf.gz
+ texmf-dist/doc/latex/ucs/config/ipa.ucf.gz
+ texmf-dist/doc/latex/ucs/config/klingon.ucf.gz
+ texmf-dist/doc/latex/ucs/config/latin-a.ucf.gz
+ texmf-dist/doc/latex/ucs/config/latin-b.ucf.gz
+ texmf-dist/doc/latex/ucs/config/latin-e-a.ucf.gz
+ texmf-dist/doc/latex/ucs/config/latin1.ucf.gz
+ texmf-dist/doc/latex/ucs/config/math.ucf.gz
+ texmf-dist/doc/latex/ucs/config/mathalpha.ucf.gz
+ texmf-dist/doc/latex/ucs/config/miscsymb.ucf.gz
+ texmf-dist/doc/latex/ucs/config/modifier.ucf.gz
+ texmf-dist/doc/latex/ucs/config/mongolian.ucf.gz
+ texmf-dist/doc/latex/ucs/config/pifont.ucf.gz
+ texmf-dist/doc/latex/ucs/config/punct.ucf.gz
+ texmf-dist/doc/latex/ucs/config/supersub.ucf.gz
+ texmf-dist/doc/latex/ucs/config/tags.ucf.gz
+ texmf-dist/doc/latex/ucs/config/telugu.ucf.gz
+ texmf-dist/doc/latex/ucs/config/thai.ucf.gz
+ texmf-dist/doc/latex/ucs/discovermacro.pl
+ texmf-dist/doc/latex/ucs/languages.ps.gz
+ texmf-dist/doc/latex/ucs/latexout.pl
+ texmf-dist/doc/latex/ucs/ltxmacrs.txt
+ texmf-dist/doc/latex/ucs/makeunidef.pl
+ texmf-dist/doc/latex/ucs/ucs.ps.gz
+runfiles size=2204155
+ texmf-dist/tex/latex/ucs/UnicodeT.sfd
+ texmf-dist/tex/latex/ucs/autofe.sty
+ texmf-dist/tex/latex/ucs/c00enc.def
+ texmf-dist/tex/latex/ucs/c10enc.def
+ texmf-dist/tex/latex/ucs/c40enc.def
+ texmf-dist/tex/latex/ucs/c42enc.def
+ texmf-dist/tex/latex/ucs/c61enc.def
+ texmf-dist/tex/latex/ucs/cenccmn.tex
+ texmf-dist/tex/latex/ucs/cp1252.enc
+ texmf-dist/tex/latex/ucs/data/uni-0.def
+ texmf-dist/tex/latex/ucs/data/uni-1.def
+ texmf-dist/tex/latex/ucs/data/uni-100.def
+ texmf-dist/tex/latex/ucs/data/uni-101.def
+ texmf-dist/tex/latex/ucs/data/uni-102.def
+ texmf-dist/tex/latex/ucs/data/uni-103.def
+ texmf-dist/tex/latex/ucs/data/uni-104.def
+ texmf-dist/tex/latex/ucs/data/uni-105.def
+ texmf-dist/tex/latex/ucs/data/uni-106.def
+ texmf-dist/tex/latex/ucs/data/uni-107.def
+ texmf-dist/tex/latex/ucs/data/uni-108.def
+ texmf-dist/tex/latex/ucs/data/uni-109.def
+ texmf-dist/tex/latex/ucs/data/uni-110.def
+ texmf-dist/tex/latex/ucs/data/uni-111.def
+ texmf-dist/tex/latex/ucs/data/uni-112.def
+ texmf-dist/tex/latex/ucs/data/uni-113.def
+ texmf-dist/tex/latex/ucs/data/uni-114.def
+ texmf-dist/tex/latex/ucs/data/uni-115.def
+ texmf-dist/tex/latex/ucs/data/uni-116.def
+ texmf-dist/tex/latex/ucs/data/uni-117.def
+ texmf-dist/tex/latex/ucs/data/uni-118.def
+ texmf-dist/tex/latex/ucs/data/uni-119.def
+ texmf-dist/tex/latex/ucs/data/uni-12.def
+ texmf-dist/tex/latex/ucs/data/uni-120.def
+ texmf-dist/tex/latex/ucs/data/uni-121.def
+ texmf-dist/tex/latex/ucs/data/uni-122.def
+ texmf-dist/tex/latex/ucs/data/uni-123.def
+ texmf-dist/tex/latex/ucs/data/uni-124.def
+ texmf-dist/tex/latex/ucs/data/uni-125.def
+ texmf-dist/tex/latex/ucs/data/uni-126.def
+ texmf-dist/tex/latex/ucs/data/uni-127.def
+ texmf-dist/tex/latex/ucs/data/uni-128.def
+ texmf-dist/tex/latex/ucs/data/uni-129.def
+ texmf-dist/tex/latex/ucs/data/uni-130.def
+ texmf-dist/tex/latex/ucs/data/uni-131.def
+ texmf-dist/tex/latex/ucs/data/uni-132.def
+ texmf-dist/tex/latex/ucs/data/uni-133.def
+ texmf-dist/tex/latex/ucs/data/uni-134.def
+ texmf-dist/tex/latex/ucs/data/uni-135.def
+ texmf-dist/tex/latex/ucs/data/uni-136.def
+ texmf-dist/tex/latex/ucs/data/uni-137.def
+ texmf-dist/tex/latex/ucs/data/uni-138.def
+ texmf-dist/tex/latex/ucs/data/uni-139.def
+ texmf-dist/tex/latex/ucs/data/uni-14.def
+ texmf-dist/tex/latex/ucs/data/uni-140.def
+ texmf-dist/tex/latex/ucs/data/uni-141.def
+ texmf-dist/tex/latex/ucs/data/uni-142.def
+ texmf-dist/tex/latex/ucs/data/uni-143.def
+ texmf-dist/tex/latex/ucs/data/uni-144.def
+ texmf-dist/tex/latex/ucs/data/uni-145.def
+ texmf-dist/tex/latex/ucs/data/uni-146.def
+ texmf-dist/tex/latex/ucs/data/uni-147.def
+ texmf-dist/tex/latex/ucs/data/uni-148.def
+ texmf-dist/tex/latex/ucs/data/uni-149.def
+ texmf-dist/tex/latex/ucs/data/uni-150.def
+ texmf-dist/tex/latex/ucs/data/uni-151.def
+ texmf-dist/tex/latex/ucs/data/uni-152.def
+ texmf-dist/tex/latex/ucs/data/uni-153.def
+ texmf-dist/tex/latex/ucs/data/uni-154.def
+ texmf-dist/tex/latex/ucs/data/uni-155.def
+ texmf-dist/tex/latex/ucs/data/uni-156.def
+ texmf-dist/tex/latex/ucs/data/uni-157.def
+ texmf-dist/tex/latex/ucs/data/uni-158.def
+ texmf-dist/tex/latex/ucs/data/uni-159.def
+ texmf-dist/tex/latex/ucs/data/uni-172.def
+ texmf-dist/tex/latex/ucs/data/uni-173.def
+ texmf-dist/tex/latex/ucs/data/uni-174.def
+ texmf-dist/tex/latex/ucs/data/uni-175.def
+ texmf-dist/tex/latex/ucs/data/uni-176.def
+ texmf-dist/tex/latex/ucs/data/uni-177.def
+ texmf-dist/tex/latex/ucs/data/uni-178.def
+ texmf-dist/tex/latex/ucs/data/uni-179.def
+ texmf-dist/tex/latex/ucs/data/uni-18.def
+ texmf-dist/tex/latex/ucs/data/uni-180.def
+ texmf-dist/tex/latex/ucs/data/uni-181.def
+ texmf-dist/tex/latex/ucs/data/uni-182.def
+ texmf-dist/tex/latex/ucs/data/uni-183.def
+ texmf-dist/tex/latex/ucs/data/uni-184.def
+ texmf-dist/tex/latex/ucs/data/uni-185.def
+ texmf-dist/tex/latex/ucs/data/uni-186.def
+ texmf-dist/tex/latex/ucs/data/uni-187.def
+ texmf-dist/tex/latex/ucs/data/uni-188.def
+ texmf-dist/tex/latex/ucs/data/uni-189.def
+ texmf-dist/tex/latex/ucs/data/uni-19.def
+ texmf-dist/tex/latex/ucs/data/uni-190.def
+ texmf-dist/tex/latex/ucs/data/uni-191.def
+ texmf-dist/tex/latex/ucs/data/uni-192.def
+ texmf-dist/tex/latex/ucs/data/uni-193.def
+ texmf-dist/tex/latex/ucs/data/uni-194.def
+ texmf-dist/tex/latex/ucs/data/uni-195.def
+ texmf-dist/tex/latex/ucs/data/uni-196.def
+ texmf-dist/tex/latex/ucs/data/uni-197.def
+ texmf-dist/tex/latex/ucs/data/uni-198.def
+ texmf-dist/tex/latex/ucs/data/uni-199.def
+ texmf-dist/tex/latex/ucs/data/uni-2.def
+ texmf-dist/tex/latex/ucs/data/uni-200.def
+ texmf-dist/tex/latex/ucs/data/uni-201.def
+ texmf-dist/tex/latex/ucs/data/uni-202.def
+ texmf-dist/tex/latex/ucs/data/uni-203.def
+ texmf-dist/tex/latex/ucs/data/uni-204.def
+ texmf-dist/tex/latex/ucs/data/uni-205.def
+ texmf-dist/tex/latex/ucs/data/uni-206.def
+ texmf-dist/tex/latex/ucs/data/uni-207.def
+ texmf-dist/tex/latex/ucs/data/uni-208.def
+ texmf-dist/tex/latex/ucs/data/uni-209.def
+ texmf-dist/tex/latex/ucs/data/uni-210.def
+ texmf-dist/tex/latex/ucs/data/uni-211.def
+ texmf-dist/tex/latex/ucs/data/uni-212.def
+ texmf-dist/tex/latex/ucs/data/uni-213.def
+ texmf-dist/tex/latex/ucs/data/uni-214.def
+ texmf-dist/tex/latex/ucs/data/uni-215.def
+ texmf-dist/tex/latex/ucs/data/uni-24.def
+ texmf-dist/tex/latex/ucs/data/uni-248.def
+ texmf-dist/tex/latex/ucs/data/uni-249.def
+ texmf-dist/tex/latex/ucs/data/uni-250.def
+ texmf-dist/tex/latex/ucs/data/uni-251.def
+ texmf-dist/tex/latex/ucs/data/uni-254.def
+ texmf-dist/tex/latex/ucs/data/uni-255.def
+ texmf-dist/tex/latex/ucs/data/uni-29.def
+ texmf-dist/tex/latex/ucs/data/uni-3.def
+ texmf-dist/tex/latex/ucs/data/uni-30.def
+ texmf-dist/tex/latex/ucs/data/uni-31.def
+ texmf-dist/tex/latex/ucs/data/uni-32.def
+ texmf-dist/tex/latex/ucs/data/uni-33.def
+ texmf-dist/tex/latex/ucs/data/uni-34.def
+ texmf-dist/tex/latex/ucs/data/uni-35.def
+ texmf-dist/tex/latex/ucs/data/uni-3584.def
+ texmf-dist/tex/latex/ucs/data/uni-36.def
+ texmf-dist/tex/latex/ucs/data/uni-37.def
+ texmf-dist/tex/latex/ucs/data/uni-38.def
+ texmf-dist/tex/latex/ucs/data/uni-39.def
+ texmf-dist/tex/latex/ucs/data/uni-4.def
+ texmf-dist/tex/latex/ucs/data/uni-40.def
+ texmf-dist/tex/latex/ucs/data/uni-42.def
+ texmf-dist/tex/latex/ucs/data/uni-46.def
+ texmf-dist/tex/latex/ucs/data/uni-468.def
+ texmf-dist/tex/latex/ucs/data/uni-469.def
+ texmf-dist/tex/latex/ucs/data/uni-47.def
+ texmf-dist/tex/latex/ucs/data/uni-470.def
+ texmf-dist/tex/latex/ucs/data/uni-471.def
+ texmf-dist/tex/latex/ucs/data/uni-48.def
+ texmf-dist/tex/latex/ucs/data/uni-49.def
+ texmf-dist/tex/latex/ucs/data/uni-5.def
+ texmf-dist/tex/latex/ucs/data/uni-50.def
+ texmf-dist/tex/latex/ucs/data/uni-51.def
+ texmf-dist/tex/latex/ucs/data/uni-760.def
+ texmf-dist/tex/latex/ucs/data/uni-761.def
+ texmf-dist/tex/latex/ucs/data/uni-762.def
+ texmf-dist/tex/latex/ucs/data/uni-78.def
+ texmf-dist/tex/latex/ucs/data/uni-79.def
+ texmf-dist/tex/latex/ucs/data/uni-80.def
+ texmf-dist/tex/latex/ucs/data/uni-81.def
+ texmf-dist/tex/latex/ucs/data/uni-82.def
+ texmf-dist/tex/latex/ucs/data/uni-83.def
+ texmf-dist/tex/latex/ucs/data/uni-84.def
+ texmf-dist/tex/latex/ucs/data/uni-85.def
+ texmf-dist/tex/latex/ucs/data/uni-86.def
+ texmf-dist/tex/latex/ucs/data/uni-87.def
+ texmf-dist/tex/latex/ucs/data/uni-88.def
+ texmf-dist/tex/latex/ucs/data/uni-89.def
+ texmf-dist/tex/latex/ucs/data/uni-9.def
+ texmf-dist/tex/latex/ucs/data/uni-90.def
+ texmf-dist/tex/latex/ucs/data/uni-91.def
+ texmf-dist/tex/latex/ucs/data/uni-92.def
+ texmf-dist/tex/latex/ucs/data/uni-93.def
+ texmf-dist/tex/latex/ucs/data/uni-94.def
+ texmf-dist/tex/latex/ucs/data/uni-95.def
+ texmf-dist/tex/latex/ucs/data/uni-96.def
+ texmf-dist/tex/latex/ucs/data/uni-97.def
+ texmf-dist/tex/latex/ucs/data/uni-98.def
+ texmf-dist/tex/latex/ucs/data/uni-99.def
+ texmf-dist/tex/latex/ucs/data/uni-global.def
+ texmf-dist/tex/latex/ucs/data/uninames.dat
+ texmf-dist/tex/latex/ucs/ldvarial.fd
+ texmf-dist/tex/latex/ucs/ldvc2000.fd
+ texmf-dist/tex/latex/ucs/ldvenc.def
+ texmf-dist/tex/latex/ucs/letc2000.fd
+ texmf-dist/tex/latex/ucs/letenc.def
+ texmf-dist/tex/latex/ucs/letgfzem.fd
+ texmf-dist/tex/latex/ucs/letjiret.fd
+ texmf-dist/tex/latex/ucs/lklenc.def
+ texmf-dist/tex/latex/ucs/lklkli.fd
+ texmf-dist/tex/latex/ucs/ltaarial.fd
+ texmf-dist/tex/latex/ucs/ltac2000.fd
+ texmf-dist/tex/latex/ucs/ltaenc.def
+ texmf-dist/tex/latex/ucs/ltgc2000.fd
+ texmf-dist/tex/latex/ucs/ltgenc.def
+ texmf-dist/tex/latex/ucs/ltlcmr.fd
+ texmf-dist/tex/latex/ucs/ltlenc.def
+ texmf-dist/tex/latex/ucs/ltwdsnol.fd
+ texmf-dist/tex/latex/ucs/ltwdsque.fd
+ texmf-dist/tex/latex/ucs/ltwdssin.fd
+ texmf-dist/tex/latex/ucs/ltwenc.def
+ texmf-dist/tex/latex/ucs/lucarial.fd
+ texmf-dist/tex/latex/ucs/lucc2000.fd
+ texmf-dist/tex/latex/ucs/lucenc.def
+ texmf-dist/tex/latex/ucs/mkrenc.def
+ texmf-dist/tex/latex/ucs/mkrezra.fd
+ texmf-dist/tex/latex/ucs/mkrhadas.fd
+ texmf-dist/tex/latex/ucs/mkromega.fd
+ texmf-dist/tex/latex/ucs/mkrrashi.fd
+ texmf-dist/tex/latex/ucs/t2dcmr.fd
+ texmf-dist/tex/latex/ucs/t2denc.def
+ texmf-dist/tex/latex/ucs/tengwarDS.enc
+ texmf-dist/tex/latex/ucs/ucs.sty
+ texmf-dist/tex/latex/ucs/ucsencs.def
+ texmf-dist/tex/latex/ucs/ucshyper.sty
+ texmf-dist/tex/latex/ucs/ucsutils.sty
+ texmf-dist/tex/latex/ucs/utf8x.def
+ texmf-dist/tex/latex/ucs/xscmr.fd
+ texmf-dist/tex/latex/ucs/xsenc.def
+
+name ucthesis
+category Package
+revision 1419
+shortdesc University of California thesis format.
+longdesc A modified version of the standard LaTeX report style that is
+longdesc accepted for use with University of California PhD
+longdesc dissertations and Masters theses. A sample dissertation source
+longdesc and bibliography are provided.
+docfiles size=16304
+ texmf-dist/doc/latex/ucthesis/README details="Readme and basic documentation"
+ texmf-dist/doc/latex/ucthesis/uctest.bib
+ texmf-dist/doc/latex/ucthesis/uctest.tex
+runfiles size=100926
+ texmf-dist/tex/latex/ucthesis/uct10.clo
+ texmf-dist/tex/latex/ucthesis/uct11.clo
+ texmf-dist/tex/latex/ucthesis/uct12.clo
+ texmf-dist/tex/latex/ucthesis/ucthesis.cls
+catalogue-version 3.2
+catalogue-date 2007-01-18 23:55:07 +0100
+catalogue-ctan /macros/latex/contrib/ucthesis
+catalogue-license lppl
+
+name uebungsblatt
+category Package
+revision 5485
+shortdesc A LaTeX class for writing exercise sheets.
+longdesc This package implements a LaTeX class for writing exercise
+longdesc sheets for a lecture. Features: – quick typesetting of
+longdesc exercise sheets or their revisions, – simple user friendly
+longdesc commands, – elegant page formatting, – automatic numbering
+longdesc of exercises and sub-exercises, – the number of the exercise
+longdesc sheet is extracted automatically from the file name, – static
+longdesc information about the lectures and the authors needs to
+longdesc provided at one point only.
+docfiles size=249305
+ texmf-dist/doc/latex/uebungsblatt/README details="README" language="de"
+ texmf-dist/doc/latex/uebungsblatt/history.txt
+ texmf-dist/doc/latex/uebungsblatt/uebungsblatt-doc.pdf
+ texmf-dist/doc/latex/uebungsblatt/uebungsblatt-doc.tex
+runfiles size=15232
+ texmf-dist/tex/latex/uebungsblatt/uebungsblatt.cls
+ texmf-dist/tex/latex/uebungsblatt/uebungsblatt.sty
+catalogue-version v1.5.0
+catalogue-date 2006-11-29 14:22:26 +0100
+catalogue-ctan /macros/latex/contrib/uebungsblatt
+catalogue-license lppl
+
+name uhc
+category Package
+revision 102
+shortdesc Fonts for the Korean language.
+longdesc Support for Korean documents written in Korean standard KSC
+longdesc codes for LaTeX2e.
+execute addMap umj.map
+docfiles size=968
+ texmf-dist/doc/fonts/uhc/umj/README
+runfiles size=7757748
+ texmf-dist/dvips/uhc/config.uhc
+ texmf-dist/fonts/afm/uhc/umj/umj00.afm
+ texmf-dist/fonts/afm/uhc/umj/umj01.afm
+ texmf-dist/fonts/afm/uhc/umj/umj02.afm
+ texmf-dist/fonts/afm/uhc/umj/umj03.afm
+ texmf-dist/fonts/afm/uhc/umj/umj04.afm
+ texmf-dist/fonts/afm/uhc/umj/umj05.afm
+ texmf-dist/fonts/afm/uhc/umj/umj10.afm
+ texmf-dist/fonts/afm/uhc/umj/umj11.afm
+ texmf-dist/fonts/afm/uhc/umj/umj12.afm
+ texmf-dist/fonts/afm/uhc/umj/umj13.afm
+ texmf-dist/fonts/afm/uhc/umj/umj14.afm
+ texmf-dist/fonts/afm/uhc/umj/umj15.afm
+ texmf-dist/fonts/afm/uhc/umj/umj16.afm
+ texmf-dist/fonts/afm/uhc/umj/umj17.afm
+ texmf-dist/fonts/afm/uhc/umj/umj20.afm
+ texmf-dist/fonts/afm/uhc/umj/umj21.afm
+ texmf-dist/fonts/afm/uhc/umj/umj22.afm
+ texmf-dist/fonts/afm/uhc/umj/umj23.afm
+ texmf-dist/fonts/afm/uhc/umj/umj24.afm
+ texmf-dist/fonts/afm/uhc/umj/umj25.afm
+ texmf-dist/fonts/afm/uhc/umj/umj26.afm
+ texmf-dist/fonts/afm/uhc/umj/umj27.afm
+ texmf-dist/fonts/afm/uhc/umj/umj28.afm
+ texmf-dist/fonts/afm/uhc/umj/umj29.afm
+ texmf-dist/fonts/afm/uhc/umj/umj30.afm
+ texmf-dist/fonts/afm/uhc/umj/umj31.afm
+ texmf-dist/fonts/afm/uhc/umj/umj32.afm
+ texmf-dist/fonts/afm/uhc/umj/umj33.afm
+ texmf-dist/fonts/afm/uhc/umj/umj34.afm
+ texmf-dist/fonts/afm/uhc/umj/umj35.afm
+ texmf-dist/fonts/afm/uhc/umj/umj36.afm
+ texmf-dist/fonts/afm/uhc/umj/umj37.afm
+ texmf-dist/fonts/afm/uhc/umj/umj38.afm
+ texmf-dist/fonts/map/dvips/uhc/umj.map
+ texmf-dist/fonts/tfm/uhc/umj/umj00.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj01.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj02.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj03.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj04.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj05.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj10.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj11.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj12.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj13.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj14.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj15.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj16.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj17.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj20.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj21.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj22.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj23.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj24.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj25.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj26.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj27.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj28.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj29.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj30.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj31.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj32.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj33.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj34.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj35.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj36.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj37.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umj38.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc00.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc01.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc02.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc03.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc04.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc05.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc10.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc11.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc12.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc13.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc14.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc15.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc16.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc17.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc20.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc21.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc22.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc23.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc24.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc25.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc26.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc27.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc28.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc29.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc30.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc31.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc32.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc33.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc34.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc35.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc36.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc37.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjc38.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco00.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco01.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco02.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco03.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco04.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco05.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco10.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco11.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco12.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco13.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco14.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco15.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco16.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco17.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco20.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco21.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco22.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco23.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco24.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco25.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco26.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco27.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco28.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco29.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco30.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco31.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco32.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco33.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco34.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco35.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco36.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco37.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjco38.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo00.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo01.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo02.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo03.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo04.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo05.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo10.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo11.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo12.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo13.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo14.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo15.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo16.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo17.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo20.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo21.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo22.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo23.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo24.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo25.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo26.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo27.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo28.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo29.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo30.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo31.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo32.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo33.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo34.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo35.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo36.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo37.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjo38.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju00.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju01.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju02.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju03.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju04.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju05.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju10.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju11.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju12.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju13.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju14.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju15.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju16.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju17.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju20.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju21.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju22.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju23.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju24.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju25.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju26.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju27.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju28.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju29.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju30.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju31.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju32.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju33.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju34.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju35.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju36.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju37.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umju38.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo00.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo01.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo02.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo03.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo04.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo05.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo10.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo11.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo12.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo13.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo14.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo15.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo16.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo17.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo20.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo21.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo22.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo23.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo24.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo25.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo26.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo27.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo28.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo29.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo30.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo31.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo32.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo33.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo34.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo35.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo36.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo37.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjuo38.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx00.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx01.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx02.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx03.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx04.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx05.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx10.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx11.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx12.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx13.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx14.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx15.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx16.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx17.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx20.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx21.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx22.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx23.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx24.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx25.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx26.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx27.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx28.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx29.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx30.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx31.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx32.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx33.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx34.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx35.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx36.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx37.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjx38.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo00.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo01.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo02.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo03.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo04.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo05.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo10.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo11.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo12.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo13.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo14.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo15.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo16.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo17.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo20.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo21.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo22.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo23.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo24.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo25.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo26.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo27.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo28.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo29.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo30.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo31.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo32.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo33.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo34.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo35.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo36.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo37.tfm
+ texmf-dist/fonts/tfm/uhc/umj/umjxo38.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj00.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj01.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj02.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj03.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj04.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj20.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj21.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj22.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj23.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj24.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj25.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj26.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj30.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj31.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj32.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj33.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj4e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj4f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj50.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj51.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj52.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj53.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj54.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj55.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj56.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj57.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj58.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj59.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj5a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj5b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj5c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj5d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj5e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj5f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj60.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj61.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj62.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj63.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj64.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj65.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj66.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj67.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj68.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj69.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj6a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj6b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj6c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj6d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj6e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj6f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj70.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj71.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj72.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj73.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj74.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj75.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj76.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj77.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj78.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj79.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj7a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj7b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj7c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj7d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj7e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj7f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj80.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj81.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj82.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj83.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj84.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj85.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj86.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj87.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj88.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj89.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj8a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj8b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj8c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj8d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj8e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj8f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj90.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj91.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj92.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj93.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj94.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj95.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj96.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj97.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj98.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj99.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj9a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj9b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj9c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj9d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj9e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmj9f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjac.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjad.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjae.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjaf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjb9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjba.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjbb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjbc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjbd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjbe.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjbf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc00.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc01.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc02.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc03.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc04.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc20.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc21.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc22.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc23.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc24.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc25.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc26.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc30.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc31.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc32.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc33.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc4e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc4f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc50.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc51.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc52.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc53.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc54.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc55.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc56.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc57.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc58.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc59.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc5a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc5b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc5c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc5d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc5e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc5f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc60.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc61.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc62.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc63.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc64.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc65.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc66.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc67.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc68.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc69.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc6a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc6b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc6c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc6d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc6e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc6f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc70.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc71.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc72.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc73.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc74.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc75.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc76.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc77.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc78.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc79.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc7a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc7b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc7c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc7d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc7e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc7f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc80.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc81.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc82.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc83.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc84.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc85.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc86.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc87.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc88.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc89.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc8a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc8b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc8c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc8d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc8e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc8f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc90.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc91.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc92.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc93.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc94.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc95.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc96.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc97.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc98.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc99.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc9a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc9b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc9c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc9d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc9e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjc9f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjca.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcac.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcad.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcae.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcaf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcb9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcba.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcbb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcbc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcbd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcbe.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcbf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcc9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcca.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjccb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjccc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjccd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcce.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjccf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcd0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcd1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcd2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcd3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcd4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcd5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcd6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcd7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjce.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcf9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcfa.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcff.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco00.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco01.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco02.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco03.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco04.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco20.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco21.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco22.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco23.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco24.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco25.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco26.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco30.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco31.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco32.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco33.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco4e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco4f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco50.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco51.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco52.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco53.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco54.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco55.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco56.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco57.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco58.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco59.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco5a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco5b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco5c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco5d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco5e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco5f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco60.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco61.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco62.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco63.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco64.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco65.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco66.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco67.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco68.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco69.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco6a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco6b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco6c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco6d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco6e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco6f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco70.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco71.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco72.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco73.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco74.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco75.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco76.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco77.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco78.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco79.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco7a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco7b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco7c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco7d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco7e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco7f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco80.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco81.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco82.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco83.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco84.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco85.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco86.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco87.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco88.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco89.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco8a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco8b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco8c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco8d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco8e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco8f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco90.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco91.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco92.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco93.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco94.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco95.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco96.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco97.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco98.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco99.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco9a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco9b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco9c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco9d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco9e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjco9f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoac.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoad.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoae.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoaf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcob9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoba.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcobb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcobc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcobd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcobe.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcobf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoc9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoca.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcocb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcocc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcocd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoce.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcocf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcod0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcod1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcod2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcod3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcod4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcod5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcod6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcod7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcof9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcofa.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjcoff.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjd0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjd1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjd2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjd3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjd4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjd5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjd6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjd7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjf9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjfa.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjff.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo00.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo01.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo02.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo03.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo04.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo20.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo21.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo22.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo23.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo24.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo25.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo26.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo30.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo31.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo32.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo33.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo4e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo4f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo50.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo51.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo52.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo53.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo54.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo55.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo56.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo57.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo58.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo59.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo5a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo5b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo5c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo5d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo5e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo5f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo60.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo61.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo62.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo63.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo64.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo65.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo66.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo67.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo68.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo69.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo6a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo6b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo6c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo6d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo6e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo6f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo70.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo71.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo72.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo73.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo74.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo75.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo76.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo77.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo78.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo79.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo7a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo7b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo7c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo7d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo7e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo7f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo80.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo81.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo82.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo83.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo84.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo85.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo86.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo87.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo88.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo89.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo8a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo8b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo8c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo8d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo8e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo8f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo90.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo91.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo92.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo93.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo94.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo95.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo96.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo97.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo98.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo99.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo9a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo9b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo9c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo9d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo9e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjo9f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoac.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoad.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoae.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoaf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjob9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoba.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjobb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjobc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjobd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjobe.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjobf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoc9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoca.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjocb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjocc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjocd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoce.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjocf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjod0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjod1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjod2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjod3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjod4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjod5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjod6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjod7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjof9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjofa.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjoff.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju00.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju01.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju02.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju03.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju04.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju20.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju21.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju22.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju23.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju24.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju25.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju26.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju30.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju31.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju32.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju33.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju4e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju4f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju50.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju51.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju52.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju53.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju54.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju55.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju56.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju57.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju58.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju59.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju5a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju5b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju5c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju5d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju5e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju5f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju60.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju61.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju62.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju63.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju64.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju65.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju66.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju67.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju68.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju69.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju6a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju6b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju6c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju6d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju6e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju6f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju70.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju71.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju72.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju73.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju74.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju75.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju76.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju77.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju78.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju79.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju7a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju7b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju7c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju7d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju7e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju7f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju80.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju81.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju82.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju83.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju84.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju85.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju86.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju87.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju88.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju89.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju8a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju8b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju8c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju8d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju8e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju8f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju90.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju91.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju92.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju93.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju94.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju95.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju96.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju97.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju98.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju99.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju9a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju9b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju9c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju9d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju9e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmju9f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuac.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuad.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuae.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuaf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjub9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuba.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjubb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjubc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjubd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjube.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjubf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuc9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuca.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjucb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjucc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjucd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuce.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjucf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjud0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjud1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjud2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjud3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjud4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjud5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjud6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjud7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuf9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjufa.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuff.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo00.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo01.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo02.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo03.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo04.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo20.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo21.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo22.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo23.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo24.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo25.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo26.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo30.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo31.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo32.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo33.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo4e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo4f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo50.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo51.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo52.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo53.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo54.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo55.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo56.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo57.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo58.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo59.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo5a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo5b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo5c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo5d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo5e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo5f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo60.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo61.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo62.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo63.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo64.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo65.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo66.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo67.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo68.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo69.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo6a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo6b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo6c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo6d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo6e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo6f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo70.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo71.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo72.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo73.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo74.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo75.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo76.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo77.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo78.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo79.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo7a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo7b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo7c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo7d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo7e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo7f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo80.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo81.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo82.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo83.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo84.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo85.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo86.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo87.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo88.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo89.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo8a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo8b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo8c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo8d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo8e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo8f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo90.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo91.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo92.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo93.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo94.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo95.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo96.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo97.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo98.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo99.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo9a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo9b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo9c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo9d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo9e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuo9f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoac.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoad.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoae.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoaf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuob9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoba.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuobb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuobc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuobd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuobe.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuobf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoc9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoca.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuocb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuocc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuocd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoce.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuocf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuod0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuod1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuod2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuod3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuod4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuod5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuod6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuod7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuof9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuofa.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjuoff.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx00.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx01.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx02.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx03.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx04.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx20.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx21.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx22.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx23.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx24.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx25.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx26.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx30.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx31.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx32.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx33.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx4e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx4f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx50.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx51.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx52.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx53.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx54.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx55.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx56.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx57.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx58.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx59.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx5a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx5b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx5c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx5d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx5e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx5f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx60.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx61.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx62.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx63.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx64.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx65.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx66.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx67.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx68.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx69.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx6a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx6b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx6c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx6d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx6e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx6f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx70.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx71.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx72.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx73.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx74.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx75.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx76.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx77.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx78.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx79.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx7a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx7b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx7c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx7d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx7e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx7f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx80.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx81.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx82.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx83.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx84.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx85.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx86.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx87.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx88.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx89.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx8a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx8b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx8c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx8d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx8e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx8f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx90.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx91.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx92.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx93.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx94.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx95.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx96.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx97.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx98.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx99.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx9a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx9b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx9c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx9d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx9e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjx9f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxac.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxad.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxae.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxaf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxb9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxba.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxbb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxbc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxbd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxbe.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxbf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxc9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxca.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxcb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxcc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxcd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxce.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxcf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxd0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxd1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxd2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxd3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxd4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxd5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxd6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxd7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxf9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxfa.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxff.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo00.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo01.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo02.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo03.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo04.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo20.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo21.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo22.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo23.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo24.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo25.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo26.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo30.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo31.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo32.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo33.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo4e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo4f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo50.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo51.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo52.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo53.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo54.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo55.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo56.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo57.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo58.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo59.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo5a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo5b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo5c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo5d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo5e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo5f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo60.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo61.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo62.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo63.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo64.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo65.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo66.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo67.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo68.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo69.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo6a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo6b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo6c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo6d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo6e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo6f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo70.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo71.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo72.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo73.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo74.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo75.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo76.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo77.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo78.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo79.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo7a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo7b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo7c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo7d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo7e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo7f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo80.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo81.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo82.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo83.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo84.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo85.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo86.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo87.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo88.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo89.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo8a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo8b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo8c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo8d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo8e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo8f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo90.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo91.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo92.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo93.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo94.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo95.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo96.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo97.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo98.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo99.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo9a.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo9b.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo9c.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo9d.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo9e.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxo9f.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoac.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoad.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoae.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoaf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxob9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoba.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxobb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxobc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxobd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxobe.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxobf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc8.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoc9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoca.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxocb.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxocc.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxocd.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoce.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxocf.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxod0.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxod1.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxod2.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxod3.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxod4.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxod5.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxod6.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxod7.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxof9.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxofa.tfm
+ texmf-dist/fonts/tfm/uhc/uwmj/uwmjxoff.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj0.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj04.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj05.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj06.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj07.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj1.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj10.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj11.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj12.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj13.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj14.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj15.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj16.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj17.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj18.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj19.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj2.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj20.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj21.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj22.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj23.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj24.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj25.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj26.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj27.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj28.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj29.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj3.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj4.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj5.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj6.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj7.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj8.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmj9.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc0.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc04.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc05.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc06.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc07.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc1.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc10.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc11.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc12.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc13.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc14.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc15.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc16.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc17.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc18.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc19.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc2.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc20.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc21.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc22.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc23.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc24.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc25.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc26.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc27.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc28.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc29.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc3.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc4.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc5.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc6.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc7.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc8.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjc9.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco0.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco04.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco05.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco06.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco07.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco1.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco10.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco11.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco12.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco13.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco14.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco15.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco16.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco17.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco18.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco19.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco2.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco20.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco21.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco22.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco23.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco24.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco25.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco26.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco27.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco28.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco29.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco3.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco4.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco5.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco6.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco7.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco8.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjco9.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo0.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo04.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo05.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo06.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo07.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo1.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo10.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo11.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo12.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo13.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo14.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo15.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo16.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo17.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo18.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo19.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo2.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo20.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo21.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo22.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo23.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo24.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo25.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo26.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo27.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo28.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo29.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo3.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo4.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo5.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo6.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo7.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo8.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjo9.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju0.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju04.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju05.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju06.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju07.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju1.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju10.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju11.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju12.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju13.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju14.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju15.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju16.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju17.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju18.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju19.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju2.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju20.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju21.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju22.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju23.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju24.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju25.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju26.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju27.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju28.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju29.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju3.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju4.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju5.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju6.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju7.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju8.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmju9.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo0.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo04.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo05.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo06.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo07.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo1.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo10.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo11.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo12.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo13.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo14.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo15.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo16.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo17.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo18.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo19.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo2.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo20.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo21.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo22.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo23.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo24.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo25.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo26.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo27.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo28.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo29.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo3.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo4.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo5.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo6.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo7.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo8.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjuo9.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx0.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx04.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx05.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx06.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx07.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx1.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx10.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx11.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx12.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx13.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx14.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx15.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx16.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx17.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx18.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx19.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx2.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx20.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx21.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx22.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx23.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx24.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx25.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx26.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx27.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx28.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx29.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx3.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx4.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx5.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx6.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx7.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx8.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjx9.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo0.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo04.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo05.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo06.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo07.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo1.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo10.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo11.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo12.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo13.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo14.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo15.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo16.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo17.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo18.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo19.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo2.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo20.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo21.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo22.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo23.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo24.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo25.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo26.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo27.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo28.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo29.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo3.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo4.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo5.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo6.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo7.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo8.tfm
+ texmf-dist/fonts/tfm/uhc/wmj/wmjxo9.tfm
+ texmf-dist/fonts/type1/uhc/umj/umj00.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj01.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj02.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj03.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj04.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj05.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj10.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj11.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj12.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj13.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj14.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj15.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj16.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj17.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj20.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj21.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj22.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj23.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj24.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj25.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj26.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj27.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj28.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj29.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj30.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj31.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj32.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj33.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj34.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj35.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj36.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj37.pfb
+ texmf-dist/fonts/type1/uhc/umj/umj38.pfb
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj00.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj01.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj02.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj03.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj04.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj20.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj21.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj22.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj23.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj24.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj25.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj26.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj30.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj31.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj32.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj33.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj4e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj4f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj50.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj51.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj52.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj53.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj54.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj55.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj56.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj57.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj58.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj59.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj5a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj5b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj5c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj5d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj5e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj5f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj60.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj61.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj62.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj63.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj64.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj65.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj66.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj67.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj68.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj69.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj6a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj6b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj6c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj6d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj6e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj6f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj70.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj71.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj72.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj73.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj74.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj75.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj76.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj77.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj78.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj79.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj7a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj7b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj7c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj7d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj7e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj7f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj80.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj81.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj82.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj83.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj84.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj85.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj86.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj87.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj88.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj89.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj8a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj8b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj8c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj8d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj8e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj8f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj90.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj91.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj92.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj93.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj94.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj95.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj96.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj97.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj98.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj99.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj9a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj9b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj9c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj9d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj9e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmj9f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjac.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjad.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjae.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjaf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjb9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjba.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjbb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjbc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjbd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjbe.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjbf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc00.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc01.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc02.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc03.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc04.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc20.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc21.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc22.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc23.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc24.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc25.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc26.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc30.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc31.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc32.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc33.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc4e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc4f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc50.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc51.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc52.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc53.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc54.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc55.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc56.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc57.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc58.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc59.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc5a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc5b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc5c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc5d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc5e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc5f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc60.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc61.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc62.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc63.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc64.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc65.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc66.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc67.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc68.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc69.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc6a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc6b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc6c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc6d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc6e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc6f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc70.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc71.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc72.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc73.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc74.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc75.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc76.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc77.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc78.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc79.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc7a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc7b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc7c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc7d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc7e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc7f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc80.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc81.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc82.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc83.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc84.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc85.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc86.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc87.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc88.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc89.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc8a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc8b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc8c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc8d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc8e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc8f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc90.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc91.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc92.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc93.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc94.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc95.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc96.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc97.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc98.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc99.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc9a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc9b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc9c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc9d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc9e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjc9f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjca.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcac.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcad.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcae.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcaf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcb9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcba.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcbb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcbc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcbd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcbe.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcbf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcc9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcca.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjccb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjccc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjccd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcce.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjccf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcd0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcd1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcd2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcd3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcd4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcd5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcd6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcd7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjce.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcf9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcfa.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcff.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco00.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco01.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco02.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco03.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco04.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco20.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco21.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco22.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco23.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco24.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco25.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco26.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco30.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco31.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco32.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco33.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco4e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco4f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco50.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco51.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco52.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco53.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco54.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco55.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco56.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco57.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco58.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco59.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco5a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco5b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco5c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco5d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco5e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco5f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco60.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco61.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco62.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco63.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco64.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco65.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco66.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco67.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco68.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco69.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco6a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco6b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco6c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco6d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco6e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco6f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco70.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco71.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco72.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco73.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco74.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco75.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco76.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco77.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco78.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco79.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco7a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco7b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco7c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco7d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco7e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco7f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco80.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco81.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco82.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco83.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco84.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco85.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco86.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco87.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco88.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco89.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco8a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco8b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco8c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco8d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco8e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco8f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco90.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco91.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco92.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco93.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco94.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco95.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco96.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco97.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco98.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco99.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco9a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco9b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco9c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco9d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco9e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjco9f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoac.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoad.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoae.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoaf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcob9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoba.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcobb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcobc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcobd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcobe.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcobf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoc9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoca.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcocb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcocc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcocd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoce.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcocf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcod0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcod1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcod2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcod3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcod4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcod5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcod6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcod7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcof9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcofa.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjcoff.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjd0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjd1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjd2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjd3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjd4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjd5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjd6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjd7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjf9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjfa.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjff.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo00.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo01.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo02.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo03.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo04.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo20.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo21.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo22.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo23.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo24.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo25.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo26.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo30.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo31.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo32.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo33.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo4e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo4f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo50.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo51.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo52.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo53.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo54.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo55.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo56.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo57.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo58.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo59.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo5a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo5b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo5c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo5d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo5e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo5f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo60.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo61.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo62.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo63.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo64.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo65.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo66.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo67.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo68.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo69.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo6a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo6b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo6c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo6d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo6e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo6f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo70.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo71.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo72.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo73.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo74.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo75.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo76.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo77.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo78.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo79.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo7a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo7b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo7c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo7d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo7e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo7f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo80.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo81.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo82.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo83.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo84.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo85.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo86.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo87.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo88.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo89.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo8a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo8b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo8c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo8d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo8e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo8f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo90.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo91.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo92.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo93.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo94.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo95.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo96.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo97.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo98.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo99.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo9a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo9b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo9c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo9d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo9e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjo9f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoac.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoad.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoae.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoaf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjob9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoba.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjobb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjobc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjobd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjobe.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjobf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoc9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoca.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjocb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjocc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjocd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoce.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjocf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjod0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjod1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjod2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjod3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjod4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjod5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjod6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjod7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjof9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjofa.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjoff.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju00.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju01.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju02.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju03.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju04.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju20.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju21.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju22.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju23.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju24.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju25.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju26.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju30.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju31.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju32.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju33.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju4e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju4f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju50.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju51.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju52.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju53.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju54.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju55.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju56.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju57.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju58.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju59.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju5a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju5b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju5c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju5d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju5e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju5f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju60.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju61.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju62.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju63.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju64.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju65.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju66.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju67.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju68.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju69.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju6a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju6b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju6c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju6d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju6e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju6f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju70.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju71.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju72.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju73.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju74.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju75.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju76.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju77.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju78.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju79.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju7a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju7b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju7c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju7d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju7e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju7f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju80.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju81.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju82.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju83.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju84.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju85.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju86.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju87.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju88.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju89.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju8a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju8b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju8c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju8d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju8e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju8f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju90.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju91.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju92.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju93.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju94.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju95.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju96.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju97.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju98.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju99.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju9a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju9b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju9c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju9d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju9e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmju9f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuac.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuad.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuae.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuaf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjub9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuba.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjubb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjubc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjubd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjube.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjubf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuc9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuca.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjucb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjucc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjucd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuce.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjucf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjud0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjud1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjud2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjud3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjud4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjud5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjud6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjud7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuf9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjufa.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuff.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo00.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo01.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo02.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo03.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo04.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo20.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo21.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo22.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo23.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo24.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo25.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo26.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo30.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo31.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo32.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo33.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo4e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo4f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo50.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo51.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo52.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo53.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo54.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo55.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo56.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo57.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo58.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo59.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo5a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo5b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo5c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo5d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo5e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo5f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo60.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo61.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo62.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo63.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo64.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo65.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo66.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo67.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo68.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo69.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo6a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo6b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo6c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo6d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo6e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo6f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo70.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo71.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo72.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo73.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo74.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo75.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo76.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo77.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo78.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo79.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo7a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo7b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo7c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo7d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo7e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo7f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo80.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo81.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo82.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo83.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo84.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo85.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo86.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo87.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo88.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo89.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo8a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo8b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo8c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo8d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo8e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo8f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo90.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo91.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo92.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo93.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo94.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo95.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo96.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo97.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo98.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo99.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo9a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo9b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo9c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo9d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo9e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuo9f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoac.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoad.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoae.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoaf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuob9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoba.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuobb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuobc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuobd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuobe.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuobf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoc9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoca.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuocb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuocc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuocd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoce.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuocf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuod0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuod1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuod2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuod3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuod4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuod5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuod6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuod7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuof9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuofa.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjuoff.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx00.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx01.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx02.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx03.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx04.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx20.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx21.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx22.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx23.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx24.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx25.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx26.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx30.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx31.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx32.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx33.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx4e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx4f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx50.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx51.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx52.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx53.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx54.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx55.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx56.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx57.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx58.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx59.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx5a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx5b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx5c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx5d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx5e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx5f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx60.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx61.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx62.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx63.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx64.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx65.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx66.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx67.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx68.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx69.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx6a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx6b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx6c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx6d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx6e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx6f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx70.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx71.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx72.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx73.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx74.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx75.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx76.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx77.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx78.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx79.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx7a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx7b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx7c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx7d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx7e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx7f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx80.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx81.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx82.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx83.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx84.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx85.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx86.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx87.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx88.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx89.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx8a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx8b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx8c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx8d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx8e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx8f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx90.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx91.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx92.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx93.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx94.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx95.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx96.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx97.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx98.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx99.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx9a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx9b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx9c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx9d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx9e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjx9f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxac.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxad.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxae.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxaf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxb9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxba.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxbb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxbc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxbd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxbe.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxbf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxc9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxca.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxcb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxcc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxcd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxce.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxcf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxd0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxd1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxd2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxd3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxd4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxd5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxd6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxd7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxf9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxfa.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxff.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo00.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo01.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo02.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo03.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo04.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo20.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo21.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo22.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo23.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo24.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo25.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo26.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo30.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo31.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo32.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo33.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo4e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo4f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo50.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo51.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo52.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo53.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo54.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo55.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo56.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo57.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo58.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo59.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo5a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo5b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo5c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo5d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo5e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo5f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo60.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo61.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo62.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo63.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo64.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo65.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo66.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo67.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo68.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo69.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo6a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo6b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo6c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo6d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo6e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo6f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo70.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo71.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo72.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo73.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo74.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo75.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo76.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo77.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo78.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo79.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo7a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo7b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo7c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo7d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo7e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo7f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo80.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo81.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo82.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo83.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo84.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo85.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo86.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo87.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo88.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo89.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo8a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo8b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo8c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo8d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo8e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo8f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo90.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo91.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo92.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo93.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo94.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo95.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo96.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo97.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo98.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo99.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo9a.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo9b.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo9c.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo9d.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo9e.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxo9f.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoac.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoad.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoae.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoaf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxob9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoba.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxobb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxobc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxobd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxobe.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxobf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc8.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoc9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoca.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxocb.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxocc.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxocd.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoce.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxocf.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxod0.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxod1.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxod2.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxod3.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxod4.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxod5.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxod6.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxod7.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxof9.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxofa.vf
+ texmf-dist/fonts/vf/uhc/uwmj/uwmjxoff.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj0.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj04.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj05.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj06.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj07.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj1.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj10.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj11.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj12.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj13.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj14.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj15.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj16.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj17.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj18.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj19.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj2.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj20.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj21.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj22.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj23.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj24.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj25.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj26.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj27.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj28.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj29.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj3.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj4.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj5.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj6.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj7.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj8.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmj9.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc0.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc04.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc05.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc06.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc07.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc1.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc10.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc11.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc12.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc13.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc14.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc15.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc16.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc17.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc18.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc19.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc2.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc20.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc21.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc22.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc23.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc24.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc25.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc26.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc27.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc28.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc29.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc3.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc4.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc5.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc6.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc7.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc8.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjc9.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco0.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco04.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco05.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco06.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco07.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco1.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco10.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco11.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco12.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco13.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco14.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco15.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco16.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco17.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco18.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco19.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco2.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco20.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco21.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco22.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco23.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco24.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco25.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco26.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco27.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco28.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco29.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco3.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco4.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco5.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco6.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco7.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco8.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjco9.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo0.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo04.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo05.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo06.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo07.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo1.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo10.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo11.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo12.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo13.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo14.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo15.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo16.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo17.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo18.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo19.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo2.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo20.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo21.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo22.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo23.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo24.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo25.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo26.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo27.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo28.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo29.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo3.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo4.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo5.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo6.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo7.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo8.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjo9.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju0.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju04.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju05.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju06.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju07.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju1.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju10.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju11.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju12.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju13.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju14.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju15.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju16.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju17.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju18.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju19.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju2.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju20.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju21.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju22.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju23.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju24.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju25.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju26.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju27.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju28.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju29.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju3.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju4.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju5.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju6.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju7.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju8.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmju9.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo0.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo04.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo05.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo06.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo07.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo1.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo10.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo11.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo12.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo13.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo14.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo15.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo16.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo17.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo18.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo19.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo2.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo20.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo21.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo22.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo23.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo24.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo25.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo26.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo27.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo28.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo29.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo3.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo4.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo5.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo6.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo7.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo8.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjuo9.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx0.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx04.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx05.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx06.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx07.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx1.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx10.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx11.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx12.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx13.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx14.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx15.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx16.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx17.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx18.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx19.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx2.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx20.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx21.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx22.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx23.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx24.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx25.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx26.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx27.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx28.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx29.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx3.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx4.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx5.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx6.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx7.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx8.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjx9.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo0.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo04.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo05.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo06.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo07.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo1.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo10.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo11.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo12.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo13.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo14.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo15.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo16.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo17.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo18.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo19.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo2.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo20.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo21.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo22.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo23.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo24.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo25.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo26.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo27.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo28.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo29.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo3.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo4.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo5.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo6.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo7.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo8.vf
+ texmf-dist/fonts/vf/uhc/wmj/wmjxo9.vf
+catalogue-version
+catalogue-date 2007-07-29 12:13:44 +0200
+catalogue-ctan /fonts/korean/HLaTeX
+catalogue-license lppl
+
+name uhrzeit
+category Package
+revision 1420
+shortdesc Time printing, in German.
+longdesc A variety of printing formats are available.
+runfiles size=3672
+ texmf-dist/tex/latex/uhrzeit/uhrzeit.sty
+catalogue-version 0.2
+catalogue-date 2007-03-04 23:24:49 +0100
+catalogue-ctan /macros/latex/contrib/uhrzeit/uhrzeit.sty
+catalogue-license unknown
+
+name uiucthesis
+category Package
+revision 2343
+shortdesc UIUC thesis class.
+longdesc The class produces a document that conforms to the format
+longdesc described in the University's Handbook for Graduate Students
+longdesc Preparing to Deposit.
+docfiles size=274194
+ texmf-dist/doc/latex/uiucthesis/README details="Readme"
+ texmf-dist/doc/latex/uiucthesis/thesis-ex.pdf details="Example of use"
+ texmf-dist/doc/latex/uiucthesis/thesis-ex.tex
+ texmf-dist/doc/latex/uiucthesis/uiucthesis.pdf details="Package documentation"
+srcfiles size=58106
+ texmf-dist/source/latex/uiucthesis/uiucthesis.dtx
+ texmf-dist/source/latex/uiucthesis/uiucthesis.ins
+runfiles size=33981
+ texmf-dist/tex/latex/uiucthesis/uiucthesis.cls
+ texmf-dist/tex/latex/uiucthesis/uiucthesis.sty
+catalogue-version 2.25
+catalogue-date 2007-01-20 15:20:16 +0100
+catalogue-ctan /macros/latex/contrib/uiucthesis
+catalogue-license lppl
+
+name ukrhyph
+category Package
+revision 613
+shortdesc Hyphenation Patterns for Ukrainian.
+longdesc A range of patterns, depending on the encoding of the output
+longdesc font (including the standard T2A, so one can use the patterns
+longdesc with free fonts).
+docfiles size=287530
+ texmf-dist/doc/generic/ukrhyph/README details="Readme"
+ texmf-dist/doc/generic/ukrhyph/rules60.pdf details="Old hyphenation rules" language="uk"
+ texmf-dist/doc/generic/ukrhyph/rules90.pdf details="New hyphenation rules" language="uk"
+ texmf-dist/doc/generic/ukrhyph/rules_ph.pdf details="Old hyphenation rules with phonetics" language="uk"
+runfiles size=129248
+ texmf-dist/tex/generic/ukrhyph/catlcy.tex
+ texmf-dist/tex/generic/ukrhyph/lcy2koi.tex
+ texmf-dist/tex/generic/ukrhyph/lcy2lcy.tex
+ texmf-dist/tex/generic/ukrhyph/lcy2ot2.tex
+ texmf-dist/tex/generic/ukrhyph/lcy2t2a.tex
+ texmf-dist/tex/generic/ukrhyph/lcy2ucy.tex
+ texmf-dist/tex/generic/ukrhyph/rules60.tex
+ texmf-dist/tex/generic/ukrhyph/rules90.tex
+ texmf-dist/tex/generic/ukrhyph/rules_ph.tex
+ texmf-dist/tex/generic/ukrhyph/ukrenhyp.tex
+ texmf-dist/tex/generic/ukrhyph/ukrhypfa.tex
+ texmf-dist/tex/generic/ukrhyph/ukrhyph.koi
+ texmf-dist/tex/generic/ukrhyph/ukrhyph.lcy
+ texmf-dist/tex/generic/ukrhyph/ukrhyph.ot2
+ texmf-dist/tex/generic/ukrhyph/ukrhyph.t2a
+ texmf-dist/tex/generic/ukrhyph/ukrhyph.tex
+ texmf-dist/tex/generic/ukrhyph/ukrhyph.ucy
+ texmf-dist/tex/generic/ukrhyph/ukrhypmp.tex
+ texmf-dist/tex/generic/ukrhyph/ukrhypmt.tex
+ texmf-dist/tex/generic/ukrhyph/ukrhypsm.tex
+ texmf-dist/tex/generic/ukrhyph/ukrhypst.tex
+catalogue-version
+catalogue-date 2007-01-19 00:08:42 +0100
+catalogue-ctan /language/hyphenation/ukrhyph
+catalogue-license lppl
+
+name ulsy
+category Package
+revision 3375
+shortdesc Extra mathematical characters.
+longdesc Metafont definitions of the font, and LaTeX support. The font
+longdesc contains a contradiction symbol at various sizes, and an odplus
+longdesc symbol. Autotraced outline versions of the fonts are available
+longdesc in ulsy-ps.
+docfiles size=74119
+ texmf-dist/doc/latex/ulsy/README details="Readme" language="de"
+ texmf-dist/doc/latex/ulsy/ulsy.pdf
+srcfiles size=2219
+ texmf-dist/source/latex/ulsy/ulsy.dtx
+ texmf-dist/source/latex/ulsy/ulsy.ins
+runfiles size=12493
+ texmf-dist/fonts/source/public/ulsy/ulsy10.mf
+ texmf-dist/fonts/tfm/public/ulsy/ulsy10.tfm
+ texmf-dist/tex/latex/ulsy/Uulsy.fd
+ texmf-dist/tex/latex/ulsy/ulsy.sty
+catalogue-version
+catalogue-date 2007-11-07 11:05:45 +0100
+catalogue-ctan /fonts/ulsy
+catalogue-license unknown
+
+name umich-thesis
+category Package
+revision 1423
+shortdesc University of Michigan Thesis LaTeX class.
+longdesc A LaTeX2e class to create a University of Michigan dissertation
+longdesc according to the Rackham dissertation handbook.
+docfiles size=985
+ texmf-dist/doc/latex/umich-thesis/README details="Readme"
+runfiles size=19846
+ texmf-dist/tex/latex/umich-thesis/umich-thesis.cls
+catalogue-version 1.20
+catalogue-date 2007-03-13 09:06:46 +0100
+catalogue-ctan /macros/latex/contrib/umich-thesis
+catalogue-license lppl
+
+name uml
+category Package
+revision 2817
+docfiles size=621713
+ texmf-dist/doc/latex/uml/Changes
+ texmf-dist/doc/latex/uml/README
+ texmf-dist/doc/latex/uml/example.tex
+ texmf-dist/doc/latex/uml/uml.pdf
+srcfiles size=197030
+ texmf-dist/source/latex/uml/Makefile
+ texmf-dist/source/latex/uml/uml.dtx
+ texmf-dist/source/latex/uml/uml.ins
+runfiles size=30764
+ texmf-dist/tex/latex/uml/uml.sty
+
+name umlaute
+category Package
+revision 2152
+shortdesc German input encodings in LaTeX.
+longdesc An early package for using alternate input encodings. The
+longdesc author considers the package mostly obsolete, since most of its
+longdesc functions are taken by the inputenc package; however, inputenc
+longdesc doesn't support the roman8 and atari encodings, so umlaute
+longdesc remains the sole source of that support.
+docfiles size=122991
+ texmf-dist/doc/latex/umlaute/cs_patch.uue
+ texmf-dist/doc/latex/umlaute/umlaute.pdf details="Package documentation"
+srcfiles size=21718
+ texmf-dist/source/latex/umlaute/umlaute.dtx
+ texmf-dist/source/latex/umlaute/umlaute.ins
+runfiles size=16338
+ texmf-dist/tex/latex/umlaute/atari.def
+ texmf-dist/tex/latex/umlaute/isolatin.def
+ texmf-dist/tex/latex/umlaute/mac.def
+ texmf-dist/tex/latex/umlaute/pc850.def
+ texmf-dist/tex/latex/umlaute/roman8.def
+ texmf-dist/tex/latex/umlaute/umlaute.sty
+catalogue-version v2.1
+catalogue-date 2007-01-20 14:58:25 +0100
+catalogue-ctan /macros/latex/contrib/umlaute
+catalogue-license lppl
+
+name umoline
+category Package
+revision 1487
+shortdesc Underline text allowing line breaking.
+longdesc Provides commands \Underline, \Midline and \Overline for
+longdesc underlining, striking out, and overlining their text arguments.
+docfiles size=20431
+ texmf-dist/doc/latex/umoline/README details="Readme"
+ texmf-dist/doc/latex/umoline/umoline-man.dvi
+ texmf-dist/doc/latex/umoline/umoline-man.tex
+srcfiles size=46330
+ texmf-dist/source/latex/umoline/umoline.dtx
+ texmf-dist/source/latex/umoline/umoline.ins
+runfiles size=7989
+ texmf-dist/tex/latex/umoline/umoline.sty
+catalogue-version
+catalogue-date 2007-01-20 15:20:16 +0100
+catalogue-ctan /macros/latex/contrib/umoline
+catalogue-license lppl
+
+name umrand
+category Package
+revision 1426
+shortdesc Package for fancy box frames.
+longdesc The package includes both macros and Metafont descriptions of
+longdesc fonts.
+docfiles size=37633
+ texmf-dist/doc/fonts/umrand/b.tex
+ texmf-dist/doc/fonts/umrand/readme.u1
+ texmf-dist/doc/fonts/umrand/testfont.tex
+ texmf-dist/doc/fonts/umrand/umrand.tex
+ texmf-dist/doc/fonts/umrand/umrand1.tex
+ texmf-dist/doc/fonts/umrand/umrand12.readme_e details="Readme" language="en"
+ texmf-dist/doc/fonts/umrand/umrand12.readme_g details="Readme" language="de"
+ texmf-dist/doc/fonts/umrand/umrand2.tex
+ texmf-dist/doc/fonts/umrand/umrand3.tex
+ texmf-dist/doc/fonts/umrand/umrand_up1.readme details="Readme for update" language="de"
+runfiles size=11591
+ texmf-dist/fonts/source/public/umrand/ua000.mf
+ texmf-dist/fonts/tfm/public/umrand/umranda.tfm
+ texmf-dist/fonts/tfm/public/umrand/umrandb.tfm
+ texmf-dist/tex/latex/umrand/bsp.sty
+ texmf-dist/tex/latex/umrand/stamm.sty
+ texmf-dist/tex/latex/umrand/struts.sty
+ texmf-dist/tex/latex/umrand/umrand.sty
+catalogue-version
+catalogue-date 2007-03-01 15:54:29 +0100
+catalogue-ctan /macros/generic/umrand
+catalogue-license unknown
+
+name umthesis
+category Package
+revision 4008
+shortdesc Dissertations at the University of Michigan.
+longdesc The class loads book class, and makes minimal changes to it;
+longdesc its coding aims to be as robust as possible, and as a result it
+longdesc has few conflicts with potential add-on packages.
+docfiles size=442326
+ texmf-dist/doc/latex/umthesis/PDP.tex
+ texmf-dist/doc/latex/umthesis/README details="Readme"
+ texmf-dist/doc/latex/umthesis/appAeng.tex
+ texmf-dist/doc/latex/umthesis/appendix.tex
+ texmf-dist/doc/latex/umthesis/conclusion.tex
+ texmf-dist/doc/latex/umthesis/example.pdf
+ texmf-dist/doc/latex/umthesis/example.tex
+ texmf-dist/doc/latex/umthesis/exp1.tex
+ texmf-dist/doc/latex/umthesis/exp2.tex
+ texmf-dist/doc/latex/umthesis/exp3.tex
+ texmf-dist/doc/latex/umthesis/felty.bib
+ texmf-dist/doc/latex/umthesis/intro.tex
+ texmf-dist/doc/latex/umthesis/mybibstyle.bst
+runfiles size=21367
+ texmf-dist/tex/latex/umthesis/umthesis.cls
+catalogue-version 16
+catalogue-date 2007-03-22 19:39:00 +0100
+catalogue-ctan /macros/latex/contrib/umthesis
+catalogue-license lppl
+
+name underlin
+category Package
+revision 2112
+shortdesc Underlined running heads.
+longdesc Defines two pagestyles that provide underlined page heads in
+longdesc LaTeX.
+docfiles size=83139
+ texmf-dist/doc/latex/underlin/underlin.pdf details="Package documentation"
+srcfiles size=4028
+ texmf-dist/source/latex/underlin/underlin.dtx
+ texmf-dist/source/latex/underlin/underlin.ins
+runfiles size=1313
+ texmf-dist/tex/latex/underlin/underlin.sty
+catalogue-version 1.01
+catalogue-date 2007-06-02 10:25:58 +0200
+catalogue-ctan /macros/latex/contrib/underlin
+catalogue-license lppl
+
+name undertilde
+category Package
+revision 2343
+shortdesc Typeset a tilde under one (or many) maths symbols.
+docfiles size=174295
+ texmf-dist/doc/latex/undertilde/undertilde.pdf
+srcfiles size=4827
+ texmf-dist/source/latex/undertilde/undertilde.dtx
+ texmf-dist/source/latex/undertilde/undertilde.ins
+runfiles size=1216
+ texmf-dist/tex/latex/undertilde/undertilde.sty
+catalogue-version
+catalogue-date 2007-01-20 15:20:16 +0100
+catalogue-ctan /macros/latex/contrib/undertilde
+catalogue-license unknown
+
+name units
+category Package
+revision 2343
+shortdesc Typeset units.
+longdesc The package is provided as a bundle with the nicefrac package
+longdesc for typing fractions. Units uses nicefrac in typesetting
+longdesc physical units in a standard-looking sort of way.
+docfiles size=240312
+ texmf-dist/doc/latex/units/COPYING
+ texmf-dist/doc/latex/units/README details="Package README"
+ texmf-dist/doc/latex/units/units.pdf details="Package documentation"
+srcfiles size=24684
+ texmf-dist/source/latex/units/units.dtx
+ texmf-dist/source/latex/units/units.ins
+runfiles size=6163
+ texmf-dist/tex/latex/units/nicefrac.sty
+ texmf-dist/tex/latex/units/units.sty
+catalogue-version 0.9b
+catalogue-date 2007-09-21 11:38:14 +0200
+catalogue-ctan /macros/latex/contrib/units
+catalogue-license gpl
+
+name unitsdef
+category Package
+revision 2343
+shortdesc Typesetting units in LaTeX.
+longdesc There are a lot of packages for typesetting units in LaTeX2e.
+longdesc Some define macros to typeset a lot of units but do not suit to
+longdesc the actual font settings, some make the characters needed
+longdesc available but do not predefine any unit. This package tries to
+longdesc comply with both requirements. It predefines common units,
+longdesc defines an easy to use interface to define new units and
+longdesc changes the output concerning to the surrounding font settings.
+docfiles size=686938
+ texmf-dist/doc/latex/unitsdef/README.1st details="Readme"
+ texmf-dist/doc/latex/unitsdef/defedpraef.tex
+ texmf-dist/doc/latex/unitsdef/defedunits.tex
+ texmf-dist/doc/latex/unitsdef/unitsdef.pdf details="Package documentation"
+srcfiles size=51502
+ texmf-dist/source/latex/unitsdef/unitsdef.dtx
+ texmf-dist/source/latex/unitsdef/unitsdef.ins
+runfiles size=18880
+ texmf-dist/tex/latex/unitsdef/ampabbrv.cfg
+ texmf-dist/tex/latex/unitsdef/enerabbr.cfg
+ texmf-dist/tex/latex/unitsdef/freqabbr.cfg
+ texmf-dist/tex/latex/unitsdef/lengabbr.cfg
+ texmf-dist/tex/latex/unitsdef/molabbrv.cfg
+ texmf-dist/tex/latex/unitsdef/timeabbr.cfg
+ texmf-dist/tex/latex/unitsdef/unitsdef.sty
+ texmf-dist/tex/latex/unitsdef/volabbrv.cfg
+ texmf-dist/tex/latex/unitsdef/voltabbr.cfg
+ texmf-dist/tex/latex/unitsdef/weigabbr.cfg
+catalogue-version 0.2
+catalogue-date 2007-01-20 15:20:16 +0100
+catalogue-ctan /macros/latex/contrib/unitsdef
+catalogue-license lppl
+
+name univers
+category Package
+revision 90
+runfiles size=326832
+ texmf-dist/fonts/tfm/cg/univers/cunb.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunb8t.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunb8tc.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunbi.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunbi8t.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunbi8tc.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunbic.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunbrc.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunm.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunm8t.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunm8tc.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunmi.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunmi8t.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunmi8tc.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunmic.tfm
+ texmf-dist/fonts/tfm/cg/univers/cunmrc.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucb10u.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucb6j.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucb7j.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucb8u.tfm
+ texmf-dist/fonts/tfm/cg/univers/uci10u.tfm
+ texmf-dist/fonts/tfm/cg/univers/uci6j.tfm
+ texmf-dist/fonts/tfm/cg/univers/uci7j.tfm
+ texmf-dist/fonts/tfm/cg/univers/uci8u.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucj10u.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucj6j.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucj7j.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucj8u.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucr10u.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucr6j.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucr7j.tfm
+ texmf-dist/fonts/tfm/cg/univers/ucr8u.tfm
+ texmf-dist/fonts/tfm/cg/univers/unb10u.tfm
+ texmf-dist/fonts/tfm/cg/univers/unb2n.tfm
+ texmf-dist/fonts/tfm/cg/univers/unb6j.tfm
+ texmf-dist/fonts/tfm/cg/univers/unb7j.tfm
+ texmf-dist/fonts/tfm/cg/univers/unb8u.tfm
+ texmf-dist/fonts/tfm/cg/univers/unb9t.tfm
+ texmf-dist/fonts/tfm/cg/univers/uni10u.tfm
+ texmf-dist/fonts/tfm/cg/univers/uni2n.tfm
+ texmf-dist/fonts/tfm/cg/univers/uni6j.tfm
+ texmf-dist/fonts/tfm/cg/univers/uni7j.tfm
+ texmf-dist/fonts/tfm/cg/univers/uni8u.tfm
+ texmf-dist/fonts/tfm/cg/univers/uni9t.tfm
+ texmf-dist/fonts/tfm/cg/univers/unj10u.tfm
+ texmf-dist/fonts/tfm/cg/univers/unj2n.tfm
+ texmf-dist/fonts/tfm/cg/univers/unj6j.tfm
+ texmf-dist/fonts/tfm/cg/univers/unj7j.tfm
+ texmf-dist/fonts/tfm/cg/univers/unj8u.tfm
+ texmf-dist/fonts/tfm/cg/univers/unj9t.tfm
+ texmf-dist/fonts/tfm/cg/univers/unr10u.tfm
+ texmf-dist/fonts/tfm/cg/univers/unr2n.tfm
+ texmf-dist/fonts/tfm/cg/univers/unr6j.tfm
+ texmf-dist/fonts/tfm/cg/univers/unr7j.tfm
+ texmf-dist/fonts/tfm/cg/univers/unr8u.tfm
+ texmf-dist/fonts/tfm/cg/univers/unr9t.tfm
+ texmf-dist/fonts/vf/cg/univers/cunb.vf
+ texmf-dist/fonts/vf/cg/univers/cunb8t.vf
+ texmf-dist/fonts/vf/cg/univers/cunb8tc.vf
+ texmf-dist/fonts/vf/cg/univers/cunbi.vf
+ texmf-dist/fonts/vf/cg/univers/cunbi8t.vf
+ texmf-dist/fonts/vf/cg/univers/cunbi8tc.vf
+ texmf-dist/fonts/vf/cg/univers/cunbic.vf
+ texmf-dist/fonts/vf/cg/univers/cunbrc.vf
+ texmf-dist/fonts/vf/cg/univers/cunm.vf
+ texmf-dist/fonts/vf/cg/univers/cunm8t.vf
+ texmf-dist/fonts/vf/cg/univers/cunm8tc.vf
+ texmf-dist/fonts/vf/cg/univers/cunmi.vf
+ texmf-dist/fonts/vf/cg/univers/cunmi8t.vf
+ texmf-dist/fonts/vf/cg/univers/cunmi8tc.vf
+ texmf-dist/fonts/vf/cg/univers/cunmic.vf
+ texmf-dist/fonts/vf/cg/univers/cunmrc.vf
+
+name universa
+category Package
+revision 1431
+shortdesc Herbert Bayer's 'universal' font.
+longdesc An implementation of the universal font by Herbert Bayer of the
+longdesc Bauhaus school. The MetaFont sources of the fonts, and their
+longdesc LaTeX support, are all supplied in a LaTeX documented source
+longdesc (.dtx) file.
+docfiles size=19254
+ texmf-dist/doc/fonts/universa/copyright.tex
+srcfiles size=243207
+ texmf-dist/source/fonts/universa/README.uni
+ texmf-dist/source/fonts/universa/uni.dtx
+ texmf-dist/source/fonts/universa/uni.ins
+ texmf-dist/source/fonts/universa/unidoc.sty
+runfiles size=141044
+ texmf-dist/fonts/source/public/universa/fulbc10.mf
+ texmf-dist/fonts/source/public/universa/fulbc12.mf
+ texmf-dist/fonts/source/public/universa/fulbc17.mf
+ texmf-dist/fonts/source/public/universa/fulbc8.mf
+ texmf-dist/fonts/source/public/universa/fulbc9.mf
+ texmf-dist/fonts/source/public/universa/fulbo10.mf
+ texmf-dist/fonts/source/public/universa/fulbo12.mf
+ texmf-dist/fonts/source/public/universa/fulbo17.mf
+ texmf-dist/fonts/source/public/universa/fulbo8.mf
+ texmf-dist/fonts/source/public/universa/fulbo9.mf
+ texmf-dist/fonts/source/public/universa/fulbr10.mf
+ texmf-dist/fonts/source/public/universa/fulbr12.mf
+ texmf-dist/fonts/source/public/universa/fulbr17.mf
+ texmf-dist/fonts/source/public/universa/fulbr8.mf
+ texmf-dist/fonts/source/public/universa/fulbr9.mf
+ texmf-dist/fonts/source/public/universa/fulbst10.mf
+ texmf-dist/fonts/source/public/universa/fulbst12.mf
+ texmf-dist/fonts/source/public/universa/fulbst17.mf
+ texmf-dist/fonts/source/public/universa/fulbst8.mf
+ texmf-dist/fonts/source/public/universa/fulbst9.mf
+ texmf-dist/fonts/source/public/universa/fulmc10.mf
+ texmf-dist/fonts/source/public/universa/fulmc12.mf
+ texmf-dist/fonts/source/public/universa/fulmc17.mf
+ texmf-dist/fonts/source/public/universa/fulmc8.mf
+ texmf-dist/fonts/source/public/universa/fulmc9.mf
+ texmf-dist/fonts/source/public/universa/fulmo10.mf
+ texmf-dist/fonts/source/public/universa/fulmo12.mf
+ texmf-dist/fonts/source/public/universa/fulmo17.mf
+ texmf-dist/fonts/source/public/universa/fulmo8.mf
+ texmf-dist/fonts/source/public/universa/fulmo9.mf
+ texmf-dist/fonts/source/public/universa/fulmr10.mf
+ texmf-dist/fonts/source/public/universa/fulmr12.mf
+ texmf-dist/fonts/source/public/universa/fulmr17.mf
+ texmf-dist/fonts/source/public/universa/fulmr8.mf
+ texmf-dist/fonts/source/public/universa/fulmr9.mf
+ texmf-dist/fonts/source/public/universa/fulmst10.mf
+ texmf-dist/fonts/source/public/universa/fulmst12.mf
+ texmf-dist/fonts/source/public/universa/fulmst17.mf
+ texmf-dist/fonts/source/public/universa/fulmst8.mf
+ texmf-dist/fonts/source/public/universa/fulmst9.mf
+ texmf-dist/fonts/source/public/universa/uniacc.mf
+ texmf-dist/fonts/source/public/universa/unibase.mf
+ texmf-dist/fonts/source/public/universa/unidig.mf
+ texmf-dist/fonts/source/public/universa/uniext.mf
+ texmf-dist/fonts/source/public/universa/unilig.mf
+ texmf-dist/fonts/source/public/universa/unilow.mf
+ texmf-dist/fonts/source/public/universa/unipun.mf
+ texmf-dist/fonts/source/public/universa/unispe.mf
+ texmf-dist/fonts/source/public/universa/uniupp.mf
+ texmf-dist/fonts/tfm/public/universa/fulbc10.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbc12.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbc17.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbc8.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbc9.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbo10.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbo12.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbo17.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbo8.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbo9.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbr10.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbr12.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbr17.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbr8.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbr9.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbst10.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbst12.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbst17.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbst8.tfm
+ texmf-dist/fonts/tfm/public/universa/fulbst9.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmc10.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmc12.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmc17.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmc8.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmc9.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmo10.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmo12.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmo17.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmo8.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmo9.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmr10.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmr12.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmr17.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmr8.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmr9.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmst10.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmst12.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmst17.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmst8.tfm
+ texmf-dist/fonts/tfm/public/universa/fulmst9.tfm
+ texmf-dist/tex/latex/universa/omluni.fd
+ texmf-dist/tex/latex/universa/omsuni.fd
+ texmf-dist/tex/latex/universa/ot1uni.fd
+ texmf-dist/tex/latex/universa/t1uni.fd
+ texmf-dist/tex/latex/universa/uni.sty
+ texmf-dist/tex/latex/universa/uuni.fd
+catalogue-version 2.0
+catalogue-date 2007-01-20 15:20:16 +0100
+catalogue-ctan /fonts/universa
+catalogue-license gpl
+
+name upmethodology
+category Package
+revision 4732
+docfiles size=494711
+ texmf-dist/doc/latex/upmethodology/AUTHORS
+ texmf-dist/doc/latex/upmethodology/COPYING
+ texmf-dist/doc/latex/upmethodology/Changelog
+ texmf-dist/doc/latex/upmethodology/INSTALL
+ texmf-dist/doc/latex/upmethodology/NEWS
+ texmf-dist/doc/latex/upmethodology/README
+ texmf-dist/doc/latex/upmethodology/TODO
+ texmf-dist/doc/latex/upmethodology/VERSION
+ texmf-dist/doc/latex/upmethodology/frontclassic.jpg
+ texmf-dist/doc/latex/upmethodology/frontmodern.jpg
+ texmf-dist/doc/latex/upmethodology/illustration.jpg
+ texmf-dist/doc/latex/upmethodology/logo.jpg
+ texmf-dist/doc/latex/upmethodology/smalllogo.jpg
+ texmf-dist/doc/latex/upmethodology/upmethodology-doc.pdf
+ texmf-dist/doc/latex/upmethodology/upmethodology-doc.tex
+srcfiles size=3214
+ texmf-dist/source/latex/upmethodology/Makefile
+runfiles size=81706
+ texmf-dist/tex/latex/upmethodology/upmethodology-code.sty
+ texmf-dist/tex/latex/upmethodology/upmethodology-document.cls
+ texmf-dist/tex/latex/upmethodology/upmethodology-document.sty
+ texmf-dist/tex/latex/upmethodology/upmethodology-fmt.sty
+ texmf-dist/tex/latex/upmethodology/upmethodology-frontpage.sty
+ texmf-dist/tex/latex/upmethodology/upmethodology-spec.sty
+ texmf-dist/tex/latex/upmethodology/upmethodology-task.sty
+ texmf-dist/tex/latex/upmethodology/upmethodology-version.sty
+
+name upquote
+category Package
+revision 1432
+shortdesc Show "realistic" quotes in verbatim.
+longdesc Computer Modern Typewriter is the best font for program
+longdesc listings, but it prints ` and ' as bent opening and closing
+longdesc single quotes. Other fonts, and most programming languages,
+longdesc print ` as a grave accent and ' upright; ' is used both to open
+longdesc and to close quoted strings. This package switches the
+longdesc typewriter font to Computer Modern Typewriter (regardless of
+longdesc other fonts in use, so long as this package is called
+longdesc afterward) and modifies the behavior of verbatim, verbatim*,
+longdesc verb, and verb* to print ` and ' the desired way. The package
+longdesc does not affect \tt, \texttt, etc.
+runfiles size=2699
+ texmf-dist/tex/latex/upquote/upquote.sty
+catalogue-version v1.1
+catalogue-date 2007-01-20 15:20:16 +0100
+catalogue-ctan /macros/latex/contrib/upquote/upquote.sty
+catalogue-license lppl
+
+name urlbst
+category Package
+revision 577
+shortdesc Web support for BibTeX.
+longdesc Supports a new BibTeX 'webpage' entry type and 'url',
+longdesc 'lastchecked', and 'eprint' and 'DOI' fields. The Perl script
+longdesc urlbst can be used to add this support to an arbitrary .bst
+longdesc file which has a reasonably 'conventional' structure. The
+longdesc result is meant to be robust rather than pretty.
+docfiles size=1821
+ texmf-dist/doc/latex/urlbst/README details="Package Readme"
+srcfiles size=10108
+ texmf-dist/source/latex/urlbst/VERSION
+ texmf-dist/source/latex/urlbst/urlbst.pl
+runfiles size=96963
+ texmf-dist/bibtex/bib/urlbst/urlbst.bib
+ texmf-dist/bibtex/bst/urlbst/abbrvurl.bst
+ texmf-dist/bibtex/bst/urlbst/alphaurl.bst
+ texmf-dist/bibtex/bst/urlbst/plainurl.bst
+ texmf-dist/bibtex/bst/urlbst/unsrturl.bst
+catalogue-version 0.6
+catalogue-date 2007-03-27 01:20:54 +0200
+catalogue-ctan /biblio/bibtex/contrib/urlbst
+catalogue-license gpl
+
+name ushort
+category Package
+revision 2343
+shortdesc Shorter (and longer) underlines and underbars.
+longdesc Some engineers need underlined or twice underlined variables
+longdesc for which the usual \underline is too long. This package
+longdesc provides a generic command for creating underlines of various
+longdesc sizes and types.
+docfiles size=222153
+ texmf-dist/doc/latex/ushort/ushort.pdf
+ texmf-dist/doc/latex/ushort/ushort.tex
+ texmf-dist/doc/latex/ushort/ushort.txt
+srcfiles size=33416
+ texmf-dist/source/latex/ushort/ushort.dtx
+ texmf-dist/source/latex/ushort/ushort.ins
+runfiles size=3797
+ texmf-dist/tex/latex/ushort/ushort.sty
+catalogue-version 2.2
+catalogue-date 2006-12-19 00:41:48 +0100
+catalogue-ctan /macros/latex/contrib/ushort
+catalogue-license dfsg
+
+name utf8mex
+category Package
+revision 617
+docfiles size=19053
+ texmf-dist/doc/mex/utf8mex/Makefile
+ texmf-dist/doc/mex/utf8mex/README
+ texmf-dist/doc/mex/utf8mex/examples/Makefile
+ texmf-dist/doc/mex/utf8mex/examples/catcode.tex
+ texmf-dist/doc/mex/utf8mex/examples/list.tex
+ texmf-dist/doc/mex/utf8mex/examples/tilde.tex
+ texmf-dist/doc/mex/utf8mex/examples/tilde2.tex
+ texmf-dist/doc/mex/utf8mex/test-math.utf8.tex
+ texmf-dist/doc/mex/utf8mex/test.utf8.tex
+ texmf-dist/doc/mex/utf8mex/utf8math.el
+runfiles size=7188
+ texmf-dist/tex/mex/utf8mex/utf8-pl.tex
+ texmf-dist/tex/mex/utf8mex/utf8mex.ini
+ texmf-dist/tex/mex/utf8mex/utf8plsq.tex
+
+name utopia
+category Package
+revision 4829
+shortdesc Adobe Utopia fonts.
+longdesc The Adobe Standard Encoding set (upright and italic shapes,
+longdesc medium and bold weights) of the Utopia font family, which Adobe
+longdesc donated to the X Consortium. Macro support, and maths fonts
+longdesc that match the Utopia family, are provided by the Fourier and
+longdesc the Mathdesign Utopia font packages.
+docfiles size=6090
+ texmf-dist/doc/fonts/utopia/LICENSE-utopia.txt
+ texmf-dist/doc/fonts/utopia/README-utopia.txt
+runfiles size=553607
+ texmf-dist/fonts/afm/adobe/utopia/putb8a.afm
+ texmf-dist/fonts/afm/adobe/utopia/putbi8a.afm
+ texmf-dist/fonts/afm/adobe/utopia/putr8a.afm
+ texmf-dist/fonts/afm/adobe/utopia/putri8a.afm
+ texmf-dist/fonts/tfm/adobe/utopia/putb7t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putb8c.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putb8r.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putb8t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbc7t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbc8t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbi7t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbi8c.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbi8r.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbi8t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbo7t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbo8c.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbo8r.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putbo8t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putr7t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putr8c.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putr8r.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putr8t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putrc7t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putrc8t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putri7t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putri8c.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putri8r.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putri8t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putro7t.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putro8c.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putro8r.tfm
+ texmf-dist/fonts/tfm/adobe/utopia/putro8t.tfm
+ texmf-dist/fonts/type1/adobe/utopia/putb8a.pfb
+ texmf-dist/fonts/type1/adobe/utopia/putbi8a.pfb
+ texmf-dist/fonts/type1/adobe/utopia/putr8a.pfb
+ texmf-dist/fonts/type1/adobe/utopia/putri8a.pfb
+ texmf-dist/fonts/vf/adobe/utopia/putb7t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putb8c.vf
+ texmf-dist/fonts/vf/adobe/utopia/putb8t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putbc7t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putbc8t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putbi7t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putbi8c.vf
+ texmf-dist/fonts/vf/adobe/utopia/putbi8t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putbo7t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putbo8c.vf
+ texmf-dist/fonts/vf/adobe/utopia/putbo8t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putr7t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putr8c.vf
+ texmf-dist/fonts/vf/adobe/utopia/putr8t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putrc7t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putrc8t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putri7t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putri8c.vf
+ texmf-dist/fonts/vf/adobe/utopia/putri8t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putro7t.vf
+ texmf-dist/fonts/vf/adobe/utopia/putro8c.vf
+ texmf-dist/fonts/vf/adobe/utopia/putro8t.vf
+catalogue-version
+catalogue-date 2007-10-04 10:35:17 +0200
+catalogue-ctan /fonts/utopia
+catalogue-license other-free
+
+name uwthesis
+category Package
+revision 1487
+shortdesc University of Washington thesis class.
+docfiles size=82806
+ texmf-dist/doc/latex/uwthesis/README details="Readme"
+ texmf-dist/doc/latex/uwthesis/uwthesis.dvi
+ texmf-dist/doc/latex/uwthesis/uwthesis.tex
+runfiles size=26141
+ texmf-dist/bibtex/bib/uwthesis/uwthesis.bib
+ texmf-dist/tex/latex/uwthesis/uwthesis.cls
+catalogue-version 6.12
+catalogue-date 2007-11-07 10:20:18 +0100
+catalogue-ctan /macros/latex/contrib/uwthesis
+catalogue-license other-free
+
+name vancouver
+category Package
+revision 4773
+docfiles size=103264
+ texmf-dist/doc/bibtex/vancouver/README
+ texmf-dist/doc/bibtex/vancouver/vancouver.pdf
+ texmf-dist/doc/bibtex/vancouver/vancouver.tex
+runfiles size=52915
+ texmf-dist/bibtex/bib/vancouver/vancouver.bib
+ texmf-dist/bibtex/bst/vancouver/vancouver.bst
+
+name variations
+category Package
+revision 4398
+shortdesc Typeset tables of variations of functions.
+longdesc The package provides macros for typesetting tables showing
+longdesc variations of functions according to French usage. These macros
+longdesc may be used by both LaTeX and plain TeX users.
+docfiles size=103914
+ texmf-dist/doc/generic/variations/ALIRE details="Package ALIRE" language="fr"
+ texmf-dist/doc/generic/variations/COPYING
+ texmf-dist/doc/generic/variations/README details="Package README" language="en"
+ texmf-dist/doc/generic/variations/docvariations.pdf details="Package documentation" language="fr"
+ texmf-dist/doc/generic/variations/docvariations.tex
+runfiles size=2342
+ texmf-dist/tex/generic/variations/variations.sty
+ texmf-dist/tex/generic/variations/variations.tex
+catalogue-version 0.3
+catalogue-date 2007-03-13 09:06:46 +0100
+catalogue-ctan /macros/generic/variations
+catalogue-license gpl
+
+name varindex
+category Package
+revision 2342
+shortdesc Luxury frontend to the \index command.
+longdesc Provides a convenient front-end for the \index command. For
+longdesc example, with it you can generate multiple index entries in
+longdesc almost any form by a single command. The package is highly
+longdesc customizable, and works with all versions of LaTeX and probably
+longdesc most other TeX formats.
+docfiles size=394013
+ texmf-dist/doc/latex/varindex/varindex.pdf details="Package documentation"
+ texmf-dist/doc/latex/varindex/varindex.tex
+ texmf-dist/doc/latex/varindex/varindex.txt
+srcfiles size=204714
+ texmf-dist/source/latex/varindex/varindex.dtx
+ texmf-dist/source/latex/varindex/varindex.ins
+runfiles size=31858
+ texmf-dist/tex/latex/varindex/varindex.sty
+catalogue-version 1.20
+catalogue-date 2007-01-20 15:42:40 +0100
+catalogue-ctan /macros/latex/contrib/varindex
+catalogue-license dfsg
+
+name vector
+category Package
+revision 2342
+shortdesc LaTeX macros for vectors.
+longdesc Macros for more convenient representation of vectors in LaTeX,
+longdesc both symbolically and as implicit or explicit rows/columns of
+longdesc elements.
+docfiles size=180568
+ texmf-dist/doc/latex/vector/README details="Readme"
+ texmf-dist/doc/latex/vector/vector.pdf details="Package documentation"
+srcfiles size=11954
+ texmf-dist/source/latex/vector/vector.drv
+ texmf-dist/source/latex/vector/vector.dtx
+ texmf-dist/source/latex/vector/vector.ins
+runfiles size=2118
+ texmf-dist/tex/latex/vector/vector.sty
+catalogue-version 1.0
+catalogue-date 2007-01-20 15:42:40 +0100
+catalogue-ctan /macros/latex/contrib/vector
+catalogue-license unknown
+
+name velthuis
+category Package
+revision 1691
+execute addMixedMap dvng.map
+docfiles size=762089
+ texmf-dist/doc/generic/velthuis/README
+ texmf-dist/doc/generic/velthuis/captions.dn
+ texmf-dist/doc/generic/velthuis/changes
+ texmf-dist/doc/generic/velthuis/copying
+ texmf-dist/doc/generic/velthuis/examples.dn
+ texmf-dist/doc/generic/velthuis/examples.pdf
+ texmf-dist/doc/generic/velthuis/manual.pdf
+ texmf-dist/doc/generic/velthuis/manual.tex
+ texmf-dist/doc/generic/velthuis/misspaal.dn
+ texmf-dist/doc/generic/velthuis/misspaal.pdf
+ texmf-dist/doc/generic/velthuis/vedasample.dn
+ texmf-dist/doc/generic/velthuis/vedasample.pdf
+runfiles size=5542552
+ texmf-dist/fonts/afm/public/velthuis/dvnb10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnb8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnb9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnbb10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnbb8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnbb9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnbbi10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnbbi8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnbbi9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnbi10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnbi8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnbi9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnc10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnc8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnc9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvncb10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvncb8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvncb9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvncbi10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvncbi8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvncbi9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnci10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnci8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnci9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvng10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvng8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvng9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvngb10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvngb8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvngb9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvngbi10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvngbi8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvngbi9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvngi10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvngi8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvngi9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnn10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnn8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnn9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnnb10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnnb8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnnb9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnnbi10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnnbi8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnnbi9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnni10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnni8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvnni9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpb10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpb8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpb9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpc10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpc8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpc9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpn10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpn8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpn9.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpnn10.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpnn8.afm
+ texmf-dist/fonts/afm/public/velthuis/dvpnn9.afm
+ texmf-dist/fonts/map/dvips/velthuis/dvng.map
+ texmf-dist/fonts/source/public/velthuis/dnchars.mf
+ texmf-dist/fonts/source/public/velthuis/dndefs.mf
+ texmf-dist/fonts/source/public/velthuis/dngen.mf
+ texmf-dist/fonts/source/public/velthuis/dninit.mf
+ texmf-dist/fonts/source/public/velthuis/dvnb10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnb8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnb9.mf
+ texmf-dist/fonts/source/public/velthuis/dvnbb10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnbb8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnbb9.mf
+ texmf-dist/fonts/source/public/velthuis/dvnbbi10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnbbi8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnbbi9.mf
+ texmf-dist/fonts/source/public/velthuis/dvnbi10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnbi8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnbi9.mf
+ texmf-dist/fonts/source/public/velthuis/dvnc10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnc8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnc9.mf
+ texmf-dist/fonts/source/public/velthuis/dvncb10.mf
+ texmf-dist/fonts/source/public/velthuis/dvncb8.mf
+ texmf-dist/fonts/source/public/velthuis/dvncb9.mf
+ texmf-dist/fonts/source/public/velthuis/dvncbi10.mf
+ texmf-dist/fonts/source/public/velthuis/dvncbi8.mf
+ texmf-dist/fonts/source/public/velthuis/dvncbi9.mf
+ texmf-dist/fonts/source/public/velthuis/dvnci10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnci8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnci9.mf
+ texmf-dist/fonts/source/public/velthuis/dvng10.mf
+ texmf-dist/fonts/source/public/velthuis/dvng8.mf
+ texmf-dist/fonts/source/public/velthuis/dvng9.mf
+ texmf-dist/fonts/source/public/velthuis/dvngb10.mf
+ texmf-dist/fonts/source/public/velthuis/dvngb8.mf
+ texmf-dist/fonts/source/public/velthuis/dvngb9.mf
+ texmf-dist/fonts/source/public/velthuis/dvngbi10.mf
+ texmf-dist/fonts/source/public/velthuis/dvngbi8.mf
+ texmf-dist/fonts/source/public/velthuis/dvngbi9.mf
+ texmf-dist/fonts/source/public/velthuis/dvngi10.mf
+ texmf-dist/fonts/source/public/velthuis/dvngi8.mf
+ texmf-dist/fonts/source/public/velthuis/dvngi9.mf
+ texmf-dist/fonts/source/public/velthuis/dvnn10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnn8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnn9.mf
+ texmf-dist/fonts/source/public/velthuis/dvnnb10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnnb8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnnb9.mf
+ texmf-dist/fonts/source/public/velthuis/dvnnbi10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnnbi8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnnbi9.mf
+ texmf-dist/fonts/source/public/velthuis/dvnni10.mf
+ texmf-dist/fonts/source/public/velthuis/dvnni8.mf
+ texmf-dist/fonts/source/public/velthuis/dvnni9.mf
+ texmf-dist/fonts/source/public/velthuis/dvpb10.mf
+ texmf-dist/fonts/source/public/velthuis/dvpb8.mf
+ texmf-dist/fonts/source/public/velthuis/dvpb9.mf
+ texmf-dist/fonts/source/public/velthuis/dvpc10.mf
+ texmf-dist/fonts/source/public/velthuis/dvpc8.mf
+ texmf-dist/fonts/source/public/velthuis/dvpc9.mf
+ texmf-dist/fonts/source/public/velthuis/dvpn10.mf
+ texmf-dist/fonts/source/public/velthuis/dvpn8.mf
+ texmf-dist/fonts/source/public/velthuis/dvpn9.mf
+ texmf-dist/fonts/source/public/velthuis/dvpnn10.mf
+ texmf-dist/fonts/source/public/velthuis/dvpnn8.mf
+ texmf-dist/fonts/source/public/velthuis/dvpnn9.mf
+ texmf-dist/fonts/tfm/public/velthuis/dvnb10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnb8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnb9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnbb10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnbb8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnbb9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnbbi10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnbbi8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnbbi9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnbi10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnbi8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnbi9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnc10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnc8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnc9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvncb10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvncb8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvncb9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvncbi10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvncbi8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvncbi9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnci10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnci8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnci9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvng10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvng8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvng9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvngb10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvngb8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvngb9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvngbi10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvngbi8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvngbi9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvngi10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvngi8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvngi9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnn10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnn8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnn9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnnb10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnnb8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnnb9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnnbi10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnnbi8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnnbi9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnni10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnni8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvnni9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpb10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpb8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpb9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpc10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpc8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpc9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpn10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpn8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpn9.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpnn10.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpnn8.tfm
+ texmf-dist/fonts/tfm/public/velthuis/dvpnn9.tfm
+ texmf-dist/fonts/type1/public/velthuis/dvnb10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnb8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnb9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnbb10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnbb8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnbb9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnbbi10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnbbi8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnbbi9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnbi10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnbi8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnbi9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnc10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnc8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnc9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvncb10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvncb8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvncb9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvncbi10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvncbi8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvncbi9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnci10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnci8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnci9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvng10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvng8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvng9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvngb10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvngb8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvngb9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvngbi10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvngbi8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvngbi9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvngi10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvngi8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvngi9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnn10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnn8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnn9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnnb10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnnb8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnnb9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnnbi10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnnbi8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnnbi9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnni10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnni8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvnni9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpb10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpb8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpb9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpc10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpc8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpc9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpn10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpn8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpn9.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpnn10.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpnn8.pfb
+ texmf-dist/fonts/type1/public/velthuis/dvpnn9.pfb
+ texmf-dist/tex/latex/velthuis/dev.sty
+ texmf-dist/tex/latex/velthuis/dev209.sty
+ texmf-dist/tex/latex/velthuis/devanagari.sty
+ texmf-dist/tex/latex/velthuis/udn.fd
+ texmf-dist/tex/latex/velthuis/udnb.fd
+ texmf-dist/tex/latex/velthuis/udnc.fd
+ texmf-dist/tex/latex/velthuis/udnn.fd
+ texmf-dist/tex/latex/velthuis/udnp.fd
+ texmf-dist/tex/latex/velthuis/udnpb.fd
+ texmf-dist/tex/latex/velthuis/udnpc.fd
+ texmf-dist/tex/latex/velthuis/udnpn.fd
+ texmf-dist/tex/plain/velthuis/dnmacs.tex
+
+name venn
+category Package
+revision 104
+shortdesc Creating Venn diagrams with MetaPost.
+longdesc MetaPost macros for venn diagrams.
+runfiles size=7658
+ texmf-dist/metapost/venn/venn.mp
+catalogue-version
+catalogue-date $Author: robin $
+catalogue-ctan /graphics/metapost/contrib/macros/venn/venn.mp
+catalogue-license lppl
+
+name verse
+category Package
+revision 3385
+shortdesc Aids for typesetting simple verse.
+longdesc The package documentation discusses approaches to the problem;
+longdesc the package is strong on layout, from simple alternate-line
+longdesc indentation to the Mouse's tale from Alice in Wonderland.
+docfiles size=279650
+ texmf-dist/doc/latex/verse/README details="Readme"
+ texmf-dist/doc/latex/verse/verse.pdf details="Package documentation"
+srcfiles size=58286
+ texmf-dist/source/latex/verse/verse.dtx
+ texmf-dist/source/latex/verse/verse.ins
+runfiles size=9137
+ texmf-dist/tex/latex/verse/verse.sty
+catalogue-version 2.4
+catalogue-date 2007-01-12 00:17:35 +0100
+catalogue-ctan /macros/latex/contrib/verse
+catalogue-license lppl
+
+name versions
+category Package
+revision 2342
+shortdesc Optionally omit pieces of text.
+longdesc Stephan Bellantoni’s version has provided preamble commands
+longdesc for selecting environments to be included/excluded. This
+longdesc package does the same, but corrects, improves, and extends it
+longdesc in both implementation and function.
+runfiles size=15726
+ texmf-dist/tex/latex/versions/versions.sty
+catalogue-version 0.55
+catalogue-date 2007-01-20 20:21:37 +0100
+catalogue-ctan /macros/latex/contrib/versions/versions.sty
+catalogue-license lppl
+
+name vertex
+category Package
+revision 621
+shortdesc Styles for economics working papers and journals.
+docfiles size=11961
+ texmf-dist/doc/plain/vertex/vertex.doc
+srcfiles size=6079
+ texmf-dist/source/plain/vertex/READ.ME
+ texmf-dist/source/plain/vertex/files.lst
+ texmf-dist/source/plain/vertex/users.lst
+ texmf-dist/source/plain/vertex/vertex.hst
+runfiles size=70270
+ texmf-dist/tex/plain/vertex/aer.sty
+ texmf-dist/tex/plain/vertex/ecnmet.sty
+ texmf-dist/tex/plain/vertex/fntest.tex
+ texmf-dist/tex/plain/vertex/jep.sty
+ texmf-dist/tex/plain/vertex/jepcont.tex
+ texmf-dist/tex/plain/vertex/jet.sty
+ texmf-dist/tex/plain/vertex/jpe.sty
+ texmf-dist/tex/plain/vertex/ppt.sty
+ texmf-dist/tex/plain/vertex/qje.sty
+ texmf-dist/tex/plain/vertex/restud.sty
+ texmf-dist/tex/plain/vertex/test.tex
+ texmf-dist/tex/plain/vertex/twocol.tex
+ texmf-dist/tex/plain/vertex/vertest.tex
+ texmf-dist/tex/plain/vertex/vertex.tex
+catalogue-version
+catalogue-date 2007-01-20 20:21:37 +0100
+catalogue-ctan /macros/plain/contrib/vertex
+catalogue-license unknown
+
+name vhistory
+category Package
+revision 5467
+shortdesc Support for creating a change log.
+longdesc Vhistory simplifies the creation of a history of versions of a
+longdesc document. You can easily extract informations like the current
+longdesc version of a list of authors from that history. It helps you to
+longdesc get consistent documents. The package sets, which is used by
+longdesc vhistory, allows you to use sets containing text. You can use
+longdesc the usual operations to create the union of sets or the
+longdesc intersection of sets etc.
+docfiles size=777477
+ texmf-dist/doc/latex/vhistory/CHANGES
+ texmf-dist/doc/latex/vhistory/README details="Readme"
+ texmf-dist/doc/latex/vhistory/README.doc
+ texmf-dist/doc/latex/vhistory/de_beispiel.tex
+ texmf-dist/doc/latex/vhistory/de_einleitung.tex
+ texmf-dist/doc/latex/vhistory/de_sets.tex
+ texmf-dist/doc/latex/vhistory/de_vhistory.tex
+ texmf-dist/doc/latex/vhistory/en_example.tex
+ texmf-dist/doc/latex/vhistory/en_introduction.tex
+ texmf-dist/doc/latex/vhistory/en_sets.tex
+ texmf-dist/doc/latex/vhistory/en_vhistory.tex
+ texmf-dist/doc/latex/vhistory/hyperref.cfg
+ texmf-dist/doc/latex/vhistory/vh_set_example.pdf
+ texmf-dist/doc/latex/vhistory/vh_set_example.tex
+ texmf-dist/doc/latex/vhistory/vh_sets_de.pdf
+ texmf-dist/doc/latex/vhistory/vh_sets_de.tex
+ texmf-dist/doc/latex/vhistory/vh_sets_en.pdf
+ texmf-dist/doc/latex/vhistory/vh_sets_en.tex
+runfiles size=30501
+ texmf-dist/tex/latex/vhistory/sets.sty
+ texmf-dist/tex/latex/vhistory/vhistory.sty
+catalogue-version 1.3
+catalogue-date 2007-07-23 00:38:56 +0200
+catalogue-ctan /macros/latex/contrib/vhistory
+catalogue-license lppl
+
+name visualfaq
+category Documentation
+revision 1864
+docfiles size=2498516
+ texmf-doc/doc/english/visualfaq/README
+ texmf-doc/doc/english/visualfaq/source/README.TXT
+ texmf-doc/doc/english/visualfaq/source/anotherarticle.pdf
+ texmf-doc/doc/english/visualfaq/source/book-montage.png
+ texmf-doc/doc/english/visualfaq/source/fuzzytext.png
+ texmf-doc/doc/english/visualfaq/source/labelgraph.pdf
+ texmf-doc/doc/english/visualfaq/source/lorem-ipsum-logo.png
+ texmf-doc/doc/english/visualfaq/source/musixtex.png
+ texmf-doc/doc/english/visualfaq/source/troubleshoot-vlf.tex
+ texmf-doc/doc/english/visualfaq/source/visfaq-html.png
+ texmf-doc/doc/english/visualfaq/source/visualFAQ.ind
+ texmf-doc/doc/english/visualfaq/source/visualFAQ.ind2
+ texmf-doc/doc/english/visualfaq/source/visualFAQ.tex
+ texmf-doc/doc/english/visualfaq/source/watermark.pdf
+ texmf-doc/doc/english/visualfaq/troubleshoot-vlf.pdf
+ texmf-doc/doc/english/visualfaq/visualFAQ.pdf
+
+name vita
+category Package
+revision 1441
+shortdesc Configurable class for curricula vitarum.
+longdesc The vita class provides necessary macros to prepare your
+longdesc Curriculum Vitae or Resume. The class may be configured, both
+longdesc according to language of presentation, and according to subject
+longdesc matter. Configuration is done by selecting a class option;
+longdesc options for Computer Science and Singing, in both English and
+longdesc Slovenian, are provided as examples. The class is said to be
+longdesc based on vita209.
+docfiles size=1311
+ texmf-dist/doc/latex/vita/READ.ME details="Readme"
+runfiles size=38960
+ texmf-dist/tex/latex/vita/hssvita.cls
+ texmf-dist/tex/latex/vita/vita.cls
+ texmf-dist/tex/latex/vita/vitaComputerScience.clo
+ texmf-dist/tex/latex/vita/vitaRacunalnistvo.clo
+ texmf-dist/tex/latex/vita/vitaSolopetje.clo
+ texmf-dist/tex/latex/vita/vitaVoice.clo
+catalogue-version
+catalogue-date 2007-01-20 20:21:37 +0100
+catalogue-ctan /macros/latex/contrib/vita
+catalogue-license unknown
+
+name vmargin
+category Package
+revision 1442
+shortdesc Set various page dimensions.
+longdesc Provides a macro to set various margins as well as dimensions
+longdesc for header/footer and page dimensions. Most common paper sizes,
+longdesc paper orientation, disabling of headers and footers, and two
+longdesc sided printing are supported. The vmargin package does not rely
+longdesc on other packages and was designed with speed and size in mind.
+longdesc Its user interface might not be very fancy, but it's fast,
+longdesc small, and gets the job done. If you are looking for something
+longdesc more elaborate try the geometry package.
+docfiles size=178396
+ texmf-dist/doc/latex/vmargin/vmargin.pdf details="Package documentation"
+srcfiles size=36188
+ texmf-dist/source/latex/vmargin/Makefile
+ texmf-dist/source/latex/vmargin/vmargin.drv
+ texmf-dist/source/latex/vmargin/vmargin.dtx
+ texmf-dist/source/latex/vmargin/vmargin.ins
+runfiles size=6845
+ texmf-dist/tex/latex/vmargin/vmargin.sty
+catalogue-version 2.5
+catalogue-date 2007-03-28 10:57:28 +0200
+catalogue-ctan /macros/latex/contrib/vmargin
+catalogue-license lppl
+
+name vntex
+category Package
+revision 5291
+shortdesc Support for Vietnamese.
+longdesc The vntex bundle provides fonts, Plain TeX, texinfo and LaTeX
+longdesc macros, and TeX4ht support for typesetting documents in
+longdesc Vietnamese. Users of the fonts (in both MetaFont and Adobe Type
+longdesc 1 format) of this bundle may alternatively use the lm fonts
+longdesc bundle, for which map files are available to provide a
+longdesc Vietnamese version.
+depend plnfss
+execute addMap arevvn.map
+execute addMap chartervn.map
+execute addMap cmbrightvn.map
+execute addMap comicvn.map
+execute addMap concretevn.map
+execute addMap grotesqvn.map
+execute addMap mscorevn.map
+execute addMap txttvn.map
+execute addMap urwvn.map
+execute addMixedMap vnrother.map
+execute addMixedMap vnrtext.map
+execute addMap vntopia.map
+docfiles size=1314376
+ texmf-dist/doc/generic/vntex/GPL.txt
+ texmf-dist/doc/generic/vntex/INSTALL
+ texmf-dist/doc/generic/vntex/LGPL.txt
+ texmf-dist/doc/generic/vntex/LICENSE-utopia.txt
+ texmf-dist/doc/generic/vntex/LPPL.txt
+ texmf-dist/doc/generic/vntex/NEWS
+ texmf-dist/doc/generic/vntex/README details="Package README" language="en"
+ texmf-dist/doc/generic/vntex/README.vntopia
+ texmf-dist/doc/generic/vntex/source/abbr.tex
+ texmf-dist/doc/generic/vntex/source/test-accents.tex
+ texmf-dist/doc/generic/vntex/source/vn-fonts-print.tex
+ texmf-dist/doc/generic/vntex/source/vn-fonts.tex
+ texmf-dist/doc/generic/vntex/source/vn-min-print.tex
+ texmf-dist/doc/generic/vntex/source/vn-min.tex
+ texmf-dist/doc/generic/vntex/source/vntex-man-print.tex
+ texmf-dist/doc/generic/vntex/source/vntex-man.tex
+ texmf-dist/doc/generic/vntex/tests/Makefile
+ texmf-dist/doc/generic/vntex/tests/README details="Package README" language="en"
+ texmf-dist/doc/generic/vntex/tests/arevvn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/arevvn-test.tex
+ texmf-dist/doc/generic/vntex/tests/bonum-sample.tex
+ texmf-dist/doc/generic/vntex/tests/bonum-test.tex
+ texmf-dist/doc/generic/vntex/tests/chartervn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/chartervn-test.tex
+ texmf-dist/doc/generic/vntex/tests/classicovn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/classicovn-test.tex
+ texmf-dist/doc/generic/vntex/tests/cmbrightvn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/cmbrightvn-test.tex
+ texmf-dist/doc/generic/vntex/tests/comicsansvn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/comicsansvn-test.tex
+ texmf-dist/doc/generic/vntex/tests/concretevn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/concretevn-test.tex
+ texmf-dist/doc/generic/vntex/tests/garamondvn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/garamondvn-test.tex
+ texmf-dist/doc/generic/vntex/tests/grotesqvn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/grotesqvn-test.tex
+ texmf-dist/doc/generic/vntex/tests/mscore-sample.tex
+ texmf-dist/doc/generic/vntex/tests/mscore-test.tex
+ texmf-dist/doc/generic/vntex/tests/pagella-sample.tex
+ texmf-dist/doc/generic/vntex/tests/pagella-test.tex
+ texmf-dist/doc/generic/vntex/tests/t5antt-sample.tex
+ texmf-dist/doc/generic/vntex/tests/t5antt-test.tex
+ texmf-dist/doc/generic/vntex/tests/t5gentium-sample.tex
+ texmf-dist/doc/generic/vntex/tests/t5gentium-test.tex
+ texmf-dist/doc/generic/vntex/tests/t5iwona-sample.tex
+ texmf-dist/doc/generic/vntex/tests/t5iwona-test.tex
+ texmf-dist/doc/generic/vntex/tests/t5kurier-sample.tex
+ texmf-dist/doc/generic/vntex/tests/t5kurier-test.tex
+ texmf-dist/doc/generic/vntex/tests/t5lm-sample.tex
+ texmf-dist/doc/generic/vntex/tests/t5lm-test.tex
+ texmf-dist/doc/generic/vntex/tests/termes-sample.tex
+ texmf-dist/doc/generic/vntex/tests/termes-test.tex
+ texmf-dist/doc/generic/vntex/tests/test-accents.tex
+ texmf-dist/doc/generic/vntex/tests/test-babel.tex
+ texmf-dist/doc/generic/vntex/tests/test-captions.tex
+ texmf-dist/doc/generic/vntex/tests/test-plain-tcx.tex
+ texmf-dist/doc/generic/vntex/tests/test-plain.tex
+ texmf-dist/doc/generic/vntex/tests/test-tcvn.tex
+ texmf-dist/doc/generic/vntex/tests/test-utf8.tex
+ texmf-dist/doc/generic/vntex/tests/test-vietnam-tcx.tex
+ texmf-dist/doc/generic/vntex/tests/test-vietnam.tex
+ texmf-dist/doc/generic/vntex/tests/test-viscii.tex
+ texmf-dist/doc/generic/vntex/tests/txttvn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/txttvn-test.tex
+ texmf-dist/doc/generic/vntex/tests/urwvn-sample.tex
+ texmf-dist/doc/generic/vntex/tests/urwvn-test.tex
+ texmf-dist/doc/generic/vntex/tests/vnr-sample.tex
+ texmf-dist/doc/generic/vntex/tests/vnr-test.tex
+ texmf-dist/doc/generic/vntex/tests/vnsample.cls
+ texmf-dist/doc/generic/vntex/tests/vntopia-sample.tex
+ texmf-dist/doc/generic/vntex/tests/vntopia-test.tex
+ texmf-dist/doc/generic/vntex/vn-fonts-print.pdf
+ texmf-dist/doc/generic/vntex/vn-fonts.pdf
+ texmf-dist/doc/generic/vntex/vn-min-print.pdf
+ texmf-dist/doc/generic/vntex/vn-min.pdf details="Minimal steps to typeset Vietnamese" language="en"
+ texmf-dist/doc/generic/vntex/vntex-man-print.pdf
+ texmf-dist/doc/generic/vntex/vntex-man.pdf details="Package manual" language="vi"
+ texmf-dist/doc/generic/vntex/vntex.txt
+runfiles size=9326811
+ texmf-dist/fonts/afm/vntex/chartervn/bchb8v.afm
+ texmf-dist/fonts/afm/vntex/chartervn/bchbi8v.afm
+ texmf-dist/fonts/afm/vntex/chartervn/bchr8v.afm
+ texmf-dist/fonts/afm/vntex/chartervn/bchri8v.afm
+ texmf-dist/fonts/afm/vntex/grotesqvn/ugqb8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/fplrc8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uagd8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uagdo8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uagk8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uagko8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/ubkd8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/ubkdi8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/ubkl8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/ubkli8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/ucrb8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/ucrbo8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/ucrr8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/ucrro8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uhvb8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uhvbo8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uhvr8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uhvro8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uncb8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uncbi8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uncr8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uncri8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uplb8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uplbi8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uplr8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uplri8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/utmb8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/utmbi8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/utmr8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/utmri8v.afm
+ texmf-dist/fonts/afm/vntex/urwvn/uzcmi8v.afm
+ texmf-dist/fonts/afm/vntex/vntopia/putb8v.afm
+ texmf-dist/fonts/afm/vntex/vntopia/putbi8v.afm
+ texmf-dist/fonts/afm/vntex/vntopia/putr8v.afm
+ texmf-dist/fonts/afm/vntex/vntopia/putri8v.afm
+ texmf-dist/fonts/enc/dvips/vntex/8b.enc
+ texmf-dist/fonts/enc/dvips/vntex/t5.enc
+ texmf-dist/fonts/enc/pdftex/vntex/t5d.enc
+ texmf-dist/fonts/enc/pdftex/vntex/t5uni.enc
+ texmf-dist/fonts/map/dvips/vntex/arevvn.map
+ texmf-dist/fonts/map/dvips/vntex/chartervn.map
+ texmf-dist/fonts/map/dvips/vntex/cmbrightvn.map
+ texmf-dist/fonts/map/dvips/vntex/comicvn.map
+ texmf-dist/fonts/map/dvips/vntex/concretevn.map
+ texmf-dist/fonts/map/dvips/vntex/grotesqvn.map
+ texmf-dist/fonts/map/dvips/vntex/txttvn.map
+ texmf-dist/fonts/map/dvips/vntex/urwvn.map
+ texmf-dist/fonts/map/dvips/vntex/vnrother.map
+ texmf-dist/fonts/map/dvips/vntex/vnrtext.map
+ texmf-dist/fonts/map/dvips/vntex/vntopia.map
+ texmf-dist/fonts/map/pdftex/vntex/mscorevn.map
+ texmf-dist/fonts/source/vntex/vnr/vnaccent.mf
+ texmf-dist/fonts/source/vntex/vnr/vnacomp.mf
+ texmf-dist/fonts/source/vntex/vnr/vnb10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbase.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbx10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbx12.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbx5.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbx6.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbx7.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbx8.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbx9.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbxsl10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnbxti10.mf
+ texmf-dist/fonts/source/vntex/vnr/vncligtb.mf
+ texmf-dist/fonts/source/vntex/vnr/vncode.mf
+ texmf-dist/fonts/source/vntex/vnr/vncombac.mf
+ texmf-dist/fonts/source/vntex/vnr/vncsc.mf
+ texmf-dist/fonts/source/vntex/vnr/vncsc10.mf
+ texmf-dist/fonts/source/vntex/vnr/vndothook.mf
+ texmf-dist/fonts/source/vntex/vnr/vndunh10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnecomp.mf
+ texmf-dist/fonts/source/vntex/vnr/vnff10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnfi10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnfib8.mf
+ texmf-dist/fonts/source/vntex/vnr/vnicomp.mf
+ texmf-dist/fonts/source/vntex/vnr/vniligtb.mf
+ texmf-dist/fonts/source/vntex/vnr/vnitt10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlacc.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlai.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlar.mf
+ texmf-dist/fonts/source/vntex/vnr/vnldi.mf
+ texmf-dist/fonts/source/vntex/vnr/vnldr.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlei.mf
+ texmf-dist/fonts/source/vntex/vnr/vnler.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlii.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlir.mf
+ texmf-dist/fonts/source/vntex/vnr/vnloi.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlor.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlui.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlur.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlyi.mf
+ texmf-dist/fonts/source/vntex/vnr/vnlyr.mf
+ texmf-dist/fonts/source/vntex/vnr/vnminus.mf
+ texmf-dist/fonts/source/vntex/vnr/vnmligtb.mf
+ texmf-dist/fonts/source/vntex/vnr/vnocomp.mf
+ texmf-dist/fonts/source/vntex/vnr/vnr10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnr12.mf
+ texmf-dist/fonts/source/vntex/vnr/vnr17.mf
+ texmf-dist/fonts/source/vntex/vnr/vnr5.mf
+ texmf-dist/fonts/source/vntex/vnr/vnr6.mf
+ texmf-dist/fonts/source/vntex/vnr/vnr7.mf
+ texmf-dist/fonts/source/vntex/vnr/vnr8.mf
+ texmf-dist/fonts/source/vntex/vnr/vnr9.mf
+ texmf-dist/fonts/source/vntex/vnr/vnrligtb.mf
+ texmf-dist/fonts/source/vntex/vnr/vnrm.mf
+ texmf-dist/fonts/source/vntex/vnr/vnroman.mf
+ texmf-dist/fonts/source/vntex/vnr/vnsl10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnsl12.mf
+ texmf-dist/fonts/source/vntex/vnr/vnsl8.mf
+ texmf-dist/fonts/source/vntex/vnr/vnsl9.mf
+ texmf-dist/fonts/source/vntex/vnr/vnsltt10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnss10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnss12.mf
+ texmf-dist/fonts/source/vntex/vnr/vnss17.mf
+ texmf-dist/fonts/source/vntex/vnr/vnss8.mf
+ texmf-dist/fonts/source/vntex/vnr/vnss9.mf
+ texmf-dist/fonts/source/vntex/vnr/vnssbx10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnssdc10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnssi10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnssi12.mf
+ texmf-dist/fonts/source/vntex/vnr/vnssi17.mf
+ texmf-dist/fonts/source/vntex/vnr/vnssi8.mf
+ texmf-dist/fonts/source/vntex/vnr/vnssi9.mf
+ texmf-dist/fonts/source/vntex/vnr/vnssq8.mf
+ texmf-dist/fonts/source/vntex/vnr/vnssqi8.mf
+ texmf-dist/fonts/source/vntex/vnr/vntcsc10.mf
+ texmf-dist/fonts/source/vntex/vnr/vntextit.mf
+ texmf-dist/fonts/source/vntex/vnr/vnti10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnti12.mf
+ texmf-dist/fonts/source/vntex/vnr/vnti7.mf
+ texmf-dist/fonts/source/vntex/vnr/vnti8.mf
+ texmf-dist/fonts/source/vntex/vnr/vnti9.mf
+ texmf-dist/fonts/source/vntex/vnr/vntt10.mf
+ texmf-dist/fonts/source/vntex/vnr/vntt12.mf
+ texmf-dist/fonts/source/vntex/vnr/vntt8.mf
+ texmf-dist/fonts/source/vntex/vnr/vntt9.mf
+ texmf-dist/fonts/source/vntex/vnr/vnu10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnuacc.mf
+ texmf-dist/fonts/source/vntex/vnr/vnuar.mf
+ texmf-dist/fonts/source/vntex/vnr/vnucomp.mf
+ texmf-dist/fonts/source/vntex/vnr/vnudr.mf
+ texmf-dist/fonts/source/vntex/vnr/vnuer.mf
+ texmf-dist/fonts/source/vntex/vnr/vnuir.mf
+ texmf-dist/fonts/source/vntex/vnr/vnuor.mf
+ texmf-dist/fonts/source/vntex/vnr/vnuur.mf
+ texmf-dist/fonts/source/vntex/vnr/vnuyr.mf
+ texmf-dist/fonts/source/vntex/vnr/vnvtt10.mf
+ texmf-dist/fonts/source/vntex/vnr/vnycomp.mf
+ texmf-dist/fonts/tfm/vntex/arevvn/favb8v.tfm
+ texmf-dist/fonts/tfm/vntex/arevvn/favbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/arevvn/favr8v.tfm
+ texmf-dist/fonts/tfm/vntex/arevvn/favri8v.tfm
+ texmf-dist/fonts/tfm/vntex/chartervn/bchb8v.tfm
+ texmf-dist/fonts/tfm/vntex/chartervn/bchbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/chartervn/bchbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/chartervn/bchbo8v.tfm
+ texmf-dist/fonts/tfm/vntex/chartervn/bchr8v.tfm
+ texmf-dist/fonts/tfm/vntex/chartervn/bchrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/chartervn/bchri8v.tfm
+ texmf-dist/fonts/tfm/vntex/chartervn/bchro8v.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmbr10.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmbr17.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmbr8.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmbr9.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmbrbx10.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmbrsl10.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmbrsl17.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmbrsl8.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmbrsl9.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmsltl10.tfm
+ texmf-dist/fonts/tfm/vntex/cmbrightvn/vncmtl10.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/ComicSansMS8b.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/ComicSansMSBold8b.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/ComicSansMSBoldItalic8b.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/ComicSansMSItalic8b.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/comic8b.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/comic8v.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/comicbd8b.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/comicbd8v.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/comicbdo8b.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/comicbdo8v.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/comico8b.tfm
+ texmf-dist/fonts/tfm/vntex/comicsansvn/comico8v.tfm
+ texmf-dist/fonts/tfm/vntex/concretevn/vncccsc10.tfm
+ texmf-dist/fonts/tfm/vntex/concretevn/vnccr10.tfm
+ texmf-dist/fonts/tfm/vntex/concretevn/vnccsl10.tfm
+ texmf-dist/fonts/tfm/vntex/concretevn/vnccti10.tfm
+ texmf-dist/fonts/tfm/vntex/grotesqvn/ugqb8v.tfm
+ texmf-dist/fonts/tfm/vntex/grotesqvn/ugqbo8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jthb8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jthbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jthr8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jthrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jvnb8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jvnbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jvnbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jvnr8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jvnrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/jvnri8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/lprb8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/lprbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/lprbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/lprr8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/lprrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/lprri8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/ma1b8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/ma1bc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/ma1bi8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/ma1r8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/ma1rc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/ma1ri8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mcrb8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mcrbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mcrbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mcrr8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mcrrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mcrri8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mnsb8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mnsbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mnsbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mnsr8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mnsrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/mscorevn/mnsri8v.tfm
+ texmf-dist/fonts/tfm/vntex/txttvn/txbtt8v.tfm
+ texmf-dist/fonts/tfm/vntex/txttvn/txbttsc8v.tfm
+ texmf-dist/fonts/tfm/vntex/txttvn/txbttsl8v.tfm
+ texmf-dist/fonts/tfm/vntex/txttvn/txtt8v.tfm
+ texmf-dist/fonts/tfm/vntex/txttvn/txttsc8v.tfm
+ texmf-dist/fonts/tfm/vntex/txttvn/txttsl8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/fplrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uagd8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uagdc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uagdo8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uagk8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uagkc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uagko8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ubkd8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ubkdc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ubkdi8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ubkdo8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ubkl8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ubklc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ubkli8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ubklo8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ucrb8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ucrbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ucrbo8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ucrr8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ucrrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/ucrro8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uhvb8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uhvbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uhvbo8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uhvr8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uhvrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uhvro8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uncb8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uncbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uncbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uncbo8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uncr8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uncrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uncri8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uncro8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uplb8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uplbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uplbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uplbo8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uplr8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uplrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uplri8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uplro8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/utmb8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/utmbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/utmbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/utmbo8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/utmr8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/utmrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/utmri8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/utmro8v.tfm
+ texmf-dist/fonts/tfm/vntex/urwvn/uzcmi8v.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnb10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnbx10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnbx12.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnbx5.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnbx6.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnbx7.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnbx8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnbx9.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnbxsl10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnbxti10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vncsc10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vndunh10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnff10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnfi10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnfib8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnitt10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnr10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnr12.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnr17.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnr5.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnr6.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnr7.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnr8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnr9.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnsl10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnsl12.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnsl8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnsl9.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnsltt10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnss10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnss12.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnss17.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnss8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnss9.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnssbx10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnssdc10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnssi10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnssi12.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnssi17.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnssi8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnssi9.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnssq8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnssqi8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vntcsc10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnti10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnti12.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnti7.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnti8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnti9.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vntt10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vntt12.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vntt8.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vntt9.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnu10.tfm
+ texmf-dist/fonts/tfm/vntex/vnr/vnvtt10.tfm
+ texmf-dist/fonts/tfm/vntex/vntopia/putb8v.tfm
+ texmf-dist/fonts/tfm/vntex/vntopia/putbc8v.tfm
+ texmf-dist/fonts/tfm/vntex/vntopia/putbi8v.tfm
+ texmf-dist/fonts/tfm/vntex/vntopia/putbo8v.tfm
+ texmf-dist/fonts/tfm/vntex/vntopia/putr8v.tfm
+ texmf-dist/fonts/tfm/vntex/vntopia/putrc8v.tfm
+ texmf-dist/fonts/tfm/vntex/vntopia/putri8v.tfm
+ texmf-dist/fonts/tfm/vntex/vntopia/putro8v.tfm
+ texmf-dist/fonts/type1/vntex/arevvn/ArevSans-Bold-T5.pfb
+ texmf-dist/fonts/type1/vntex/arevvn/ArevSans-BoldOblique-T5.pfb
+ texmf-dist/fonts/type1/vntex/arevvn/ArevSans-Oblique-T5.pfb
+ texmf-dist/fonts/type1/vntex/arevvn/ArevSans-Roman-T5.pfb
+ texmf-dist/fonts/type1/vntex/chartervn/bchb8v.pfb
+ texmf-dist/fonts/type1/vntex/chartervn/bchbi8v.pfb
+ texmf-dist/fonts/type1/vntex/chartervn/bchr8v.pfb
+ texmf-dist/fonts/type1/vntex/chartervn/bchri8v.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmbr10.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmbr17.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmbr8.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmbr9.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmbrbx10.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmbrsl10.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmbrsl17.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmbrsl8.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmbrsl9.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmsltl10.pfb
+ texmf-dist/fonts/type1/vntex/cmbrightvn/vncmtl10.pfb
+ texmf-dist/fonts/type1/vntex/comicsansvn/ComicSansMS8b.pfb
+ texmf-dist/fonts/type1/vntex/comicsansvn/ComicSansMSBold8b.pfb
+ texmf-dist/fonts/type1/vntex/comicsansvn/ComicSansMSBoldItalic8b.pfb
+ texmf-dist/fonts/type1/vntex/comicsansvn/ComicSansMSItalic8b.pfb
+ texmf-dist/fonts/type1/vntex/concretevn/CMConcrete8v.pfb
+ texmf-dist/fonts/type1/vntex/concretevn/CMConcreteItalic8v.pfb
+ texmf-dist/fonts/type1/vntex/concretevn/CMConcreteSlanted8v.pfb
+ texmf-dist/fonts/type1/vntex/concretevn/CMConcreteSmallCaps8v.pfb
+ texmf-dist/fonts/type1/vntex/grotesqvn/ugqb8v.pfb
+ texmf-dist/fonts/type1/vntex/txttvn/txbtt8v.pfb
+ texmf-dist/fonts/type1/vntex/txttvn/txbttsc8v.pfb
+ texmf-dist/fonts/type1/vntex/txttvn/txtt8v.pfb
+ texmf-dist/fonts/type1/vntex/txttvn/txttsc8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/fplrc8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uagd8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uagdo8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uagk8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uagko8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/ubkd8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/ubkdi8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/ubkl8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/ubkli8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/ucrb8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/ucrbo8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/ucrr8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/ucrro8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uhvb8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uhvbo8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uhvr8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uhvro8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uncb8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uncbi8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uncr8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uncri8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uplb8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uplbi8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uplr8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uplri8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/utmb8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/utmbi8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/utmr8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/utmri8v.pfb
+ texmf-dist/fonts/type1/vntex/urwvn/uzcmi8v.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnb10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnbx10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnbx12.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnbx5.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnbx6.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnbx7.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnbx8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnbx9.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnbxsl10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnbxti10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vncsc10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vndunh10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnff10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnfi10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnfib8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnitt10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnr10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnr12.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnr17.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnr5.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnr6.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnr7.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnr8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnr9.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnsl10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnsl12.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnsl8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnsl9.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnsltt10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnss10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnss12.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnss17.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnss8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnss9.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnssbx10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnssdc10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnssi10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnssi12.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnssi17.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnssi8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnssi9.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnssq8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnssqi8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vntcsc10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnti10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnti12.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnti7.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnti8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnti9.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vntt10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vntt12.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vntt8.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vntt9.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnu10.pfb
+ texmf-dist/fonts/type1/vntex/vnr/vnvtt10.pfb
+ texmf-dist/fonts/type1/vntex/vntopia/putb8v.pfb
+ texmf-dist/fonts/type1/vntex/vntopia/putbi8v.pfb
+ texmf-dist/fonts/type1/vntex/vntopia/putr8v.pfb
+ texmf-dist/fonts/type1/vntex/vntopia/putri8v.pfb
+ texmf-dist/fonts/vf/vntex/chartervn/bchbc8v.vf
+ texmf-dist/fonts/vf/vntex/chartervn/bchrc8v.vf
+ texmf-dist/fonts/vf/vntex/comicsansvn/comic8v.vf
+ texmf-dist/fonts/vf/vntex/comicsansvn/comicbd8v.vf
+ texmf-dist/fonts/vf/vntex/comicsansvn/comicbdo8v.vf
+ texmf-dist/fonts/vf/vntex/comicsansvn/comico8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/jthbc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/jthrc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/jvnbc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/jvnrc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/lprbc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/lprrc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/ma1bc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/ma1rc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/mcrbc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/mcrrc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/mnsbc8v.vf
+ texmf-dist/fonts/vf/vntex/mscorevn/mnsrc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/uagdc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/uagkc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/ubkdc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/ubklc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/ucrbc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/ucrrc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/uhvbc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/uhvrc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/uncbc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/uncrc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/uplbc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/uplrc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/utmbc8v.vf
+ texmf-dist/fonts/vf/vntex/urwvn/utmrc8v.vf
+ texmf-dist/fonts/vf/vntex/vntopia/putbc8v.vf
+ texmf-dist/fonts/vf/vntex/vntopia/putrc8v.vf
+ texmf-dist/tex/latex/vntex/dblaccnt.sty
+ texmf-dist/tex/latex/vntex/mcviscii.def
+ texmf-dist/tex/latex/vntex/pd1supp.def
+ texmf-dist/tex/latex/vntex/t5bch.fd
+ texmf-dist/tex/latex/vntex/t5ccr.fd
+ texmf-dist/tex/latex/vntex/t5cmbr.fd
+ texmf-dist/tex/latex/vntex/t5cmdh.fd
+ texmf-dist/tex/latex/vntex/t5cmfib.fd
+ texmf-dist/tex/latex/vntex/t5cmfr.fd
+ texmf-dist/tex/latex/vntex/t5cmr.fd
+ texmf-dist/tex/latex/vntex/t5cmss.fd
+ texmf-dist/tex/latex/vntex/t5cmssq.fd
+ texmf-dist/tex/latex/vntex/t5cmtl.fd
+ texmf-dist/tex/latex/vntex/t5cmtt.fd
+ texmf-dist/tex/latex/vntex/t5cmvtt.fd
+ texmf-dist/tex/latex/vntex/t5comic.fd
+ texmf-dist/tex/latex/vntex/t5enc.def
+ texmf-dist/tex/latex/vntex/t5enc.dfu
+ texmf-dist/tex/latex/vntex/t5fav.fd
+ texmf-dist/tex/latex/vntex/t5fnc.fd
+ texmf-dist/tex/latex/vntex/t5fpl.fd
+ texmf-dist/tex/latex/vntex/t5futs.fd
+ texmf-dist/tex/latex/vntex/t5jth.fd
+ texmf-dist/tex/latex/vntex/t5jvn.fd
+ texmf-dist/tex/latex/vntex/t5lpr.fd
+ texmf-dist/tex/latex/vntex/t5ma1.fd
+ texmf-dist/tex/latex/vntex/t5mak.fd
+ texmf-dist/tex/latex/vntex/t5mcr.fd
+ texmf-dist/tex/latex/vntex/t5mdbch.fd
+ texmf-dist/tex/latex/vntex/t5mdput.fd
+ texmf-dist/tex/latex/vntex/t5mdugm.fd
+ texmf-dist/tex/latex/vntex/t5mns.fd
+ texmf-dist/tex/latex/vntex/t5pag.fd
+ texmf-dist/tex/latex/vntex/t5pbk.fd
+ texmf-dist/tex/latex/vntex/t5pcr.fd
+ texmf-dist/tex/latex/vntex/t5phv.fd
+ texmf-dist/tex/latex/vntex/t5pnc.fd
+ texmf-dist/tex/latex/vntex/t5ppl.fd
+ texmf-dist/tex/latex/vntex/t5ptm.fd
+ texmf-dist/tex/latex/vntex/t5ptmom.fd
+ texmf-dist/tex/latex/vntex/t5put.fd
+ texmf-dist/tex/latex/vntex/t5pxr.fd
+ texmf-dist/tex/latex/vntex/t5txr.fd
+ texmf-dist/tex/latex/vntex/t5txtt.fd
+ texmf-dist/tex/latex/vntex/t5uag.fd
+ texmf-dist/tex/latex/vntex/t5ubk.fd
+ texmf-dist/tex/latex/vntex/t5ucr.fd
+ texmf-dist/tex/latex/vntex/t5ugq.fd
+ texmf-dist/tex/latex/vntex/t5uhv.fd
+ texmf-dist/tex/latex/vntex/t5unc.fd
+ texmf-dist/tex/latex/vntex/t5upl.fd
+ texmf-dist/tex/latex/vntex/t5utm.fd
+ texmf-dist/tex/latex/vntex/t5uzcm.fd
+ texmf-dist/tex/latex/vntex/tcvn.def
+ texmf-dist/tex/latex/vntex/varioref-vi.sty
+ texmf-dist/tex/latex/vntex/vietnam.ldf
+ texmf-dist/tex/latex/vntex/vietnam.sty
+ texmf-dist/tex/latex/vntex/viscii.def
+ texmf-dist/tex/latex/vntex/vncaps.tex
+ texmf-dist/tex/latex/vntex/vps.def
+ texmf-dist/tex/plain/vntex/dblaccnt.tex
+ texmf-dist/tex/plain/vntex/t5code.tex
+ texmf-dist/tex/plain/vntex/vntexinfo.tex
+catalogue-version 3.1.2
+catalogue-date 2007-10-05 16:31:28 +0200
+catalogue-ctan /language/vietnamese/vntex
+catalogue-license lppl
+
+name volumes
+category Package
+revision 1444
+shortdesc Typeset only parts of a document, with complete indexes etc.
+longdesc This package helps you if you want to produce separate printed
+longdesc volumes from one LaTeX document, as well as one comprehensive,
+longdesc "all-inclusive" version. It suppresses the part of the table of
+longdesc contents that are not typeset, while counters, definitions,
+longdesc index entries etc. are kept consistent throughout the input
+longdesc file.
+docfiles size=168673
+ texmf-dist/doc/latex/volumes/README
+ texmf-dist/doc/latex/volumes/volumes.pdf
+srcfiles size=33278
+ texmf-dist/source/latex/volumes/volumes.dtx
+ texmf-dist/source/latex/volumes/volumes.ins
+runfiles size=7681
+ texmf-dist/tex/latex/volumes/nowtoaux.sty
+ texmf-dist/tex/latex/volumes/volumes.sty
+catalogue-version 1.0
+catalogue-date 2007-03-01 21:27:41 +0100
+catalogue-ctan /macros/latex/contrib/volumes
+catalogue-license lppl
+
+name voss-de
+category Documentation
+revision 16
+docfiles size=881710
+ texmf-doc/doc/german/voss-de/InlineMath/Changes
+ texmf-doc/doc/german/voss-de/InlineMath/InlineMath.bib
+ texmf-doc/doc/german/voss-de/InlineMath/InlineMath.ltx
+ texmf-doc/doc/german/voss-de/InlineMath/InlineMath.pdf
+ texmf-doc/doc/german/voss-de/InlineMath/InlineMath.tex
+ texmf-doc/doc/german/voss-de/InlineMath/README
+ texmf-doc/doc/german/voss-de/README
+ texmf-doc/doc/german/voss-de/gauss/Changes
+ texmf-doc/doc/german/voss-de/gauss/README
+ texmf-doc/doc/german/voss-de/gauss/gauss.ltx
+ texmf-doc/doc/german/voss-de/gauss/gauss.pdf
+ texmf-doc/doc/german/voss-de/gauss/gauss.tex
+ texmf-doc/doc/german/voss-de/mathCol/Changes
+ texmf-doc/doc/german/voss-de/mathCol/README
+ texmf-doc/doc/german/voss-de/mathCol/mathCol.bib
+ texmf-doc/doc/german/voss-de/mathCol/mathCol.ltx
+ texmf-doc/doc/german/voss-de/mathCol/mathCol.pdf
+ texmf-doc/doc/german/voss-de/mathCol/mathCol.tex
+
+name vpe
+category Package
+revision 1952
+shortdesc Source specials for PDF output.
+longdesc VPE is a system to make the equivalent of “source special”
+longdesc marks in a PDF file. Clicking on a mark will activate an
+longdesc editor, pointing at the source line that produced the text that
+longdesc was marked. The system comprises a perl file (vpe.pl) and a
+longdesc LaTeX package (vpe.sty); it will work with PDF files generated
+longdesc via LaTeX/dvips, pdfTeX (version 0.14 or better), and
+longdesc LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the
+longdesc (pdf)TeX processor shoud be run with shell escapes enabled.
+depend bin-vpe
+docfiles size=16609
+ texmf-dist/doc/latex/vpe/vpe.txt
+runfiles size=18949
+ texmf-dist/tex/latex/vpe/vpe.sty
+catalogue-version 0.1
+catalogue-date 2007-03-13 09:06:46 +0100
+catalogue-ctan /macros/latex/contrib/vpe
+catalogue-license lppl
+
+name vrb
+category Package
+revision 613
+shortdesc Verbatim macros in plain TeX.
+longdesc A self-contained set of verbatim macros, providing both block
+longdesc (\verbatim ... \endverbatim) and in-line (|...|) verbatim
+longdesc constructs. Can also support line-numbering of verbatim blocks
+longdesc and verbatim file inclusion.
+docfiles size=1183
+ texmf-dist/doc/generic/vrb/readme details="Readme"
+runfiles size=4184
+ texmf-dist/tex/generic/vrb/vrb.tex
+catalogue-version
+catalogue-date 2007-01-20 20:21:37 +0100
+catalogue-ctan /macros/generic/vrb
+catalogue-license unknown
+
+name vrsion
+category Package
+revision 1487
+shortdesc Add version number to a DVI file.
+longdesc Defines a command which produces a version number in the dvi-
+longdesc file when LaTeX is run.
+docfiles size=31928
+ texmf-dist/doc/latex/vrsion/vrsion.dvi
+srcfiles size=28499
+ texmf-dist/source/latex/vrsion/00readme.vrs
+ texmf-dist/source/latex/vrsion/vrsion.dtx
+ texmf-dist/source/latex/vrsion/vrsion.ins
+runfiles size=9963
+ texmf-dist/tex/latex/vrsion/vrsion.sty
+catalogue-version
+catalogue-date 2007-01-20 20:21:37 +0100
+catalogue-ctan /macros/latex/contrib/vrsion
+catalogue-license lppl
+
+name vtex
+category Package
+revision 2004
+runfiles size=21681
+ texmf-dist/fonts/map/vtex/bera/bera.ali
+ texmf-dist/fonts/map/vtex/dictsym/dictsym.ali
+ texmf-dist/fonts/map/vtex/skaknew/SkakNew.ali
+ texmf-dist/tex/latex/vtex/vtex.def
+ texmf-dist/vtex/config/lucidabr-k.ali
+ texmf-dist/vtex/config/lucidabr.ali
+ texmf-dist/vtex/config/lumath-k.ali
+ texmf-dist/vtex/config/lumath.ali
+ texmf-dist/vtex/config/uaq.ali
+ texmf-dist/vtex/config/ugq.ali
+
+name wadalab
+category Package
+revision 98
+shortdesc Wadalab (Japanese) font packages.
+longdesc These are font bundles for the Japanese Wadalab fonts which
+longdesc work with the CJK package. All subfonts now have glyph names
+longdesc compliant to the Adobe Glyph List, making ToUnicode CMaps in
+longdesc PDF documents (created automatically by dvipdfmx) work
+longdesc correctly. All font bundles now contain virtual Unicode
+longdesc subfonts.
+execute addMap wadalab.map
+docfiles size=2551
+ texmf-dist/doc/fonts/wadalab/dmj/README
+ texmf-dist/doc/fonts/wadalab/mc2j/README
+runfiles size=7464713
+ texmf-dist/dvips/wadalab/config.wadalab
+ texmf-dist/fonts/afm/wadalab/dmj/dmjgreek.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjhira.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjka.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkata.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkb.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkc.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkd.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjke.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkeisen.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkf.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkg.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkh.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjki.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkj.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkk.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkl.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkm.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkn.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjko.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkp.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkq.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkr.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjks.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkt.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjku.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkv.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkw.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkx.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjky.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjkz.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjroma.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjrussian.afm
+ texmf-dist/fonts/afm/wadalab/dmj/dmjsy.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jka.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkb.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkc.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkd.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jke.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkf.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkg.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkh.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jki.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkj.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkk.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkl.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkm.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkn.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jko.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkp.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkq.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkr.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jks.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkt.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jku.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkv.afm
+ texmf-dist/fonts/afm/wadalab/mc2j/mc2jkw.afm
+ texmf-dist/fonts/map/dvips/wadalab/wadalab.map
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjgreek.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjhira.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjka.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkata.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkb.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkc.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkd.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjke.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkeisen.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkf.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkg.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkh.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjki.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkj.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkk.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkl.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkm.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkn.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjko.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkp.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkq.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkr.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjks.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkt.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjku.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkv.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkw.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkx.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjky.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjkz.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjroma.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjrussian.tfm
+ texmf-dist/fonts/tfm/wadalab/dmj/dmjsy.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jka.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkb.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkc.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkd.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jke.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkf.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkg.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkh.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jki.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkj.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkk.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkl.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkm.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkn.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jko.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkp.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkq.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkr.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jks.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkt.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jku.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkv.tfm
+ texmf-dist/fonts/tfm/wadalab/mc2j/mc2jkw.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj00.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj03.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj04.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj20.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj21.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj22.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj23.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj25.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj26.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj30.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj4e.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj4f.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj50.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj51.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj52.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj53.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj54.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj55.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj56.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj57.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj58.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj59.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj5a.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj5b.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj5c.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj5d.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj5e.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj5f.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj60.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj61.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj62.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj63.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj64.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj65.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj66.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj67.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj68.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj69.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj6a.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj6b.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj6c.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj6d.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj6e.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj6f.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj70.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj71.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj72.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj73.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj74.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj75.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj76.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj77.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj78.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj79.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj7a.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj7b.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj7c.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj7d.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj7e.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj7f.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj80.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj81.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj82.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj83.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj84.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj85.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj86.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj87.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj88.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj89.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj8a.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj8b.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj8c.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj8d.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj8e.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj8f.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj90.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj91.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj92.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj93.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj94.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj95.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj96.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj97.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj98.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj99.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj9a.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj9b.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj9c.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj9d.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj9e.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmj9f.tfm
+ texmf-dist/fonts/tfm/wadalab/udmj/udmjff.tfm
+ texmf-dist/fonts/type1/wadalab/dmj/dmjgreek.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjhira.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjka.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkata.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkb.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkc.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkd.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjke.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkeisen.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkf.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkg.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkh.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjki.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkj.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkk.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkl.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkm.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkn.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjko.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkp.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkq.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkr.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjks.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkt.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjku.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkv.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkw.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkx.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjky.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjkz.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjroma.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjrussian.pfb
+ texmf-dist/fonts/type1/wadalab/dmj/dmjsy.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jka.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkb.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkc.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkd.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jke.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkf.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkg.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkh.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jki.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkj.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkk.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkl.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkm.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkn.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jko.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkp.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkq.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkr.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jks.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkt.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jku.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkv.pfb
+ texmf-dist/fonts/type1/wadalab/mc2j/mc2jkw.pfb
+ texmf-dist/fonts/vf/wadalab/udmj/udmj00.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj03.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj04.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj20.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj21.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj22.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj23.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj25.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj26.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj30.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj4e.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj4f.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj50.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj51.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj52.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj53.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj54.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj55.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj56.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj57.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj58.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj59.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj5a.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj5b.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj5c.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj5d.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj5e.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj5f.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj60.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj61.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj62.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj63.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj64.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj65.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj66.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj67.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj68.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj69.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj6a.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj6b.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj6c.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj6d.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj6e.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj6f.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj70.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj71.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj72.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj73.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj74.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj75.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj76.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj77.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj78.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj79.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj7a.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj7b.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj7c.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj7d.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj7e.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj7f.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj80.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj81.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj82.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj83.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj84.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj85.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj86.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj87.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj88.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj89.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj8a.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj8b.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj8c.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj8d.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj8e.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj8f.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj90.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj91.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj92.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj93.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj94.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj95.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj96.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj97.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj98.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj99.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj9a.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj9b.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj9c.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj9d.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj9e.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmj9f.vf
+ texmf-dist/fonts/vf/wadalab/udmj/udmjff.vf
+catalogue-version
+catalogue-date 2007-11-04 17:42:02 +0100
+catalogue-ctan /fonts/wadalab
+catalogue-license unknown
+
+name wallpaper
+category Package
+revision 2342
+shortdesc Easy addition of wallpapers (background images) to LaTeX documents, including tiling.
+longdesc This collection contains files to add wallpapers (background
+longdesc images) to LaTeX documents. It uses the eso-pic package, but
+longdesc provides simple commands to include effects such as tiling. An
+longdesc example is provided, which works under both LaTeX and pdfLaTeX.
+docfiles size=1282030
+ texmf-dist/doc/latex/wallpaper/README details="Readme"
+ texmf-dist/doc/latex/wallpaper/example/TGTamber.png
+ texmf-dist/doc/latex/wallpaper/example/auto/example.el
+ texmf-dist/doc/latex/wallpaper/example/example.tex
+ texmf-dist/doc/latex/wallpaper/example/hya.png
+ texmf-dist/doc/latex/wallpaper/wallpapermanual.pdf details="Package documentation"
+runfiles size=6919
+ texmf-dist/tex/latex/wallpaper/wallpaper.sty
+catalogue-version 1.10
+catalogue-date 2007-01-20 20:21:37 +0100
+catalogue-ctan /macros/latex/contrib/wallpaper
+catalogue-license lppl
+
+name warning
+category Package
+revision 1447
+shortdesc Global warnings at the end of the logfile.
+longdesc This package provides a command that generates a list of
+longdesc warnings that are printed out at the very end of the logfile.
+longdesc This is useful for warning such as ‘Rerun for this or that
+longdesc reason’ or ‘This is a draft, change it before the final
+longdesc run’.
+srcfiles size=920
+ texmf-dist/source/latex/warning/warning.xml
+runfiles size=2425
+ texmf-dist/tex/latex/warning/warning.sty
+catalogue-version 0.01
+catalogue-date 2007-01-20 20:21:37 +0100
+catalogue-ctan /macros/latex/contrib/warning/warning.sty
+catalogue-license lppl
+
+name warpcol
+category Package
+revision 2342
+shortdesc Relative alignment of rows in numeric columns in tabulars.
+longdesc Defines a tabular column type for formatting numerical columns
+longdesc in LaTeX. The column type enables numerical items to be right
+longdesc justified relative to each other, while centred beneath the
+longdesc column label. In addition, macros are provided to enable
+longdesc variations on this column type to be defined. Usage of the
+longdesc package is superficially similar to that of dcolumn; however,
+longdesc the alignment scheme is different, and the packages have
+longdesc different, though overlapping, applications.
+docfiles size=167433
+ texmf-dist/doc/latex/warpcol/readme.txt details="Package Readme"
+ texmf-dist/doc/latex/warpcol/warpcol.pdf details="Package documentation"
+srcfiles size=10867
+ texmf-dist/source/latex/warpcol/warpcol.dtx
+ texmf-dist/source/latex/warpcol/warpcol.ins
+runfiles size=1337
+ texmf-dist/tex/latex/warpcol/warpcol.sty
+catalogue-version 1.1b
+catalogue-date 2006-12-18 23:50:36 +0100
+catalogue-ctan /macros/latex/contrib/warpcol
+catalogue-license unknown
+
+name was
+category Package
+revision 1449
+shortdesc A collection of small packages by Walter Schmidt.
+longdesc A bundle of packages that arise in the author's area of
+longdesc interest: compliance of maths typesetting with ISO standards,
+longdesc symbols that work in both maths and text modes, commas for both
+longdesc decimal separator and maths and upright Greek letters in maths.
+docfiles size=2053
+ texmf-dist/doc/latex/was/readme.1st details="Readme"
+srcfiles size=38374
+ texmf-dist/source/latex/was/fixmath.dtx
+ texmf-dist/source/latex/was/fixmath.ins
+ texmf-dist/source/latex/was/gensymb.dtx
+ texmf-dist/source/latex/was/gensymb.ins
+ texmf-dist/source/latex/was/icomma.dtx
+ texmf-dist/source/latex/was/icomma.ins
+ texmf-dist/source/latex/was/upgreek.dtx
+ texmf-dist/source/latex/was/upgreek.ins
+runfiles size=14330
+ texmf-dist/tex/latex/was/fixmath.sty
+ texmf-dist/tex/latex/was/gensymb.sty
+ texmf-dist/tex/latex/was/icomma.sty
+ texmf-dist/tex/latex/was/upgreek.sty
+catalogue-version
+catalogue-date 2007-03-01 21:27:41 +0100
+catalogue-ctan /macros/latex/contrib/was
+catalogue-license lppl
+
+name wasy
+category Package
+revision 621
+shortdesc A set of symbols.
+longdesc The wasy fonts (Waldi’s symbol fonts) provide a useful range
+longdesc of symbols in MetaFont format: they have been extended (and
+longdesc converted to Adobe Type 1) under the name wasy2.
+execute addMixedMap wasy.map
+docfiles size=203638
+ texmf-dist/doc/fonts/wasy/README
+ texmf-dist/doc/fonts/wasy/legal.txt
+ texmf-dist/doc/fonts/wasy/wasydoc.pdf
+ texmf-dist/doc/fonts/wasy/wasydoc.tex
+ texmf-dist/doc/fonts/wasy/wasyfont.2
+runfiles size=408305
+ texmf-dist/fonts/afm/public/wasy/wasy10.afm
+ texmf-dist/fonts/afm/public/wasy/wasy5.afm
+ texmf-dist/fonts/afm/public/wasy/wasy6.afm
+ texmf-dist/fonts/afm/public/wasy/wasy7.afm
+ texmf-dist/fonts/afm/public/wasy/wasy8.afm
+ texmf-dist/fonts/afm/public/wasy/wasy9.afm
+ texmf-dist/fonts/afm/public/wasy/wasyb10.afm
+ texmf-dist/fonts/map/dvips/wasy/wasy.map
+ texmf-dist/fonts/source/public/wasy/lasychr.mf
+ texmf-dist/fonts/source/public/wasy/rsym.mf
+ texmf-dist/fonts/source/public/wasy/wasy10.mf
+ texmf-dist/fonts/source/public/wasy/wasy5.mf
+ texmf-dist/fonts/source/public/wasy/wasy6.mf
+ texmf-dist/fonts/source/public/wasy/wasy7.mf
+ texmf-dist/fonts/source/public/wasy/wasy8.mf
+ texmf-dist/fonts/source/public/wasy/wasy9.mf
+ texmf-dist/fonts/source/public/wasy/wasyb10.mf
+ texmf-dist/fonts/source/public/wasy/wasychr.mf
+ texmf-dist/fonts/tfm/public/wasy/wasy10.tfm
+ texmf-dist/fonts/tfm/public/wasy/wasy5.tfm
+ texmf-dist/fonts/tfm/public/wasy/wasy6.tfm
+ texmf-dist/fonts/tfm/public/wasy/wasy7.tfm
+ texmf-dist/fonts/tfm/public/wasy/wasy8.tfm
+ texmf-dist/fonts/tfm/public/wasy/wasy9.tfm
+ texmf-dist/fonts/tfm/public/wasy/wasyb10.tfm
+ texmf-dist/fonts/type1/public/wasy/wasy10.pfb
+ texmf-dist/fonts/type1/public/wasy/wasy10.pfm
+ texmf-dist/fonts/type1/public/wasy/wasy5.pfb
+ texmf-dist/fonts/type1/public/wasy/wasy5.pfm
+ texmf-dist/fonts/type1/public/wasy/wasy6.pfb
+ texmf-dist/fonts/type1/public/wasy/wasy6.pfm
+ texmf-dist/fonts/type1/public/wasy/wasy7.pfb
+ texmf-dist/fonts/type1/public/wasy/wasy7.pfm
+ texmf-dist/fonts/type1/public/wasy/wasy8.pfb
+ texmf-dist/fonts/type1/public/wasy/wasy8.pfm
+ texmf-dist/fonts/type1/public/wasy/wasy9.pfb
+ texmf-dist/fonts/type1/public/wasy/wasy9.pfm
+ texmf-dist/fonts/type1/public/wasy/wasyb10.pfb
+ texmf-dist/fonts/type1/public/wasy/wasyb10.pfm
+ texmf-dist/tex/plain/wasy/wasyfont.tex
+catalogue-version
+catalogue-date 2007-03-13 09:12:24 +0100
+catalogue-ctan /obsolete/fonts/wasy
+catalogue-license dfsg
+
+name wasysym
+category Package
+revision 1450
+shortdesc LaTeX support file to use the WASY2 fonts
+longdesc The WASY2 (Waldi Symbol) font by Roland Waldi provides many
+longdesc glyphs like male and female symbols and astronomical symbols,
+longdesc as well as the complete lasy font set and other odds and ends.
+longdesc The wasysym package implements an easy to use interface for
+longdesc these symbols.
+docfiles size=102785
+ texmf-dist/doc/latex/wasysym/wasysym.pdf
+ texmf-dist/doc/latex/wasysym/wasysym.upl
+ texmf-dist/doc/latex/wasysym/wasysym.xml
+srcfiles size=28446
+ texmf-dist/source/latex/wasysym/wasysym.dtx
+ texmf-dist/source/latex/wasysym/wasysym.ins
+runfiles size=14813
+ texmf-dist/tex/latex/wasysym/uwasy.fd
+ texmf-dist/tex/latex/wasysym/uwasyvar.fd
+ texmf-dist/tex/latex/wasysym/wasysym.sty
+catalogue-version 2.0
+catalogue-date 2006-12-16 22:36:42 +0100
+catalogue-ctan /macros/latex/contrib/wasysym
+catalogue-license lppl
+
+name webguide
+category Documentation
+revision 23
+shortdesc Brief Guide to LaTeX Tools for Web publishing.
+longdesc The documentation constitutes an example of the package’s own
+longdesc recommendations (being presented both in PDF and HTML).
+docfiles size=401867
+ texmf-doc/doc/english/webguide/README details="Package README"
+ texmf-doc/doc/english/webguide/expeg.6
+ texmf-doc/doc/english/webguide/expeg6.mps
+ texmf-doc/doc/english/webguide/webguide.css
+ texmf-doc/doc/english/webguide/webguide.html details="Package document, as HTML"
+ texmf-doc/doc/english/webguide/webguide.pdf details="Package document, as PDF"
+ texmf-doc/doc/english/webguide/webguide.ps.gz
+ texmf-doc/doc/english/webguide/webguide.tex
+ texmf-doc/doc/english/webguide/webguide0x.gif
+catalogue-version
+catalogue-date 2006-09-08 08:43:32 +0200
+catalogue-ctan /info/webguide
+catalogue-license dfsg
+
+name williams
+category Package
+revision 1451
+shortdesc Miscellaneous macros by Peter Williams.
+longdesc The bundle provides two packages: – antree, which provides
+longdesc macros for annotated node trees, and – toklist, which is an
+longdesc implementation of Knuth's token list macros, to be found on
+longdesc pp.378–379 of the TeXbook.
+runfiles size=7856
+ texmf-dist/tex/latex/williams/antree.sty
+ texmf-dist/tex/latex/williams/toklist.sty
+catalogue-version
+catalogue-date 2006-12-05 00:47:24 +0100
+catalogue-ctan /macros/latex/contrib/williams
+catalogue-license unknown
+
+name wnri
+category Package
+revision 1487
+shortdesc Ridgeway's fonts.
+longdesc MetaFont fonts for Old English, Indic languages in Roman
+longdesc transliteration and Puget Salish (Lushootseed) and other Native
+longdesc American languages.
+docfiles size=3917
+ texmf-dist/doc/latex/wnri/wnritest.dvi
+ texmf-dist/doc/latex/wnri/wnritest.tex
+srcfiles size=11592
+ texmf-dist/source/latex/wnri/readme.2e
+ texmf-dist/source/latex/wnri/wnri.dtx
+ texmf-dist/source/latex/wnri/wnri.ins
+runfiles size=343287
+ texmf-dist/fonts/source/public/wnri/acctmax.mf
+ texmf-dist/fonts/source/public/wnri/acutacct.mf
+ texmf-dist/fonts/source/public/wnri/addpunc.mf
+ texmf-dist/fonts/source/public/wnri/baraacct.mf
+ texmf-dist/fonts/source/public/wnri/bargacct.mf
+ texmf-dist/fonts/source/public/wnri/bnduacct.mf
+ texmf-dist/fonts/source/public/wnri/brbracct.mf
+ texmf-dist/fonts/source/public/wnri/brevacct.mf
+ texmf-dist/fonts/source/public/wnri/cdilacct.mf
+ texmf-dist/fonts/source/public/wnri/facutact.mf
+ texmf-dist/fonts/source/public/wnri/fbaraact.mf
+ texmf-dist/fonts/source/public/wnri/fbargact.mf
+ texmf-dist/fonts/source/public/wnri/fbrevact.mf
+ texmf-dist/fonts/source/public/wnri/fgravact.mf
+ texmf-dist/fonts/source/public/wnri/fhachact.mf
+ texmf-dist/fonts/source/public/wnri/fhattact.mf
+ texmf-dist/fonts/source/public/wnri/fubrvact.mf
+ texmf-dist/fonts/source/public/wnri/fudacact.mf
+ texmf-dist/fonts/source/public/wnri/fudgract.mf
+ texmf-dist/fonts/source/public/wnri/gamma.mf
+ texmf-dist/fonts/source/public/wnri/gram_max.mf
+ texmf-dist/fonts/source/public/wnri/grampunc.mf
+ texmf-dist/fonts/source/public/wnri/gravacct.mf
+ texmf-dist/fonts/source/public/wnri/greeks.mf
+ texmf-dist/fonts/source/public/wnri/haccbase.mf
+ texmf-dist/fonts/source/public/wnri/hachacct.mf
+ texmf-dist/fonts/source/public/wnri/hattacct.mf
+ texmf-dist/fonts/source/public/wnri/iaesc.mf
+ texmf-dist/fonts/source/public/wnri/ibrvacct.mf
+ texmf-dist/fonts/source/public/wnri/igamma.mf
+ texmf-dist/fonts/source/public/wnri/italcskt.mf
+ texmf-dist/fonts/source/public/wnri/italla.mf
+ texmf-dist/fonts/source/public/wnri/ligature.mf
+ texmf-dist/fonts/source/public/wnri/ligaturi.mf
+ texmf-dist/fonts/source/public/wnri/macracct.mf
+ texmf-dist/fonts/source/public/wnri/mudaacct.mf
+ texmf-dist/fonts/source/public/wnri/odotacct.mf
+ texmf-dist/fonts/source/public/wnri/orngacct.mf
+ texmf-dist/fonts/source/public/wnri/product.mf
+ texmf-dist/fonts/source/public/wnri/romanla.mf
+ texmf-dist/fonts/source/public/wnri/romanskt.mf
+ texmf-dist/fonts/source/public/wnri/romanua.mf
+ texmf-dist/fonts/source/public/wnri/sktmisc.mf
+ texmf-dist/fonts/source/public/wnri/tildacct.mf
+ texmf-dist/fonts/source/public/wnri/u-ring.mf
+ texmf-dist/fonts/source/public/wnri/ubaracct.mf
+ texmf-dist/fonts/source/public/wnri/ubrvacct.mf
+ texmf-dist/fonts/source/public/wnri/udacacct.mf
+ texmf-dist/fonts/source/public/wnri/udgracct.mf
+ texmf-dist/fonts/source/public/wnri/udmcacct.mf
+ texmf-dist/fonts/source/public/wnri/udotacct.mf
+ texmf-dist/fonts/source/public/wnri/uibvacct.mf
+ texmf-dist/fonts/source/public/wnri/umlaacct.mf
+ texmf-dist/fonts/source/public/wnri/urmcacct.mf
+ texmf-dist/fonts/source/public/wnri/urngacct.mf
+ texmf-dist/fonts/source/public/wnri/uumlacct.mf
+ texmf-dist/fonts/source/public/wnri/wnindic.map
+ texmf-dist/fonts/source/public/wnri/wnrib10.mf
+ texmf-dist/fonts/source/public/wnri/wnrib8.mf
+ texmf-dist/fonts/source/public/wnri/wnribi10.mf
+ texmf-dist/fonts/source/public/wnri/wnrii10.mf
+ texmf-dist/fonts/source/public/wnri/wnrii8.mf
+ texmf-dist/fonts/source/public/wnri/wnrir10.mf
+ texmf-dist/fonts/source/public/wnri/wnrir8.mf
+ texmf-dist/fonts/source/public/wnri/wnris10.mf
+ texmf-dist/fonts/source/public/wnri/wnris8.mf
+ texmf-dist/fonts/source/public/wnri/wnrit10.mf
+ texmf-dist/fonts/source/public/wnri/wnrit8.mf
+ texmf-dist/fonts/tfm/public/wnri/wnrib10.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnrib8.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnribi10.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnrii10.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnrii8.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnrir10.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnrir8.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnris10.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnris8.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnrit10.tfm
+ texmf-dist/fonts/tfm/public/wnri/wnrit8.tfm
+ texmf-dist/tex/latex/wnri/ot1wnr.fd
+ texmf-dist/tex/latex/wnri/ot1wnss.fd
+ texmf-dist/tex/latex/wnri/ot1wntt.fd
+ texmf-dist/tex/latex/wnri/wnri.def
+ texmf-dist/tex/latex/wnri/wnri.sty
+catalogue-version
+catalogue-date 2006-12-16 22:36:42 +0100
+catalogue-ctan /fonts/wnri
+catalogue-license gpl
+
+name wntamil
+category Package
+revision 101
+shortdesc Tamil to TeX converter.
+longdesc MetaFont fonts, macros and a converter for transliterated text,
+longdesc providing support for Tamil (focussing on Windows users’
+longdesc needs).
+docfiles size=59419
+ texmf-dist/doc/fonts/wntamil/readme.doc
+ texmf-dist/doc/fonts/wntamil/tamdict.tex
+ texmf-dist/doc/fonts/wntamil/tamdict.txt
+ texmf-dist/doc/fonts/wntamil/tamilize.c
+ texmf-dist/doc/fonts/wntamil/tamilmax.tex
+ texmf-dist/doc/fonts/wntamil/tmilize.c
+runfiles size=91864
+ texmf-dist/fonts/source/public/wntamil/tamil.mf
+ texmf-dist/fonts/source/public/wntamil/tamilmax.mf
+ texmf-dist/fonts/source/public/wntamil/wntamil.mf
+ texmf-dist/fonts/source/public/wntamil/wntml10.mf
+ texmf-dist/fonts/tfm/public/wntamil/wntml10.tfm
+catalogue-version
+catalogue-date 2006-12-16 22:36:42 +0100
+catalogue-ctan /language/tamil/wntamil
+catalogue-license other
+
+name wordcount
+category Package
+revision 1453
+shortdesc Estimate the number of words in a LaTeX document.
+longdesc Provides a relatively easy way of estimating the number of
+longdesc words in a LaTeX document that does not require dvitty or other
+longdesc DVI converters; it does however require something like Unix
+longdesc grep -c that can search a file for a particular string and
+longdesc report the number of matching lines. An accompanying shell
+longdesc script wordcount.sh contains more information in its comments.
+depend bin-wordcount
+runfiles size=7248
+ texmf-dist/tex/latex/wordcount/wordcount.tex
+catalogue-version
+catalogue-date 2006-12-16 22:36:42 +0100
+catalogue-ctan /macros/latex/contrib/wordcount
+catalogue-license dfsg
+
+name wordlike
+category Package
+revision 1835
+shortdesc Simulating word processor layout.
+longdesc The package simulates typical word processor layout: narrow
+longdesc page margins, Times, Helvetica and Courier fonts, \LARGE or
+longdesc \Large headings, and \sloppy typesetting. The package aims at
+longdesc making life easier for users who are discontent with LaTeX's
+longdesc standard layout settings because they need a layout that
+longdesc resembles the usual “wordlike” output. The design of the
+longdesc package draws on several discussions in the de.comp.text.tex
+longdesc and comp.text.tex newsgroups that are referred to in the
+longdesc manual.
+docfiles size=121251
+ texmf-dist/doc/latex/wordlike/README
+ texmf-dist/doc/latex/wordlike/wordlike.pdf
+srcfiles size=17393
+ texmf-dist/source/latex/wordlike/wordlike.dtx
+ texmf-dist/source/latex/wordlike/wordlike.ins
+runfiles size=3123
+ texmf-dist/tex/latex/wordlike/wordlike.sty
+catalogue-version 1.2b
+catalogue-date 2007-03-13 09:12:24 +0100
+catalogue-ctan /macros/latex/contrib/wordlike
+catalogue-license lppl
+
+name wp-conv
+category Documentation
+revision 23
+shortdesc FAQ on converters between (La)TeX and PC-Textprocessors.
+longdesc A compilation of information about means of converting between
+longdesc LaTeX documents and other document preparation formats
+longdesc including RTF, Word, and Wordperfect.
+docfiles size=150849
+ texmf-doc/doc/english/wp-conv/GPL.txt
+ texmf-doc/doc/english/wp-conv/html2LaTeX.txt
+ texmf-doc/doc/english/wp-conv/html2latex.html
+ texmf-doc/doc/english/wp-conv/index.html
+ texmf-doc/doc/english/wp-conv/ktalk.txt
+ texmf-doc/doc/english/wp-conv/ktbugs.html
+ texmf-doc/doc/english/wp-conv/ktbugs.txt
+ texmf-doc/doc/english/wp-conv/la2mml.html
+ texmf-doc/doc/english/wp-conv/laola.html
+ texmf-doc/doc/english/wp-conv/latex2rtf.html
+ texmf-doc/doc/english/wp-conv/ltx2rtf.html
+ texmf-doc/doc/english/wp-conv/ltx2rtf3.html
+ texmf-doc/doc/english/wp-conv/ltx2word.html
+ texmf-doc/doc/english/wp-conv/mathtype.html
+ texmf-doc/doc/english/wp-conv/mswordview.html
+ texmf-doc/doc/english/wp-conv/nb4latex.html
+ texmf-doc/doc/english/wp-conv/pc2txtbl.html
+ texmf-doc/doc/english/wp-conv/pctotex.html
+ texmf-doc/doc/english/wp-conv/pubcomp.html
+ texmf-doc/doc/english/wp-conv/readme.txt
+ texmf-doc/doc/english/wp-conv/rtf2latex.html
+ texmf-doc/doc/english/wp-conv/rtf2latex2e.html
+ texmf-doc/doc/english/wp-conv/rtflatex.html
+ texmf-doc/doc/english/wp-conv/sciword.html
+ texmf-doc/doc/english/wp-conv/tex2rtf.html
+ texmf-doc/doc/english/wp-conv/texcnv.html
+ texmf-doc/doc/english/wp-conv/texperf.html
+ texmf-doc/doc/english/wp-conv/texport.html
+ texmf-doc/doc/english/wp-conv/textopc.html
+ texmf-doc/doc/english/wp-conv/tx2pctbl.html
+ texmf-doc/doc/english/wp-conv/w2latex.html
+ texmf-doc/doc/english/wp-conv/winw2ltx.html
+ texmf-doc/doc/english/wp-conv/word2x.html
+ texmf-doc/doc/english/wp-conv/wp2latex.html
+ texmf-doc/doc/english/wp-conv/wvlib.html
+catalogue-version
+catalogue-date 2007-03-27 11:24:32 +0200
+catalogue-ctan /help/wp-conv
+catalogue-license unknown
+
+name wrapfig
+category Package
+revision 1454
+shortdesc Produces figures which text can flow around.
+longdesc Allows figures to have text wrapped around them. Does not work
+longdesc in combination with list environments, but can be used in a
+longdesc parbox or minipage, and in twocolumn format. Supports the float
+longdesc package. Note that most of the package documentation is
+longdesc contained in wrapfig.sty itself (after the \endinput command at
+longdesc the end of the package proper).
+docfiles size=5342
+ texmf-dist/doc/latex/wrapfig/multiple-span.txt details="How to use wrapfig to span multiple columns"
+runfiles size=26220
+ texmf-dist/tex/latex/wrapfig/wrapfig.sty
+catalogue-version 3.6
+catalogue-date 2006-12-06 17:17:06 +0100
+catalogue-ctan /macros/latex/contrib/wrapfig
+catalogue-license dfsg
+
+name wsuipa
+category Package
+revision 1455
+shortdesc International Phonetic Alphabet fonts.
+longdesc The package provides a 7-bit IPA font, as MetaFont source, and
+longdesc macros for support under TeXt1 and LaTeX. The fonts (and
+longdesc macros) are now largely superseded by the tipa fonts.
+docfiles size=174245
+ texmf-dist/doc/generic/wsuipa/ipaman.ps.gz
+ texmf-dist/doc/generic/wsuipa/latex209/ipalman.tex
+ texmf-dist/doc/generic/wsuipa/latex209/lipaman.tex
+ texmf-dist/doc/generic/wsuipa/latex2e/ipaman.tex
+ texmf-dist/doc/generic/wsuipa/text1/ipaman.tex
+srcfiles size=2398
+ texmf-dist/source/generic/wsuipa/README.wsuipa
+ texmf-dist/source/generic/wsuipa/changes.dec93
+ texmf-dist/source/generic/wsuipa/changes.jun91
+ texmf-dist/source/generic/wsuipa/changes.mar91
+ texmf-dist/source/generic/wsuipa/changes.may92
+ texmf-dist/source/generic/wsuipa/changes.nov90
+runfiles size=288049
+ texmf-dist/fonts/source/public/wsuipa/compilefonts
+ texmf-dist/fonts/source/public/wsuipa/iaccent.mf
+ texmf-dist/fonts/source/public/wsuipa/igreekl.mf
+ texmf-dist/fonts/source/public/wsuipa/iparoman.mf
+ texmf-dist/fonts/source/public/wsuipa/iromanl.mf
+ texmf-dist/fonts/source/public/wsuipa/iromanp.mf
+ texmf-dist/fonts/source/public/wsuipa/iromanu.mf
+ texmf-dist/fonts/source/public/wsuipa/wbxipa10.mf
+ texmf-dist/fonts/source/public/wsuipa/wbxipa11.mf
+ texmf-dist/fonts/source/public/wsuipa/wbxipa12.mf
+ texmf-dist/fonts/source/public/wsuipa/wbxipa17.mf
+ texmf-dist/fonts/source/public/wsuipa/wbxipa8.mf
+ texmf-dist/fonts/source/public/wsuipa/wbxipa9.mf
+ texmf-dist/fonts/source/public/wsuipa/wslipa10.mf
+ texmf-dist/fonts/source/public/wsuipa/wslipa11.mf
+ texmf-dist/fonts/source/public/wsuipa/wslipa12.mf
+ texmf-dist/fonts/source/public/wsuipa/wslipa17.mf
+ texmf-dist/fonts/source/public/wsuipa/wslipa8.mf
+ texmf-dist/fonts/source/public/wsuipa/wslipa9.mf
+ texmf-dist/fonts/source/public/wsuipa/wsuipa10.mf
+ texmf-dist/fonts/source/public/wsuipa/wsuipa11.mf
+ texmf-dist/fonts/source/public/wsuipa/wsuipa12.mf
+ texmf-dist/fonts/source/public/wsuipa/wsuipa17.mf
+ texmf-dist/fonts/source/public/wsuipa/wsuipa8.mf
+ texmf-dist/fonts/source/public/wsuipa/wsuipa9.mf
+ texmf-dist/fonts/tfm/public/wsuipa/wbxipa10.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wbxipa11.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wbxipa12.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wbxipa17.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wbxipa8.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wbxipa9.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wslipa10.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wslipa11.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wslipa12.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wslipa17.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wslipa8.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wslipa9.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wsuipa10.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wsuipa11.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wsuipa12.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wsuipa17.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wsuipa8.tfm
+ texmf-dist/fonts/tfm/public/wsuipa/wsuipa9.tfm
+ texmf-dist/tex/latex/wsuipa/ipalmacs.sty
+ texmf-dist/tex/latex/wsuipa/uipa.fd
+catalogue-version
+catalogue-date 2006-12-16 17:11:43 +0100
+catalogue-ctan /fonts/wsuipa
+catalogue-license unknown
+
+name xargs
+category Package
+revision 5328
+shortdesc Define commands with many optional arguments.
+longdesc The package provides extended versions of \newcommand and
+longdesc related LaTeX commands, which allow easy and robust definition
+longdesc of macros with many optional arguments, using a clear and
+longdesc simple xkeyval-style syntax.
+docfiles size=438216
+ texmf-dist/doc/latex/xargs/README details="Readme"
+ texmf-dist/doc/latex/xargs/xargs-fr.pdf details="Package documentation (French)" language="fr"
+ texmf-dist/doc/latex/xargs/xargs.pdf details="Package documentation (English)" language="en"
+srcfiles size=48744
+ texmf-dist/source/latex/xargs/xargs.dtx
+ texmf-dist/source/latex/xargs/xargs.ins
+runfiles size=11587
+ texmf-dist/tex/latex/xargs/xargs.sty
+catalogue-version 1.0
+catalogue-date 2007-11-08 10:20:01 +0100
+catalogue-ctan /macros/latex/contrib/xargs
+catalogue-license lppl
+
+name xbase
+category Package
+revision 5039
+shortdesc Packages showing a proposed LaTeX3 programming convention.
+longdesc The xbase bundle provides the packages xparse and template.
+longdesc xparse provides a high-level interface for declaring document
+longdesc commands, e.g., a uniform way to define commands taking
+longdesc optional arguments, optional stars (and others), mandatory
+longdesc arguments and more. template provides an interface for defining
+longdesc generic functions using a key=val syntax.
+docfiles size=830715
+ texmf-dist/doc/latex/xbase/00readme.txt
+ texmf-dist/doc/latex/xbase/ldcsetup.pdf details="ldcsetup package documentation"
+ texmf-dist/doc/latex/xbase/template-test.tex
+ texmf-dist/doc/latex/xbase/template-test2.tex
+ texmf-dist/doc/latex/xbase/template.pdf details="template package documentation"
+ texmf-dist/doc/latex/xbase/tprestrict-test.tex
+ texmf-dist/doc/latex/xbase/xparse-test.tex
+ texmf-dist/doc/latex/xbase/xparse.pdf details="xparse package documentation"
+srcfiles size=178414
+ texmf-dist/source/latex/xbase/ldcsetup.dtx
+ texmf-dist/source/latex/xbase/template.dtx
+ texmf-dist/source/latex/xbase/xbase.ins
+ texmf-dist/source/latex/xbase/xparse.dtx
+runfiles size=43824
+ texmf-dist/tex/latex/xbase/ldcsetup.sty
+ texmf-dist/tex/latex/xbase/template.sty
+ texmf-dist/tex/latex/xbase/xparse.sty
+catalogue-version
+catalogue-date 2006-12-13 13:07:04 +0100
+catalogue-ctan /macros/latex/exptl/project/xbase
+catalogue-license lppl
+
+name xbmc
+category Package
+revision 101
+runfiles size=1499
+ texmf-dist/fonts/source/public/xbmc/xbmc10.mf
+ texmf-dist/fonts/tfm/public/xbmc/xbmc10.tfm
+
+name xcolor
+category Package
+revision 3687
+shortdesc Driver-independent color extensions for LaTeX and pdfLaTeX.
+longdesc Provides easy driver-independent access to several kinds of
+longdesc color tints, shades, tones, and mixes of arbitrary colors. It
+longdesc allows a user to select a document-wide target color model and
+longdesc offers complete tools for conversion between eight color
+longdesc models. Additionally, there is a command for alternating row
+longdesc colors plus repeated non-aligned material (like horizontal
+longdesc lines) in tables. Colors can be mixed like
+longdesc \color{red!30!green!40!blue}.
+docfiles size=847106
+ texmf-dist/doc/latex/xcolor/ChangeLog
+ texmf-dist/doc/latex/xcolor/README
+ texmf-dist/doc/latex/xcolor/xcolor.lox
+ texmf-dist/doc/latex/xcolor/xcolor.pdf
+ texmf-dist/doc/latex/xcolor/xcolor1.tex
+ texmf-dist/doc/latex/xcolor/xcolor2.pdf details="Examples of usage with pstricks:"
+ texmf-dist/doc/latex/xcolor/xcolor2.tex
+ texmf-dist/doc/latex/xcolor/xcolor3.tex
+ texmf-dist/doc/latex/xcolor/xcolor4.tex
+srcfiles size=341730
+ texmf-dist/source/latex/xcolor/xcolor.dtx
+ texmf-dist/source/latex/xcolor/xcolor.ins
+runfiles size=70939
+ texmf-dist/dvips/xcolor/xcolor.pro
+ texmf-dist/tex/latex/xcolor/svgnam.def
+ texmf-dist/tex/latex/xcolor/x11nam.def
+ texmf-dist/tex/latex/xcolor/xcolor.sty
+catalogue-version 2.11
+catalogue-date 2007-01-21 23:54:12 +0100
+catalogue-ctan /macros/latex/contrib/xcolor
+catalogue-license lppl
+
+name xdoc
+category Package
+revision 1457
+shortdesc Extending the LaTeX doc system.
+longdesc Xdoc is a project to rewrite the implementation of the LaTeX
+longdesc doc package (in a broader sense) to make its features more
+longdesc general and flexible. For example, where doc only provides
+longdesc commands for documenting macros and environments, xdoc also
+longdesc provides commands for similarly documenting package options and
+longdesc switches. This is furthermore done in such a way that it is
+longdesc very easy to add more such commands for documenting things,
+longdesc such as e.g., templates (an important concept in the future
+longdesc LaTeX3) and program components for other languages (functions,
+longdesc classes, procedures, etc.). A side effect is that many minor
+longdesc bugs in doc are fixed. The design aims to take advantage of
+longdesc many still experimental features of future versions of LaTeX,
+longdesc but since these are neither reasonably stable nor widely
+longdesc available, the configuration interfaces and package author
+longdesc commands of xdoc are likely to change. To still provide a
+longdesc stable interface for other packages to build upon, the actual
+longdesc package names include a "major version number" of sorts. The
+longdesc drop-in replacement package for standard doc is xdoc2; it
+longdesc requires nothing outside standard LaTeX2e. The
+longdesc docindex/docidx2e package changes the index and list of changes
+longdesc typesetting so that none of the formatting has to be controlled
+longdesc via the index style file. The docindex package provides control
+longdesc of formatting via templates (nice interface, but requires
+longdesc several experimental packages), whereas the docidx2e package
+longdesc has traditional raw macro interfaces and works with standard
+longdesc LaTeX2e.
+docfiles size=1084455
+ texmf-dist/doc/latex/xdoc/README details="Package Readme"
+ texmf-dist/doc/latex/xdoc/docindex.pdf details="docindex documentation"
+ texmf-dist/doc/latex/xdoc/xdoc2.pdf details="xdoc2 documentation"
+ texmf-dist/doc/latex/xdoc/xdocdemo.pdf details="Demonstration of usage"
+ texmf-dist/doc/latex/xdoc/xdocdemo.tex
+srcfiles size=304048
+ texmf-dist/source/latex/xdoc/docindex.dtx
+ texmf-dist/source/latex/xdoc/docindex.ins
+ texmf-dist/source/latex/xdoc/xdoc2.dtx
+ texmf-dist/source/latex/xdoc/xdoc2.ins
+runfiles size=61322
+ texmf-dist/makeindex/xdoc/docindex.ist
+ texmf-dist/tex/latex/xdoc/docidx2e.sty
+ texmf-dist/tex/latex/xdoc/docindex.sty
+ texmf-dist/tex/latex/xdoc/xdoc2.sty
+catalogue-version prot2.5
+catalogue-date 2006-12-05 00:47:24 +0100
+catalogue-ctan /macros/latex/contrib/xdoc
+catalogue-license lppl
+
+name xetex
+category Package
+revision 3693
+docfiles size=627051
+ texmf-dist/doc/xetex/XeTeX-notes.pdf
+ texmf-dist/doc/xetex/XeTeX-notes.tex
+runfiles size=203640
+ texmf-dist/fonts/misc/xetex/fontmapping/tex-text.map
+ texmf-dist/fonts/misc/xetex/fontmapping/tex-text.tec
+ texmf-dist/scripts/xetex/perl/lib/PDF/Reuse.pm
+ texmf-dist/scripts/xetex/perl/lib/PDF/Reuse/Util.pm
+ texmf-dist/scripts/xetex/perl/xdv2pdf_mergemarks
+
+name xetexconfig
+category Package
+revision 3604
+runfiles size=400084
+ texmf-dist/tex/generic/xetexconfig/unicode-letters.tex
+ texmf-dist/tex/xelatex/xetexconfig/crop.cfg
+ texmf-dist/tex/xelatex/xetexconfig/geometry.cfg
+
+name xetexref
+category Documentation
+revision 4659
+docfiles size=144412
+ texmf-doc/doc/english/xetexref/README
+ texmf-doc/doc/english/xetexref/XeTeX-reference.ltx
+ texmf-doc/doc/english/xetexref/XeTeX-reference.pdf
+
+name xetexurl
+category Package
+revision 2302
+runfiles size=20626
+ texmf-dist/tex/xelatex/xetexurl/url.sty
+
+name xfor
+category Package
+revision 4798
+shortdesc A reimplimentation of the LaTeX for-loop macro.
+longdesc The package redefines the LaTeX internal \@for macro so that
+longdesc the loop may be prematurely terminated. The action is akin to
+longdesc the C/Java break statement, except that the loop does not
+longdesc terminate until the end of the current iteration
+docfiles size=110790
+ texmf-dist/doc/latex/xfor/CHANGES
+ texmf-dist/doc/latex/xfor/README details="Readme"
+ texmf-dist/doc/latex/xfor/sample.tex
+ texmf-dist/doc/latex/xfor/xfor.pdf
+srcfiles size=11142
+ texmf-dist/source/latex/xfor/xfor.dtx
+ texmf-dist/source/latex/xfor/xfor.ins
+runfiles size=2929
+ texmf-dist/tex/latex/xfor/xfor.sty
+catalogue-version 1.03
+catalogue-date 2007-08-21 23:08:33 +0200
+catalogue-ctan /macros/latex/contrib/xfor
+catalogue-license lppl
+
+name xgreek
+category Package
+revision 5083
+shortdesc XeLaTeX package for typesetting Greek language documents (beta release).
+longdesc This package has been designed so to allow people to typeset
+longdesc Greek language documents using XeLaTeX. And it is released in
+longdesc the hope that people will use it and spot errors, bugs,
+longdesc features so to improve it. Practically, it provides all the
+longdesc capabilities of the greek option of the babel package. The
+longdesc package can be invoked with any of the following options:
+longdesc monotonic (for typesetting modern monotonic Greek), polytonic
+longdesc (for typesetting modern polytonic Greek), and ancient (for
+longdesc typesetting ancient texts). The default option is monotonic.
+longdesc The command \setlanguage{lang} to activate the hyphenation
+longdesc patterns of the lang. This, however, can be done only if the
+longdesc format file has not been built with the babel mechanism.
+docfiles size=801
+ texmf-dist/doc/xelatex/xgreek/README.1ST details="README file"
+runfiles size=6541
+ texmf-dist/tex/xelatex/xgreek/xgreek.sty
+catalogue-version v1.0c
+catalogue-date 2007-11-18 23:01:55 +0100
+catalogue-ctan /macros/xetex/latex/xgreek
+catalogue-license lppl
+
+name xifthen
+category Package
+revision 4186
+shortdesc Extended conditional commands.
+longdesc This package extends the ifthen package by implementing new
+longdesc commands to go within the first argument of \ifthenelse: to
+longdesc test whether a string is void or not, if a command is defined
+longdesc or equivalent to another. The package also enables use of
+longdesc complex expressions as introduced by the package calc, together
+longdesc with the ability of defining new commands to handle complex
+longdesc tests. The package requires e-TeX features.
+docfiles size=527210
+ texmf-dist/doc/latex/xifthen/README
+ texmf-dist/doc/latex/xifthen/xifthen.pdf
+ texmf-dist/doc/latex/xifthen/xifthen.tex
+runfiles size=5042
+ texmf-dist/tex/latex/xifthen/xifthen.sty
+catalogue-version 1.1
+catalogue-date 2007-07-17 10:47:48 +0200
+catalogue-ctan /macros/latex/contrib/xifthen
+catalogue-license lppl
+
+name xinitials
+category Package
+revision 616
+docfiles size=7381
+ texmf-dist/doc/latex3/xinitials/xinitials-test.tex
+srcfiles size=21483
+ texmf-dist/source/latex3/xinitials/xinitials.dtx
+ texmf-dist/source/latex3/xinitials/xinitials.ins
+ texmf-dist/source/latex3/xinitials/xinitials.sig
+runfiles size=2691
+ texmf-dist/tex/latex3/xinitials/xinitials.sty
+
+name xkeyval
+category Package
+revision 4159
+shortdesc Extension of the keyval package.
+longdesc This package is an extension of the keyval package and offers
+longdesc additional macros for setting keys and declaring and setting
+longdesc class or package options. The package allows the programmer to
+longdesc specify a prefix to the name of the macros it defines for keys,
+longdesc and to define families of key definitions; these all help use
+longdesc in documents where several packages define their own sets of
+longdesc keys.
+docfiles size=429564
+ texmf-dist/doc/latex/xkeyval/README details="Package README"
+ texmf-dist/doc/latex/xkeyval/xkeyval.pdf
+srcfiles size=213980
+ texmf-dist/source/latex/xkeyval/xkeyval.dtx
+runfiles size=49516
+ texmf-dist/tex/generic/xkeyval/keyval.tex
+ texmf-dist/tex/generic/xkeyval/pst-xkey.tex
+ texmf-dist/tex/generic/xkeyval/xkeyval.tex
+ texmf-dist/tex/generic/xkeyval/xkvtxhdr.tex
+ texmf-dist/tex/latex/xkeyval/pst-xkey.sty
+ texmf-dist/tex/latex/xkeyval/xkeyval.sty
+ texmf-dist/tex/latex/xkeyval/xkvltxp.sty
+ texmf-dist/tex/latex/xkeyval/xkvview.sty
+catalogue-version 2.5f
+catalogue-date 2006-12-12 21:32:56 +0100
+catalogue-ctan /macros/latex/contrib/xkeyval
+catalogue-license lppl
+
+name xltxtra
+category Package
+revision 4857
+shortdesc "Extras" for LaTeX users of XeTeX.
+longdesc The package loads the fixltx2e package from the LaTeX
+longdesc distribution, and etex.sty from the e-TeX distribution. The
+longdesc package then patches the \- (discretionary hyphen command) to
+longdesc use the current hyphen character (which may be different from
+longdesc than the default, which is the character at the ASCII hyphen
+longdesc slot), and the \textsuperscript command (from the LaTeX kernel)
+longdesc and the \textsubscript command (from the fixltx2e package). The
+longdesc package also provides parameterised versions of the “bumpy
+longdesc road” logos for TeX, LaTeX and XeTeX — these versions of
+longdesc the logos are designed to respond to the font that is being
+longdesc used for typesetting.
+docfiles size=346171
+ texmf-dist/doc/xelatex/xltxtra/README details="Readme"
+ texmf-dist/doc/xelatex/xltxtra/xltxtra.pdf details="Package documentation"
+srcfiles size=28349
+ texmf-dist/source/xelatex/xltxtra/xltxtra.dtx
+ texmf-dist/source/xelatex/xltxtra/xltxtra.ins
+runfiles size=7650
+ texmf-dist/tex/xelatex/xltxtra/xltxtra.sty
+catalogue-version 0.3b
+catalogue-date 2007-09-03 18:25:45 +0200
+catalogue-ctan /macros/xetex/latex/xltxtra
+catalogue-license lppl
+
+name xmlplay
+category Package
+revision 627
+shortdesc Typeset Shakespeare's plays as marked up by Bosak.
+longdesc This is an xmltex package for typsetting the plays of
+longdesc Shakespeare, as marked up by Jon Bosak.
+docfiles size=514
+ texmf-dist/doc/xmltex/xmlplay/readme
+srcfiles size=1217
+ texmf-dist/source/xmltex/xmlplay/play.dtd
+runfiles size=2503
+ texmf-dist/tex/xmltex/xmlplay/play.xmt
+catalogue-version
+catalogue-date 2006-12-16 17:11:43 +0100
+catalogue-ctan
+catalogue-license pd
+
+name xmltex
+category Package
+revision 627
+shortdesc Support for parsing XML documents.
+longdesc This package provides an implementation of a parser for
+longdesc documents matching the XML 1.0 and XML Namespace
+longdesc Recommendations. In addition to parsing commands are provided
+longdesc to attatch TeX typesetting instructions to the various markup
+longdesc elemenets as they are encounted. Sample files for typesetting a
+longdesc subset of TEI, MathML, are included. Element and Attribute
+longdesc names, as well as character data, may use any characters
+longdesc allowed in XML, using UTF-8 or a suitable 8-bit encoding.
+docfiles size=77801
+ texmf-dist/doc/xmltex/base/englishutf16.xml
+ texmf-dist/doc/xmltex/base/englishutf8.xml
+ texmf-dist/doc/xmltex/base/langtest.xml
+ texmf-dist/doc/xmltex/base/manual.html
+ texmf-dist/doc/xmltex/base/manual.tex
+ texmf-dist/doc/xmltex/base/manual.xml
+ texmf-dist/doc/xmltex/base/manual.xsl
+ texmf-dist/doc/xmltex/base/portugeselatin1.xml
+ texmf-dist/doc/xmltex/base/readme.txt
+ texmf-dist/doc/xmltex/base/russiankoi8.xml
+ texmf-dist/doc/xmltex/base/russianutf8.xml
+ texmf-dist/doc/xmltex/base/testascii.cfg
+ texmf-dist/doc/xmltex/base/testascii.tex
+ texmf-dist/doc/xmltex/base/testascii.xml
+ texmf-dist/doc/xmltex/base/testsec.tex
+ texmf-dist/doc/xmltex/base/testsec.xml
+runfiles size=78956
+ texmf-dist/tex/xmltex/base/iso-8859-1.xmt
+ texmf-dist/tex/xmltex/base/iso-8859-2.xmt
+ texmf-dist/tex/xmltex/base/koi8-r.xmt
+ texmf-dist/tex/xmltex/base/langtest.xmt
+ texmf-dist/tex/xmltex/base/mathml2.xmt
+ texmf-dist/tex/xmltex/base/sec.xmt
+ texmf-dist/tex/xmltex/base/utf-16.xmt
+ texmf-dist/tex/xmltex/base/windows-1250.xmt
+ texmf-dist/tex/xmltex/base/xmltex.cfg
+ texmf-dist/tex/xmltex/base/xmltex.tex
+ texmf-dist/tex/xmltex/config/pdfxmltex.ini
+ texmf-dist/tex/xmltex/config/xmltex.ini
+catalogue-version 0.8
+catalogue-date 2006-12-16 17:11:43 +0100
+catalogue-ctan /macros/xmltex/base
+catalogue-license lppl
+
+name xmpincl
+category Package
+revision 1460
+shortdesc Include eXtensible Metadata Platform data in PDFLaTeX.
+longdesc The XMP (eXtensible Metadata platform) is a framework to add
+longdesc metadata to digital material to enhance the workflow in
+longdesc publication. The essence is that the metadata is stored in an
+longdesc XML file, and this XML stream is then embedded in the file to
+longdesc which it applies. How you create this XML file is up to you,
+longdesc but the author started investigating this because he wanted to
+longdesc embed licensing information in the files he created. The
+longdesc license the author chose is one of the Creative Commons
+longdesc licenses, and their web-site offers this information in a valid
+longdesc XML-file, suitable for direct inclusion.
+docfiles size=122343
+ texmf-dist/doc/latex/xmpincl/README details="Package Readme"
+ texmf-dist/doc/latex/xmpincl/license.xmp
+ texmf-dist/doc/latex/xmpincl/xmpincl.pdf details="Package documentation"
+srcfiles size=17591
+ texmf-dist/source/latex/xmpincl/xmpincl.dtx
+ texmf-dist/source/latex/xmpincl/xmpincl.ins
+runfiles size=2816
+ texmf-dist/tex/latex/xmpincl/xmpincl.sty
+catalogue-version
+catalogue-date 2006-12-16 17:11:43 +0100
+catalogue-ctan /macros/latex/contrib/xmpincl
+catalogue-license gpl
+
+name xnewcommand
+category Package
+revision 4185
+shortdesc Define \global and \protected commands with \newcommand.
+longdesc The package provides the means of defining \global and (e-TeX)
+longdesc \protected commands, within the framework of LaTeX's standard
+longdesc \newcommand.
+docfiles size=279466
+ texmf-dist/doc/latex/xnewcommand/README details="Readme"
+ texmf-dist/doc/latex/xnewcommand/xnewcommand.pdf details="Package documentation"
+ texmf-dist/doc/latex/xnewcommand/xnewcommand.tex
+runfiles size=470
+ texmf-dist/tex/latex/xnewcommand/xnewcommand.sty
+catalogue-version 1.2
+catalogue-date 2007-05-13 12:01:55 +0200
+catalogue-ctan /macros/latex/contrib/xnewcommand
+catalogue-license lppl
+
+name xoptarg
+category Package
+revision 4188
+shortdesc Expandable macros that take an optional argument.
+longdesc Commands that take an optional argument are not ordinarily
+longdesc expandable; this package allows such commands to be expandable
+longdesc provided they have at least one mandatory argument.
+docfiles size=389145
+ texmf-dist/doc/latex/xoptarg/README details="Readme"
+ texmf-dist/doc/latex/xoptarg/xoptarg.pdf details="Package documentation"
+ texmf-dist/doc/latex/xoptarg/xoptarg.tex
+runfiles size=6482
+ texmf-dist/tex/latex/xoptarg/xoptarg.sty
+catalogue-version 1.0
+catalogue-date 2007-05-13 12:01:55 +0200
+catalogue-ctan /macros/latex/contrib/xoptarg
+catalogue-license lppl
+
+name xor
+category Package
+revision 616
+docfiles size=253075
+ texmf-dist/doc/latex3/xor/cat.eps
+ texmf-dist/doc/latex3/xor/escher.eps
+ texmf-dist/doc/latex3/xor/europe.eps
+ texmf-dist/doc/latex3/xor/outline.eps
+ texmf-dist/doc/latex3/xor/outline2.eps
+ texmf-dist/doc/latex3/xor/oxford-trial.tex
+ texmf-dist/doc/latex3/xor/rahtz18.eps
+ texmf-dist/doc/latex3/xor/theworld.eps
+ texmf-dist/doc/latex3/xor/xo-README.txt
+ texmf-dist/doc/latex3/xor/xo-pfloat.tex
+ texmf-dist/doc/latex3/xor/xo-sample.tex
+srcfiles size=393281
+ texmf-dist/source/latex3/xor/xmarks.dtx
+ texmf-dist/source/latex3/xor/xo-alloc.dtx
+ texmf-dist/source/latex3/xor/xo-capt.dtx
+ texmf-dist/source/latex3/xor/xo-final.dtx
+ texmf-dist/source/latex3/xor/xo-float.dtx
+ texmf-dist/source/latex3/xor/xo-flow-chart.dtx
+ texmf-dist/source/latex3/xor/xo-grid.dtx
+ texmf-dist/source/latex3/xor/xo-here.dtx
+ texmf-dist/source/latex3/xor/xo-new.dtx
+ texmf-dist/source/latex3/xor/xo-or.dtx
+ texmf-dist/source/latex3/xor/xo-page.dtx
+ texmf-dist/source/latex3/xor/xo-place.dtx
+ texmf-dist/source/latex3/xor/xo-trace.dtx
+ texmf-dist/source/latex3/xor/xo.ins
+ texmf-dist/source/latex3/xor/xoprogress.ins
+ texmf-dist/source/latex3/xor/xotrace.ins
+ texmf-dist/source/latex3/xor/xoutput.drv
+ texmf-dist/source/latex3/xor/xoutput.dtx
+runfiles size=115086
+ texmf-dist/tex/latex3/xor/xmarks.sty
+ texmf-dist/tex/latex3/xor/xo-alloc.sty
+ texmf-dist/tex/latex3/xor/xo-capt.sty
+ texmf-dist/tex/latex3/xor/xo-final.sty
+ texmf-dist/tex/latex3/xor/xo-float.sty
+ texmf-dist/tex/latex3/xor/xo-grid.sty
+ texmf-dist/tex/latex3/xor/xo-here.sty
+ texmf-dist/tex/latex3/xor/xo-new.sty
+ texmf-dist/tex/latex3/xor/xo-or.sty
+ texmf-dist/tex/latex3/xor/xo-page.sty
+ texmf-dist/tex/latex3/xor/xo-place.sty
+ texmf-dist/tex/latex3/xor/xo-trace.sty
+ texmf-dist/tex/latex3/xor/xoutput.sty
+
+name xparse
+category Package
+revision 616
+docfiles size=4187
+ texmf-dist/doc/latex3/xparse/xparse-test.tex
+srcfiles size=49649
+ texmf-dist/source/latex3/xparse/ldcsetup.dtx
+ texmf-dist/source/latex3/xparse/xparse.dtx
+ texmf-dist/source/latex3/xparse/xparse.ins
+runfiles size=9433
+ texmf-dist/tex/latex3/xparse/ldcsetup.sty
+ texmf-dist/tex/latex3/xparse/xparse.sty
+
+name xq
+category Package
+revision 2304
+shortdesc Support for writing about xiangqi.
+longdesc The package is for writing about xiangqi or chinese chess. You
+longdesc can write games or parts of games and show diagrams with
+longdesc special positions.
+docfiles size=86280
+ texmf-dist/doc/fonts/xq/README details="Package README"
+ texmf-dist/doc/fonts/xq/xqexample.pdf details="Example of use"
+ texmf-dist/doc/fonts/xq/xqexample.tex
+runfiles size=1234621
+ texmf-dist/fonts/source/public/xq/xqaddsignsbase.mf
+ texmf-dist/fonts/source/public/xq/xqaddsignslarge.mf
+ texmf-dist/fonts/source/public/xq/xqaddsignsnormal.mf
+ texmf-dist/fonts/source/public/xq/xqbase.mf
+ texmf-dist/fonts/source/public/xq/xqhints.mf
+ texmf-dist/fonts/source/public/xq/xqlarge.mf
+ texmf-dist/fonts/source/public/xq/xqnormal.mf
+ texmf-dist/fonts/source/public/xq/xqwestbase.mf
+ texmf-dist/fonts/source/public/xq/xqwestlarge.mf
+ texmf-dist/fonts/source/public/xq/xqwestnormal.mf
+ texmf-dist/fonts/tfm/public/xq/xqlarge.tfm
+ texmf-dist/fonts/tfm/public/xq/xqnormal.tfm
+ texmf-dist/tex/latex/xq/xq.sty
+catalogue-version 0.3
+catalogue-date 2007-03-13 09:23:19 +0100
+catalogue-ctan /fonts/xq
+catalogue-license lppl
+
+name xtab
+category Package
+revision 2338
+shortdesc Break tables across pages.
+longdesc Xtab is an extended and somewhat improved version of
+longdesc supertabular; it provides tables that break across pages.
+docfiles size=253008
+ texmf-dist/doc/latex/xtab/README
+ texmf-dist/doc/latex/xtab/xtab.pdf
+srcfiles size=85801
+ texmf-dist/source/latex/xtab/xtab.dtx
+ texmf-dist/source/latex/xtab/xtab.ins
+runfiles size=20085
+ texmf-dist/tex/latex/xtab/xtab.sty
+catalogue-version 2.3a
+catalogue-date 2006-12-16 10:58:44 +0100
+catalogue-ctan /macros/latex/contrib/xtab
+catalogue-license lppl
+
+name xtcapts
+category Package
+revision 3315
+shortdesc Defining language-dependent text macros.
+longdesc The package provides macros which generate text which switches
+longdesc according to what language has been selected in Babel. The
+longdesc documentation includes an example of the use of the package.
+docfiles size=113336
+ texmf-dist/doc/latex/xtcapts/readme.txt
+ texmf-dist/doc/latex/xtcapts/xt_capts.pdf details="Package documentation"
+srcfiles size=27972
+ texmf-dist/source/latex/xtcapts/xt_capts.dtx
+ texmf-dist/source/latex/xtcapts/xt_capts.ins
+runfiles size=3827
+ texmf-dist/tex/latex/xtcapts/xt_capts.sty
+catalogue-version 1.1d
+catalogue-date 2007-01-10 17:47:51 +0100
+catalogue-ctan /macros/latex/contrib/xtcapts
+catalogue-license unknown
+
+name xtheorem
+category Package
+revision 616
+docfiles size=1660
+ texmf-dist/doc/latex3/xtheorem/readme.txt
+ texmf-dist/doc/latex3/xtheorem/xtheorem-test.tex
+srcfiles size=10994
+ texmf-dist/source/latex3/xtheorem/xtheorem.dtx
+ texmf-dist/source/latex3/xtheorem/xtheorem.ins
+runfiles size=4312
+ texmf-dist/tex/latex3/xtheorem/xtheorem.sty
+
+name xu-hyphen
+category Package
+revision 4247
+runfiles size=197103
+ texmf-dist/tex/generic/xu-hyphen/utf8-copthyph.tex
+ texmf-dist/tex/generic/xu-hyphen/utf8-grahyph4.tex
+ texmf-dist/tex/generic/xu-hyphen/utf8-grmhyph4.tex
+ texmf-dist/tex/generic/xu-hyphen/utf8-grphyph4.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-bahyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-bghyphen.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-copthyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-cp866nav.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-csaccents.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-czhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-dehyphn.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-dehypht.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-dehyphtex.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-eohyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-eshyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-ethyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-frhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-glhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-grahyph4.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-grmhyph4.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-grphyph4.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-hrhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-huhyphn.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-lahyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-mnhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-nohyphbx.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-plhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-pyhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-rohyphen.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-ruhyphen.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-sihyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-skhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-sorhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-srhyphc.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-t1.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-tkhyph.tex
+ texmf-dist/tex/generic/xu-hyphen/xu-ukrhyph.tex
+
+name xunicode
+category Package
+revision 4687
+shortdesc Generate Unicode characters from accented glyphs.
+longdesc The package supports XeTeX’ (and other putative future
+longdesc similar engines’) need for Unicode characters, in a similar
+longdesc way to what the fontenc does for 8-bit (and the like) fonts:
+longdesc convert accent-glyph sequence to a single character in the
+longdesc output encoding.
+docfiles size=414
+ texmf-dist/doc/xelatex/xunicode/README details="Readme"
+runfiles size=119258
+ texmf-dist/tex/xelatex/xunicode/xunicode.sty
+catalogue-version
+catalogue-date 2007-08-22 21:37:03 +0200
+catalogue-ctan /macros/xetex/latex/xunicode
+catalogue-license other-free
+
+name xyling
+category Package
+revision 1949
+shortdesc Draw syntactic trees, etc., for linguistics literature, using xy-pic.
+longdesc The macros in this package model the construction of linguistic
+longdesc tree structures as a genuinely graphical problem: they contain
+longdesc two types of objects, BRANCHES and NODE LABELS, and these are
+longdesc positioned relative to a GRID. It is essential that each of
+longdesc these three elements is constructed independent of the other
+longdesc two, and hence they can be modified without unwanted side
+longdesc effects. The macros are based on the xy-pic package.
+docfiles size=202350
+ texmf-dist/doc/latex/xyling/README details="README file"
+ texmf-dist/doc/latex/xyling/xyli-doc.pdf details="Package documentation" language="en"
+ texmf-dist/doc/latex/xyling/xyli-doc.tex
+runfiles size=34663
+ texmf-dist/tex/latex/xyling/xyling.sty
+catalogue-version 1.1
+catalogue-date 2007-03-13 09:23:19 +0100
+catalogue-ctan /macros/latex/contrib/xyling
+catalogue-license lppl
+
+name xypic
+category Package
+revision 613
+shortdesc Flexible diagramming macros.
+longdesc A package for typesetting a variety of graphs and diagrams with
+longdesc TeX. Xy-pic works with most formats (including LaTeX, AMS-
+longdesc LaTeX, AMS-TeX, and plain TeX).
+execute addMixedMap xypic.map
+docfiles size=3761761
+ texmf-dist/doc/generic/xypic/CATALOG
+ texmf-dist/doc/generic/xypic/COPYING
+ texmf-dist/doc/generic/xypic/INSTALL
+ texmf-dist/doc/generic/xypic/INSTALL.OzTeX
+ texmf-dist/doc/generic/xypic/INSTALL.Textures
+ texmf-dist/doc/generic/xypic/MANIFEST
+ texmf-dist/doc/generic/xypic/README
+ texmf-dist/doc/generic/xypic/TRAILER
+ texmf-dist/doc/generic/xypic/VERSIONS
+ texmf-dist/doc/generic/xypic/import1.eps
+ texmf-dist/doc/generic/xypic/kris.eps
+ texmf-dist/doc/generic/xypic/ross.eps
+ texmf-dist/doc/generic/xypic/xyguide.pdf
+ texmf-dist/doc/generic/xypic/xyrefer.pdf
+srcfiles size=1788817
+ texmf-dist/source/generic/xypic/CATALOG.doc
+ texmf-dist/source/generic/xypic/COPYING
+ texmf-dist/source/generic/xypic/ChangeLog
+ texmf-dist/source/generic/xypic/INSTALL
+ texmf-dist/source/generic/xypic/INSTALL.OzTeX
+ texmf-dist/source/generic/xypic/INSTALL.Textures
+ texmf-dist/source/generic/xypic/MAKE
+ texmf-dist/source/generic/xypic/MANIFEST
+ texmf-dist/source/generic/xypic/Makefile
+ texmf-dist/source/generic/xypic/README
+ texmf-dist/source/generic/xypic/TRAILER
+ texmf-dist/source/generic/xypic/VERSIONS
+ texmf-dist/source/generic/xypic/doc2tex.com
+ texmf-dist/source/generic/xypic/dvitogif89a
+ texmf-dist/source/generic/xypic/import1.eps
+ texmf-dist/source/generic/xypic/install-tds
+ texmf-dist/source/generic/xypic/kris.eps
+ texmf-dist/source/generic/xypic/latin1.sty
+ texmf-dist/source/generic/xypic/movie.cls
+ texmf-dist/source/generic/xypic/pnmrawtopcropwhite.c
+ texmf-dist/source/generic/xypic/ross.eps
+ texmf-dist/source/generic/xypic/xy.doc
+ texmf-dist/source/generic/xypic/xy.sty
+ texmf-dist/source/generic/xypic/xy16textures.doc
+ texmf-dist/source/generic/xypic/xy17oztex.doc
+ texmf-dist/source/generic/xypic/xy2cell.doc
+ texmf-dist/source/generic/xypic/xyall.doc
+ texmf-dist/source/generic/xypic/xyarc.doc
+ texmf-dist/source/generic/xypic/xyarrow.doc
+ texmf-dist/source/generic/xypic/xycmactex.doc
+ texmf-dist/source/generic/xypic/xycmtip.doc
+ texmf-dist/source/generic/xypic/xycolor.doc
+ texmf-dist/source/generic/xypic/xycrayon.doc
+ texmf-dist/source/generic/xypic/xycurve.doc
+ texmf-dist/source/generic/xypic/xydoc.back
+ texmf-dist/source/generic/xypic/xydoc.bib
+ texmf-dist/source/generic/xypic/xydoc.sty
+ texmf-dist/source/generic/xypic/xydocps.doc
+ texmf-dist/source/generic/xypic/xydummy.doc
+ texmf-dist/source/generic/xypic/xydvidrv.doc
+ texmf-dist/source/generic/xypic/xydvips.doc
+ texmf-dist/source/generic/xypic/xydvitops.doc
+ texmf-dist/source/generic/xypic/xyemtex.doc
+ texmf-dist/source/generic/xypic/xyframe.doc
+ texmf-dist/source/generic/xypic/xygraph.doc
+ texmf-dist/source/generic/xypic/xyguide.man
+ texmf-dist/source/generic/xypic/xyidioms.doc
+ texmf-dist/source/generic/xypic/xyimport.doc
+ texmf-dist/source/generic/xypic/xyknot.doc
+ texmf-dist/source/generic/xypic/xylatex.ini
+ texmf-dist/source/generic/xypic/xyline.doc
+ texmf-dist/source/generic/xypic/xymacpat.xyp
+ texmf-dist/source/generic/xypic/xymatrix.doc
+ texmf-dist/source/generic/xypic/xymovie.doc
+ texmf-dist/source/generic/xypic/xynecula.doc
+ texmf-dist/source/generic/xypic/xyoztex.doc
+ texmf-dist/source/generic/xypic/xypic.doc
+ texmf-dist/source/generic/xypic/xypic.map
+ texmf-dist/source/generic/xypic/xypic.sty
+ texmf-dist/source/generic/xypic/xypoly.doc
+ texmf-dist/source/generic/xypic/xyps-c.doc
+ texmf-dist/source/generic/xypic/xyps-col.doc
+ texmf-dist/source/generic/xypic/xyps-f.doc
+ texmf-dist/source/generic/xypic/xyps-l.doc
+ texmf-dist/source/generic/xypic/xyps-pro.doc
+ texmf-dist/source/generic/xypic/xyps-ps.doc
+ texmf-dist/source/generic/xypic/xyps-r.doc
+ texmf-dist/source/generic/xypic/xyps-s.doc
+ texmf-dist/source/generic/xypic/xyps-t.doc
+ texmf-dist/source/generic/xypic/xyps.doc
+ texmf-dist/source/generic/xypic/xypsdict.doc
+ texmf-dist/source/generic/xypic/xypspatt.doc
+ texmf-dist/source/generic/xypic/xyrecat.doc
+ texmf-dist/source/generic/xypic/xyrefer.man
+ texmf-dist/source/generic/xypic/xyrotate.doc
+ texmf-dist/source/generic/xypic/xysmart.doc
+ texmf-dist/source/generic/xypic/xytex.ini
+ texmf-dist/source/generic/xypic/xytextures.doc
+ texmf-dist/source/generic/xypic/xytile.doc
+ texmf-dist/source/generic/xypic/xytips.doc
+ texmf-dist/source/generic/xypic/xytp-f.doc
+ texmf-dist/source/generic/xypic/xytpic.doc
+ texmf-dist/source/generic/xypic/xyv2.doc
+ texmf-dist/source/generic/xypic/xyweb.doc
+ texmf-dist/source/generic/xypic/xyxdvi.doc
+runfiles size=927246
+ texmf-dist/dvips/xypic/xy37dict.pro
+ texmf-dist/fonts/map/dvips/xypic/xypic.map
+ texmf-dist/fonts/source/public/xypic/xyatip.mf
+ texmf-dist/fonts/source/public/xypic/xyatip10.mf
+ texmf-dist/fonts/source/public/xypic/xybsql10.mf
+ texmf-dist/fonts/source/public/xypic/xybtip.mf
+ texmf-dist/fonts/source/public/xypic/xybtip10.mf
+ texmf-dist/fonts/source/public/xypic/xycirc10.mf
+ texmf-dist/fonts/source/public/xypic/xycm.mf
+ texmf-dist/fonts/source/public/xypic/xycmat10.mf
+ texmf-dist/fonts/source/public/xypic/xycmat11.mf
+ texmf-dist/fonts/source/public/xypic/xycmat12.mf
+ texmf-dist/fonts/source/public/xypic/xycmbt10.mf
+ texmf-dist/fonts/source/public/xypic/xycmbt11.mf
+ texmf-dist/fonts/source/public/xypic/xycmbt12.mf
+ texmf-dist/fonts/source/public/xypic/xyd.mf
+ texmf-dist/fonts/source/public/xypic/xyd2.mf
+ texmf-dist/fonts/source/public/xypic/xydash10.mf
+ texmf-dist/fonts/source/public/xypic/xyeuat10.mf
+ texmf-dist/fonts/source/public/xypic/xyeuat11.mf
+ texmf-dist/fonts/source/public/xypic/xyeuat12.mf
+ texmf-dist/fonts/source/public/xypic/xyeubt10.mf
+ texmf-dist/fonts/source/public/xypic/xyeubt11.mf
+ texmf-dist/fonts/source/public/xypic/xyeubt12.mf
+ texmf-dist/fonts/source/public/xypic/xyeuler.mf
+ texmf-dist/fonts/source/public/xypic/xyline10.mf
+ texmf-dist/fonts/source/public/xypic/xymisc10.mf
+ texmf-dist/fonts/source/public/xypic/xyqc10.mf
+ texmf-dist/fonts/source/public/xypic/xytech.mf
+ texmf-dist/fonts/tfm/public/xypic/xyatip10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xybsql10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xybtip10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xycirc10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xycmat10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xycmat11.tfm
+ texmf-dist/fonts/tfm/public/xypic/xycmat12.tfm
+ texmf-dist/fonts/tfm/public/xypic/xycmbt10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xycmbt11.tfm
+ texmf-dist/fonts/tfm/public/xypic/xycmbt12.tfm
+ texmf-dist/fonts/tfm/public/xypic/xydash10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xyeuat10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xyeuat11.tfm
+ texmf-dist/fonts/tfm/public/xypic/xyeuat12.tfm
+ texmf-dist/fonts/tfm/public/xypic/xyeubt10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xyeubt11.tfm
+ texmf-dist/fonts/tfm/public/xypic/xyeubt12.tfm
+ texmf-dist/fonts/tfm/public/xypic/xyline10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xymisc10.tfm
+ texmf-dist/fonts/tfm/public/xypic/xyqc10.tfm
+ texmf-dist/fonts/type1/public/xypic/xyatip10.pfb
+ texmf-dist/fonts/type1/public/xypic/xybsql10.pfb
+ texmf-dist/fonts/type1/public/xypic/xybtip10.pfb
+ texmf-dist/fonts/type1/public/xypic/xycirc10.pfb
+ texmf-dist/fonts/type1/public/xypic/xycmat10.pfb
+ texmf-dist/fonts/type1/public/xypic/xycmbt10.pfb
+ texmf-dist/fonts/type1/public/xypic/xydash10.pfb
+ texmf-dist/fonts/type1/public/xypic/xyeuat10.pfb
+ texmf-dist/fonts/type1/public/xypic/xyeubt10.pfb
+ texmf-dist/tex/generic/xypic/movie.cls
+ texmf-dist/tex/generic/xypic/xy.sty
+ texmf-dist/tex/generic/xypic/xy.tex
+ texmf-dist/tex/generic/xypic/xy16textures.tex
+ texmf-dist/tex/generic/xypic/xy17oztex.tex
+ texmf-dist/tex/generic/xypic/xy2cell.tex
+ texmf-dist/tex/generic/xypic/xyall.tex
+ texmf-dist/tex/generic/xypic/xyarc.tex
+ texmf-dist/tex/generic/xypic/xyarrow.tex
+ texmf-dist/tex/generic/xypic/xycmactex.tex
+ texmf-dist/tex/generic/xypic/xycmtip.tex
+ texmf-dist/tex/generic/xypic/xycolor.tex
+ texmf-dist/tex/generic/xypic/xycrayon.tex
+ texmf-dist/tex/generic/xypic/xycurve.tex
+ texmf-dist/tex/generic/xypic/xydummy.tex
+ texmf-dist/tex/generic/xypic/xydvidrv.tex
+ texmf-dist/tex/generic/xypic/xydvips.tex
+ texmf-dist/tex/generic/xypic/xydvitops.tex
+ texmf-dist/tex/generic/xypic/xyemtex.tex
+ texmf-dist/tex/generic/xypic/xyframe.tex
+ texmf-dist/tex/generic/xypic/xygraph.tex
+ texmf-dist/tex/generic/xypic/xyidioms.tex
+ texmf-dist/tex/generic/xypic/xyimport.tex
+ texmf-dist/tex/generic/xypic/xyknot.tex
+ texmf-dist/tex/generic/xypic/xylatex.ini
+ texmf-dist/tex/generic/xypic/xyline.tex
+ texmf-dist/tex/generic/xypic/xymacpat.xyp
+ texmf-dist/tex/generic/xypic/xymatrix.tex
+ texmf-dist/tex/generic/xypic/xymovie.tex
+ texmf-dist/tex/generic/xypic/xynecula.tex
+ texmf-dist/tex/generic/xypic/xyoztex.tex
+ texmf-dist/tex/generic/xypic/xypic.sty
+ texmf-dist/tex/generic/xypic/xypic.tex
+ texmf-dist/tex/generic/xypic/xypoly.tex
+ texmf-dist/tex/generic/xypic/xyps-c.tex
+ texmf-dist/tex/generic/xypic/xyps-col.tex
+ texmf-dist/tex/generic/xypic/xyps-f.tex
+ texmf-dist/tex/generic/xypic/xyps-l.tex
+ texmf-dist/tex/generic/xypic/xyps-pro.tex
+ texmf-dist/tex/generic/xypic/xyps-ps.tex
+ texmf-dist/tex/generic/xypic/xyps-r.tex
+ texmf-dist/tex/generic/xypic/xyps-s.tex
+ texmf-dist/tex/generic/xypic/xyps-t.tex
+ texmf-dist/tex/generic/xypic/xyps.tex
+ texmf-dist/tex/generic/xypic/xypsdict.tex
+ texmf-dist/tex/generic/xypic/xypspatt.tex
+ texmf-dist/tex/generic/xypic/xyrecat.tex
+ texmf-dist/tex/generic/xypic/xyrotate.tex
+ texmf-dist/tex/generic/xypic/xysmart.tex
+ texmf-dist/tex/generic/xypic/xytex.ini
+ texmf-dist/tex/generic/xypic/xytextures.tex
+ texmf-dist/tex/generic/xypic/xytile.tex
+ texmf-dist/tex/generic/xypic/xytips.tex
+ texmf-dist/tex/generic/xypic/xytp-f.tex
+ texmf-dist/tex/generic/xypic/xytpic.tex
+ texmf-dist/tex/generic/xypic/xyv2.tex
+ texmf-dist/tex/generic/xypic/xyweb.tex
+ texmf-dist/tex/generic/xypic/xyxdvi.tex
+catalogue-version 3.7
+catalogue-date 2006-12-02 11:44:34 +0100
+catalogue-ctan /macros/generic/diagrams/xypic/xy
+catalogue-license dfsg
+
+name xypic-tut-pt
+category Documentation
+revision 1755
+shortdesc A tutorial for XY-pic, in Portuguese.
+docfiles size=306794
+ texmf-doc/doc/portuguese/xypic-tut-pt/README
+ texmf-doc/doc/portuguese/xypic-tut-pt/grafico.eps
+ texmf-doc/doc/portuguese/xypic-tut-pt/xypic-tutorial.pdf language="pt"
+ texmf-doc/doc/portuguese/xypic-tut-pt/xypictutorial.tex
+catalogue-version
+catalogue-date 2007-03-01 23:46:20 +0100
+catalogue-ctan /info/portuguese/xypic-tutorial
+catalogue-license gpl
+
+name xytree
+category Package
+revision 2065
+shortdesc Tree macros using XY-Pic.
+longdesc The aim of xytree is to draw linguistic syntactic trees with
+longdesc ease and to support hopefully sufficient functionalities, that
+longdesc the linguist may need. The package (of course) depends on the
+longdesc XY-Pic package.
+docfiles size=318387
+ texmf-dist/doc/latex/xytree/README details="Package README"
+ texmf-dist/doc/latex/xytree/xytree-doc-en.pdf details="Package documentation" language="en"
+ texmf-dist/doc/latex/xytree/xytree-doc-en.tex
+runfiles size=9897
+ texmf-dist/tex/latex/xytree/xytree.sty
+catalogue-version 1.5
+catalogue-date 2007-03-13 09:23:19 +0100
+catalogue-ctan /macros/latex/contrib/xytree
+catalogue-license lppl
+
+name yafoot
+category Package
+revision 1487
+shortdesc A bundle of miscellaneous footnote packages.
+longdesc Contains three packages: – pfnote to number footnotes per
+longdesc page; – fnpos to control the position of footnotes; and –
+longdesc dblfnote to make footnotes double-columned.
+docfiles size=24385
+ texmf-dist/doc/latex/yafoot/README details="Bundle Readme"
+ texmf-dist/doc/latex/yafoot/yafoot-man.dvi
+ texmf-dist/doc/latex/yafoot/yafoot-man.tex
+srcfiles size=57660
+ texmf-dist/source/latex/yafoot/yafoot.dtx
+ texmf-dist/source/latex/yafoot/yafoot.ins
+runfiles size=15974
+ texmf-dist/tex/latex/yafoot/dblfnote.sty
+ texmf-dist/tex/latex/yafoot/fnpos.sty
+ texmf-dist/tex/latex/yafoot/pfnote.sty
+catalogue-version
+catalogue-date 2006-12-16 10:58:44 +0100
+catalogue-ctan /macros/latex/contrib/yafoot
+catalogue-license lppl
+
+name yannisgr
+category Package
+revision 101
+shortdesc Greek fonts by Yannis Haralambous.
+longdesc A family of 7-bit fonts with a code table designed for setting
+longdesc modern polytonic Greek. The fonts are provided in MetaFont
+longdesc form; macros to produce a Greek variant of Plain TeX (including
+longdesc a hyphenation table adapted to the fonts' code table) are
+longdesc provided.
+docfiles size=62084
+ texmf-dist/doc/plain/yannisgr/00changes.txt
+ texmf-dist/doc/plain/yannisgr/00readme.txt
+ texmf-dist/doc/plain/yannisgr/monsyl.txt
+ texmf-dist/doc/plain/yannisgr/rgr.readme details="Readme"
+ texmf-dist/doc/plain/yannisgr/rgreekmacros.tex
+ texmf-dist/doc/plain/yannisgr/rgrhyph.tex
+ texmf-dist/doc/plain/yannisgr/rgrpaper.tex
+ texmf-dist/doc/plain/yannisgr/rgrtestfont.tex
+ texmf-dist/doc/plain/yannisgr/tomakeformat.txt
+runfiles size=213427
+ texmf-dist/fonts/source/public/yannisgr/csc_misce.mf
+ texmf-dist/fonts/source/public/yannisgr/gen_m_acc.mf
+ texmf-dist/fonts/source/public/yannisgr/greekcsc.mf
+ texmf-dist/fonts/source/public/yannisgr/it_digits.mf
+ texmf-dist/fonts/source/public/yannisgr/it_lig.mf
+ texmf-dist/fonts/source/public/yannisgr/it_lower.mf
+ texmf-dist/fonts/source/public/yannisgr/ligcsc.mf
+ texmf-dist/fonts/source/public/yannisgr/m_accent.mf
+ texmf-dist/fonts/source/public/yannisgr/m_greek.mf
+ texmf-dist/fonts/source/public/yannisgr/mrgrbf10.mf
+ texmf-dist/fonts/source/public/yannisgr/mrgrrg10.mf
+ texmf-dist/fonts/source/public/yannisgr/mrgrsl10.mf
+ texmf-dist/fonts/source/public/yannisgr/mrgrti10.mf
+ texmf-dist/fonts/source/public/yannisgr/rgen_acc.mf
+ texmf-dist/fonts/source/public/yannisgr/rgraccent.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrbase.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrbf10.mf
+ texmf-dist/fonts/source/public/yannisgr/rgreek.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrlig.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrlower.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrpunct.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrrg10.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrsc10.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrsl10.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrti10.mf
+ texmf-dist/fonts/source/public/yannisgr/rgrupper.mf
+ texmf-dist/fonts/source/public/yannisgr/scsc.mf
+catalogue-version
+catalogue-date 2007-11-06 21:22:19 +0100
+catalogue-ctan /fonts/greek/yannis
+catalogue-license unknown
+
+name yfonts
+category Package
+revision 1465
+shortdesc Support for old German fonts.
+longdesc A LaTeX interface to the old-german fonts designed by Yannis
+longdesc Haralambous: Gothic, Schwabacher, Fraktur and the baroque
+longdesc initials.
+docfiles size=11187
+ texmf-dist/doc/latex/yfonts/frktest.tex
+ texmf-dist/doc/latex/yfonts/liesmich
+ texmf-dist/doc/latex/yfonts/readme details="Readme"
+srcfiles size=22219
+ texmf-dist/source/latex/yfonts/yfonts.dtx
+ texmf-dist/source/latex/yfonts/yfonts.ins
+runfiles size=4380
+ texmf-dist/tex/latex/yfonts/yfonts.sty
+catalogue-version 1.3
+catalogue-date 2007-03-01 23:46:20 +0100
+catalogue-ctan /macros/latex/contrib/yfonts
+catalogue-license lppl
+
+name yhmath
+category Package
+revision 1466
+shortdesc Extended maths fonts for LaTeX.
+longdesc The yhmath bundle contains fonts (type in 1 format) and a LaTeX
+longdesc package for using them.
+execute addMixedMap yhmath.map
+docfiles size=176614
+ texmf-dist/doc/latex/yhmath/yhmath.pdf
+srcfiles size=67390
+ texmf-dist/source/latex/yhmath/yhmath.drv
+ texmf-dist/source/latex/yhmath/yhmath.dtx
+ texmf-dist/source/latex/yhmath/yhmath.ins
+runfiles size=91258
+ texmf-dist/fonts/map/dvips/yhmath/yhmath.map
+ texmf-dist/fonts/source/public/yhmath/yhbigacc.mf
+ texmf-dist/fonts/source/public/yhmath/yhbigdel.mf
+ texmf-dist/fonts/source/public/yhmath/yhcmex10.mf
+ texmf-dist/fonts/source/public/yhmath/yhmathex.mf
+ texmf-dist/fonts/tfm/public/yhmath/yhcmex10.tfm
+ texmf-dist/fonts/tfm/public/yhmath/yrcmex10.tfm
+ texmf-dist/fonts/type1/public/yhmath/yhcmex.pfb
+ texmf-dist/fonts/vf/public/yhmath/yhcmex10.vf
+ texmf-dist/tex/latex/yhmath/OMXyhex.fd
+ texmf-dist/tex/latex/yhmath/yhmath.sty
+catalogue-version
+catalogue-date 2007-03-01 23:46:20 +0100
+catalogue-ctan /fonts/yhmath
+catalogue-license lppl
+
+name yi4latex
+category Package
+revision 1467
+shortdesc Yi (Southern Chinese) support.
+longdesc Package to provide support in LaTeX for writing all
+longdesc standardized Yi characters. Yi (also known as Lolo) is spoken
+longdesc in Southern China; the script is syllabic, based on an older,
+longdesc ideographic system.
+docfiles size=57886
+ texmf-dist/doc/fonts/yi4latex/FILES
+ texmf-dist/doc/fonts/yi4latex/README
+ texmf-dist/doc/fonts/yi4latex/yi-table.tex
+ texmf-dist/doc/fonts/yi4latex/yi4latex.tex
+runfiles size=404545
+ texmf-dist/fonts/source/public/yi4latex/yib-1.mf
+ texmf-dist/fonts/source/public/yi4latex/yib-2.mf
+ texmf-dist/fonts/source/public/yi4latex/yib-3.mf
+ texmf-dist/fonts/source/public/yi4latex/yib-4.mf
+ texmf-dist/fonts/source/public/yi4latex/yib-5.mf
+ texmf-dist/fonts/source/public/yi4latex/yibparms.mf
+ texmf-dist/fonts/source/public/yi4latex/yir-1.mf
+ texmf-dist/fonts/source/public/yi4latex/yir-2.mf
+ texmf-dist/fonts/source/public/yi4latex/yir-3.mf
+ texmf-dist/fonts/source/public/yi4latex/yir-4.mf
+ texmf-dist/fonts/source/public/yi4latex/yir-5.mf
+ texmf-dist/fonts/source/public/yi4latex/yirdefs.mf
+ texmf-dist/fonts/source/public/yi4latex/yirparms.mf
+ texmf-dist/fonts/source/public/yi4latex/yis-1.mf
+ texmf-dist/fonts/source/public/yi4latex/yis-2.mf
+ texmf-dist/fonts/source/public/yi4latex/yis-3.mf
+ texmf-dist/fonts/source/public/yi4latex/yis-4.mf
+ texmf-dist/fonts/source/public/yi4latex/yis-5.mf
+ texmf-dist/fonts/tfm/public/yi4latex/yib-1.tfm
+ texmf-dist/fonts/tfm/public/yi4latex/yib-2.tfm
+ texmf-dist/fonts/tfm/public/yi4latex/yib-3.tfm
+ texmf-dist/fonts/tfm/public/yi4latex/yib-4.tfm
+ texmf-dist/fonts/tfm/public/yi4latex/yib-5.tfm
+ texmf-dist/fonts/tfm/public/yi4latex/yir-1.tfm
+ texmf-dist/fonts/tfm/public/yi4latex/yir-2.tfm
+ texmf-dist/fonts/tfm/public/yi4latex/yir-3.tfm
+ texmf-dist/fonts/tfm/public/yi4latex/yir-4.tfm
+ texmf-dist/fonts/tfm/public/yi4latex/yir-5.tfm
+ texmf-dist/tex/latex/yi4latex/yi.sty
+catalogue-version
+catalogue-date 2006-12-16 10:58:44 +0100
+catalogue-ctan /language/yi4latex
+catalogue-license unknown
+
+name york-thesis
+category Package
+revision 1673
+shortdesc A thesis class file for York University, Toronto.
+longdesc York Graduate Studies has again changed the requirements for
+longdesc theses and dissertations. The established york-thesis class
+longdesc file now implements the changes made in Spring 2005.
+docfiles size=228151
+ texmf-dist/doc/latex/york-thesis/README details="Package Readme"
+ texmf-dist/doc/latex/york-thesis/york-thesis-Template.tex
+ texmf-dist/doc/latex/york-thesis/york-thesis.el
+ texmf-dist/doc/latex/york-thesis/york-thesis.pdf details="Package documentation"
+srcfiles size=43096
+ texmf-dist/source/latex/york-thesis/york-thesis.dtx
+ texmf-dist/source/latex/york-thesis/york-thesis.ins
+runfiles size=12651
+ texmf-dist/tex/latex/york-thesis/york-thesis.cls
+catalogue-version 3.4
+catalogue-date 2006-12-16 10:58:44 +0100
+catalogue-ctan /macros/latex/contrib/york-thesis
+catalogue-license lppl
+
+name youngtab
+category Package
+revision 1469
+shortdesc Typeset Young-Tableaux.
+longdesc A package for typesetting Young-Tableaux, mathematical symbols
+longdesc for the representations of groups, providing two macros,
+longdesc \yng(1) and \young(1) to generate the whole Young-Tableaux.
+srcfiles size=48646
+ texmf-dist/source/latex/youngtab/README
+ texmf-dist/source/latex/youngtab/makeydoc
+ texmf-dist/source/latex/youngtab/makeydoc.bat
+ texmf-dist/source/latex/youngtab/youngtab.dtx
+ texmf-dist/source/latex/youngtab/youngtab.el
+ texmf-dist/source/latex/youngtab/youngtab.ins
+ texmf-dist/source/latex/youngtab/youngtab.tex
+runfiles size=5116
+ texmf-dist/tex/latex/youngtab/youngtab.sty
+catalogue-version 1.1
+catalogue-date 2006-10-06 23:15:00 +0200
+catalogue-ctan /macros/latex/contrib/youngtab
+catalogue-license lppl
+
+name yplan
+category Package
+revision 1487
+shortdesc Daily planner type calendar.
+longdesc Prints two six-monthly vertical-type daily planner (i.e.,
+longdesc months along the top, days downwards), with each 6-month period
+longdesc fitting onto a single A4 (or US letter) sheet. The package
+longdesc offers support for English, French, German, Spanish and
+longdesc Portuguese. The previous scheme of annual updates has now been
+longdesc abandoned, in favour of a Perl script yplan that generates a
+longdesc year's planner automatically. (The last manually-generated
+longdesc LaTeX file remains on the archive.)
+docfiles size=64749
+ texmf-dist/doc/latex/yplan/yplan00.doc
+ texmf-dist/doc/latex/yplan/yplan00a.dvi
+ texmf-dist/doc/latex/yplan/yplan00a.tex
+ texmf-dist/doc/latex/yplan/yplan00b.dvi
+ texmf-dist/doc/latex/yplan/yplan00b.tex
+ texmf-dist/doc/latex/yplan/yplan99.doc
+ texmf-dist/doc/latex/yplan/yplan99a.dvi
+ texmf-dist/doc/latex/yplan/yplan99a.tex
+ texmf-dist/doc/latex/yplan/yplan99b.dvi
+ texmf-dist/doc/latex/yplan/yplan99b.tex
+runfiles size=7594
+ texmf-dist/tex/latex/yplan/yplan.sty
+catalogue-version
+catalogue-date 2006-12-16 10:58:44 +0100
+catalogue-ctan /macros/latex/contrib/yplan
+catalogue-license lppl
+
+name ytex
+category Package
+revision 628
+shortdesc Macro package developed at MIT.
+longdesc Ytex aims to support the novice user, while providing a
+longdesc comfortable home for the TeX programmer, who will find a
+longdesc library-like collection of support macros. The package uses the
+longdesc author’s plain-cm package.
+runfiles size=162617
+ texmf-dist/tex/ytex/base/ybase.mac
+ texmf-dist/tex/ytex/base/yfonts.mac
+ texmf-dist/tex/ytex/base/ylog.mac
+ texmf-dist/tex/ytex/base/ysite.mac
+ texmf-dist/tex/ytex/base/ytex-cm.tex
+ texmf-dist/tex/ytex/base/ytex.ieee
+ texmf-dist/tex/ytex/base/ytex.mac
+ texmf-dist/tex/ytex/base/ytex.mail
+ texmf-dist/tex/ytex/base/yusage.lst
+ texmf-dist/tex/ytex/base/yusage.tex
+ texmf-dist/tex/ytex/base/yuser.mac
+catalogue-version
+catalogue-date 2007-09-21 10:56:06 +0200
+catalogue-ctan /macros/ytex
+catalogue-license unknown
+
+name zapfchan
+category Package
+revision 2488
+runfiles size=178102
+ texmf-dist/dvips/zapfchan/config.uzc
+ texmf-dist/fonts/afm/adobe/zapfchan/pzcmi8a.afm
+ texmf-dist/fonts/afm/urw/zapfchan/uzcmi8a.afm
+ texmf-dist/fonts/map/dvips/zapfchan/uzc.map
+ texmf-dist/fonts/tfm/adobe/zapfchan/pzcmi.tfm
+ texmf-dist/fonts/tfm/adobe/zapfchan/pzcmi7t.tfm
+ texmf-dist/fonts/tfm/adobe/zapfchan/pzcmi8c.tfm
+ texmf-dist/fonts/tfm/adobe/zapfchan/pzcmi8r.tfm
+ texmf-dist/fonts/tfm/adobe/zapfchan/pzcmi8t.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/zapfchan/pzcmi8z.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/zapfchan/rpzcmi.tfm
+ texmf-dist/fonts/tfm/groff/zapfchan/pzcmi8g.tfm
+ texmf-dist/fonts/tfm/urw35vf/zapfchan/uzcmi7t.tfm
+ texmf-dist/fonts/tfm/urw35vf/zapfchan/uzcmi8c.tfm
+ texmf-dist/fonts/tfm/urw35vf/zapfchan/uzcmi8r.tfm
+ texmf-dist/fonts/tfm/urw35vf/zapfchan/uzcmi8t.tfm
+ texmf-dist/fonts/type1/urw/zapfchan/uzcmi8a.pfb
+ texmf-dist/fonts/type1/urw/zapfchan/uzcmi8a.pfm
+ texmf-dist/fonts/vf/adobe/zapfchan/pzcmi.vf
+ texmf-dist/fonts/vf/adobe/zapfchan/pzcmi7t.vf
+ texmf-dist/fonts/vf/adobe/zapfchan/pzcmi8c.vf
+ texmf-dist/fonts/vf/adobe/zapfchan/pzcmi8t.vf
+ texmf-dist/fonts/vf/cspsfonts-adobe/zapfchan/pzcmi8z.vf
+ texmf-dist/fonts/vf/urw35vf/zapfchan/uzcmi7t.vf
+ texmf-dist/fonts/vf/urw35vf/zapfchan/uzcmi8c.vf
+ texmf-dist/fonts/vf/urw35vf/zapfchan/uzcmi8t.vf
+ texmf-dist/tex/latex/zapfchan/8ruzc.fd
+ texmf-dist/tex/latex/zapfchan/omluzc.fd
+ texmf-dist/tex/latex/zapfchan/omsuzc.fd
+ texmf-dist/tex/latex/zapfchan/ot1uzc.fd
+ texmf-dist/tex/latex/zapfchan/t1uzc.fd
+ texmf-dist/tex/latex/zapfchan/ts1uzc.fd
+
+name zapfding
+category Package
+revision 1472
+runfiles size=70264
+ texmf-dist/dvips/zapfding/config.uzd
+ texmf-dist/fonts/afm/adobe/zapfding/pzdr.afm
+ texmf-dist/fonts/afm/urw/zapfding/uzdr.afm
+ texmf-dist/fonts/map/dvips/zapfding/uzd.map
+ texmf-dist/fonts/tfm/adobe/zapfding/pzdr.tfm
+ texmf-dist/fonts/tfm/cspsfonts-adobe/zapfding/rpzdr.tfm
+ texmf-dist/fonts/tfm/urw35vf/zapfding/uzdr.tfm
+ texmf-dist/fonts/type1/urw/zapfding/uzdr.pfb
+ texmf-dist/fonts/type1/urw/zapfding/uzdr.pfm
+ texmf-dist/tex/latex/zapfding/uuzd.fd
+
+name zed-csp
+category Package
+revision 1487
+shortdesc Typesetting Z and CSP format specifications.
+longdesc The package supports real-time CSP and incorporates the
+longdesc functionality of Spivey's original Z package, written for LaTeX
+longdesc 2.09.
+docfiles size=92581
+ texmf-dist/doc/latex/zed-csp/csp2e.dvi
+ texmf-dist/doc/latex/zed-csp/csp2e.tex
+ texmf-dist/doc/latex/zed-csp/zed2e.dvi
+ texmf-dist/doc/latex/zed-csp/zed2e.tex
+runfiles size=31787
+ texmf-dist/tex/latex/zed-csp/zed-csp.sty
+catalogue-version
+catalogue-date 2006-12-05 00:47:24 +0100
+catalogue-ctan /macros/latex/contrib/zed-csp
+catalogue-license other
+
+name zefonts
+category Package
+revision 1487
+shortdesc Virtual fonts to provide T1 encoding from existing fonts.
+longdesc Virtual T1 encoded (mostly) Computer Modern fonts based on
+longdesc (OT1) Computer Modern together with Times and Helvetica fonts,
+longdesc intended to simulate ‘ec’ fonts. The 'ae' fonts do a
+longdesc similar task, but miss some glyphs that aren’t available in
+longdesc OT1.
+execute addMap slantcm.map
+docfiles size=135627
+ texmf-dist/doc/latex/zefonts/CHANGES
+ texmf-dist/doc/latex/zefonts/ae_or_ze.ps.gz
+ texmf-dist/doc/latex/zefonts/ae_or_ze.tex
+ texmf-dist/doc/latex/zefonts/readme details="Readme"
+ texmf-dist/doc/latex/zefonts/test.tex
+ texmf-dist/doc/latex/zefonts/zefonts.dvi
+ texmf-dist/doc/latex/zefonts/zefonts.tex
+runfiles size=419134
+ texmf-dist/dvips/zefonts/slantcm.cfg
+ texmf-dist/fonts/map/dvips/zefonts/slantcm.map
+ texmf-dist/fonts/tfm/public/zefonts/cmbsy10o.tfm
+ texmf-dist/fonts/tfm/public/zefonts/cmbxi10f.tfm
+ texmf-dist/fonts/tfm/public/zefonts/cmmi10o.tfm
+ texmf-dist/fonts/tfm/public/zefonts/cmmib10o.tfm
+ texmf-dist/fonts/tfm/public/zefonts/cmsy10o.tfm
+ texmf-dist/fonts/tfm/public/zefonts/cmvtt10o.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zebi1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zebl1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zebx0500.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zebx0600.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zebx0700.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zebx0800.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zebx0900.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zebx1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zebx1200.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zeit1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zeli8.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zelq8.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zerb1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zerm0500.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zerm0600.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zerm0700.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zerm0800.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zerm0900.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zerm1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zerm1200.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zerm1728.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesc1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesi0800.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesi0900.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesi1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesi1200.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesl0800.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesl0900.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesl1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesl1200.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zess0800.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zess0900.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zess1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zess1200.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zessdc10.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zest1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zesx1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zetc1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zeti0700.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zeti0800.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zeti0900.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zeti1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zeti1200.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zett0800.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zett0900.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zett1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zett1200.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zeui1000.tfm
+ texmf-dist/fonts/tfm/public/zefonts/zevt1000.tfm
+ texmf-dist/fonts/vf/public/zefonts/zebi1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zebl1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zebx0500.vf
+ texmf-dist/fonts/vf/public/zefonts/zebx0600.vf
+ texmf-dist/fonts/vf/public/zefonts/zebx0700.vf
+ texmf-dist/fonts/vf/public/zefonts/zebx0800.vf
+ texmf-dist/fonts/vf/public/zefonts/zebx0900.vf
+ texmf-dist/fonts/vf/public/zefonts/zebx1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zebx1200.vf
+ texmf-dist/fonts/vf/public/zefonts/zeit1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zeli8.vf
+ texmf-dist/fonts/vf/public/zefonts/zelq8.vf
+ texmf-dist/fonts/vf/public/zefonts/zerb1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zerm0500.vf
+ texmf-dist/fonts/vf/public/zefonts/zerm0600.vf
+ texmf-dist/fonts/vf/public/zefonts/zerm0700.vf
+ texmf-dist/fonts/vf/public/zefonts/zerm0800.vf
+ texmf-dist/fonts/vf/public/zefonts/zerm0900.vf
+ texmf-dist/fonts/vf/public/zefonts/zerm1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zerm1200.vf
+ texmf-dist/fonts/vf/public/zefonts/zerm1728.vf
+ texmf-dist/fonts/vf/public/zefonts/zesc1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zesi0800.vf
+ texmf-dist/fonts/vf/public/zefonts/zesi0900.vf
+ texmf-dist/fonts/vf/public/zefonts/zesi1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zesi1200.vf
+ texmf-dist/fonts/vf/public/zefonts/zesl0800.vf
+ texmf-dist/fonts/vf/public/zefonts/zesl0900.vf
+ texmf-dist/fonts/vf/public/zefonts/zesl1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zesl1200.vf
+ texmf-dist/fonts/vf/public/zefonts/zess0800.vf
+ texmf-dist/fonts/vf/public/zefonts/zess0900.vf
+ texmf-dist/fonts/vf/public/zefonts/zess1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zess1200.vf
+ texmf-dist/fonts/vf/public/zefonts/zessdc10.vf
+ texmf-dist/fonts/vf/public/zefonts/zest1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zesx1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zetc1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zeti0700.vf
+ texmf-dist/fonts/vf/public/zefonts/zeti0800.vf
+ texmf-dist/fonts/vf/public/zefonts/zeti0900.vf
+ texmf-dist/fonts/vf/public/zefonts/zeti1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zeti1200.vf
+ texmf-dist/fonts/vf/public/zefonts/zett0800.vf
+ texmf-dist/fonts/vf/public/zefonts/zett0900.vf
+ texmf-dist/fonts/vf/public/zefonts/zett1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zett1200.vf
+ texmf-dist/fonts/vf/public/zefonts/zeui1000.vf
+ texmf-dist/fonts/vf/public/zefonts/zevt1000.vf
+ texmf-dist/tex/latex/zefonts/omlzer.fd
+ texmf-dist/tex/latex/zefonts/omszer.fd
+ texmf-dist/tex/latex/zefonts/t1zer.fd
+ texmf-dist/tex/latex/zefonts/t1zess.fd
+ texmf-dist/tex/latex/zefonts/t1zett.fd
+ texmf-dist/tex/latex/zefonts/zefonts.sty
+catalogue-version 2.1
+catalogue-date 2007-11-04 17:42:02 +0100
+catalogue-ctan /fonts/zefonts
+catalogue-license unknown
+